最新版本医废小程序代码,包含医废收集、一键入库/出库、周转箱入库/出库
This commit is contained in:
@@ -0,0 +1,311 @@
|
||||
<template name="components">
|
||||
<view>
|
||||
<scroll-view scroll-y class="page">
|
||||
<view class="UCenter-bg">
|
||||
<view class="photoView">
|
||||
<view class="photoImage">
|
||||
<text class="hazard-symbol">☣</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="text-xl">{{name}}
|
||||
</view>
|
||||
<!-- <view class="margin-top-sm">
|
||||
<text>{{duty}}</text>
|
||||
</view> -->
|
||||
<!--<image src="https://raw.githubusercontent.com/weilanwl/ColorUI/master/demo/images/wave.gif" mode="scaleToFill" class="gif-wave"></image>-->
|
||||
</view>
|
||||
<!-- 今日数据统计 -->
|
||||
<!-- <view class="stats-container">
|
||||
<view class="stat-card stat-count">
|
||||
<view class="stat-icon">📊</view>
|
||||
<view class="stat-value">{{myBasisInfo.today_count || 0}}</view>
|
||||
<view class="stat-label">今日数量</view>
|
||||
</view>
|
||||
<view class="stat-card stat-weight">
|
||||
<view class="stat-icon">⚖️</view>
|
||||
<view class="stat-value">{{myBasisInfo.today_sum || 0}}</view>
|
||||
<view class="stat-label">今日重量</view>
|
||||
</view>
|
||||
<view class="stat-card stat-abnormal">
|
||||
<view class="stat-icon">⚠️</view>
|
||||
<view class="stat-value">{{myBasisInfo.today_abnormal || 0}}</view>
|
||||
<view class="stat-label">今日异常</view>
|
||||
</view>
|
||||
</view> -->
|
||||
<view class="cu-list menu card-menu margin-top-xl margin-bottom-xl shadow-lg radius">
|
||||
<view class="cu-item arrow">
|
||||
<navigator class="content" url="/pages/plugin/personalInformation" hover-class="none">
|
||||
<text class="cuIcon-myfill text-blue"></text>
|
||||
<text class="text-grey">个人信息</text>
|
||||
</navigator>
|
||||
</view>
|
||||
<view class="cu-item arrow">
|
||||
<navigator class="content" hover-class="none" @click="buttonClick">
|
||||
<text class="cuIcon-close text-blue"></text>
|
||||
<text class="text-grey">退出登录</text>
|
||||
</navigator>
|
||||
</view>
|
||||
</view>
|
||||
<view class="cu-tabbar-height"></view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
myBasisInfo: {
|
||||
today_count: 0,
|
||||
today_sum: 0,
|
||||
today_abnormal: 0
|
||||
},
|
||||
hospital: '',
|
||||
sortHospital: '',
|
||||
department: '',
|
||||
name: '',
|
||||
duty: ''
|
||||
}
|
||||
},
|
||||
mounted(){
|
||||
// 获取全局变量中的数据
|
||||
this.hospital = getApp().globalData.hospital
|
||||
this.sortHospital = getApp().globalData.sortHospital
|
||||
this.department = getApp().globalData.department
|
||||
this.name = getApp().globalData.name
|
||||
this.duty = getApp().globalData.duty
|
||||
this.getMyBasisInfo()
|
||||
},
|
||||
methods:{
|
||||
getMyBasisInfo(){
|
||||
let that = this;
|
||||
uni.request({
|
||||
url: 'https://lekapi.opmonitor.com/?c=app_api&a=getMyBasisInfo',
|
||||
data: {hospital: that.hospital, sortHospital: that.sortHospital, department: that.department, duty: that.duty},
|
||||
header: {
|
||||
'Content-type': 'application/json'
|
||||
},
|
||||
success: function(res){
|
||||
that.myBasisInfo = res.data.data
|
||||
},
|
||||
fail: () => {
|
||||
console.info('小程序域名不正确,请检查域名的正确性')
|
||||
}
|
||||
})
|
||||
},
|
||||
buttonClick(){
|
||||
console.info(getApp().globalData)
|
||||
uni.reLaunch({
|
||||
url: '/pages/register/login'
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.page {
|
||||
width: 100vw;
|
||||
height: 100Vh;
|
||||
}
|
||||
|
||||
.UCenter-bg {
|
||||
background:-webkit-linear-gradient(right,#4a90e2,#357abd);
|
||||
background-size: cover;
|
||||
height: 550rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding-top: 40rpx;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
color: #fff;
|
||||
font-weight: 300;
|
||||
text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.UCenter-bg text {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.UCenter-bg image {
|
||||
width: 200rpx;
|
||||
height: 200rpx;
|
||||
}
|
||||
|
||||
.UCenter-bg .gif-wave{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 99;
|
||||
mix-blend-mode: screen;
|
||||
height: 100rpx;
|
||||
}
|
||||
|
||||
map,.mapBox{
|
||||
left: 0;
|
||||
z-index: 99;
|
||||
mix-blend-mode: screen;
|
||||
height: 100rpx;
|
||||
}
|
||||
|
||||
map,.mapBox{
|
||||
width: 750rpx;
|
||||
height: 300rpx;
|
||||
}
|
||||
|
||||
.png1 {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.box {
|
||||
margin: 20upx 0;
|
||||
}
|
||||
|
||||
.photoView {
|
||||
padding-top: 100rpx;
|
||||
position: relative;
|
||||
color: #fff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.photoImage {
|
||||
overflow:hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 200rpx;
|
||||
height: 200rpx;
|
||||
margin: 20rpx;
|
||||
border-radius: 50%;
|
||||
border: 3px solid rgba(255, 255, 255, 0.9);
|
||||
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
}
|
||||
.hazard-symbol {
|
||||
font-size: 160rpx;
|
||||
color: #f6c300;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
/* 统计数据容器 */
|
||||
.stats-container {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
padding: 40rpx 20rpx;
|
||||
margin: -80rpx 30rpx 30rpx 30rpx;
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
border-radius: 24rpx;
|
||||
box-shadow: 0 8rpx 32rpx rgba(0, 0, 0, 0.12);
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
backdrop-filter: blur(10rpx);
|
||||
border: 1px solid rgba(255, 255, 255, 0.6);
|
||||
}
|
||||
|
||||
/* 统计卡片 */
|
||||
.stat-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 24rpx 20rpx;
|
||||
border-radius: 20rpx;
|
||||
width: 200rpx;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.stat-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -50%;
|
||||
right: -50%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
/* 今日数量卡片 */
|
||||
.stat-count {
|
||||
background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
|
||||
box-shadow: 0 6rpx 24rpx rgba(74, 144, 226, 0.35);
|
||||
}
|
||||
|
||||
.stat-count .stat-icon {
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 8rpx;
|
||||
filter: drop-shadow(0 2rpx 8rpx rgba(0, 0, 0, 0.15));
|
||||
}
|
||||
|
||||
.stat-count .stat-value {
|
||||
font-size: 48rpx;
|
||||
font-weight: 800;
|
||||
color: #fff;
|
||||
margin-bottom: 6rpx;
|
||||
text-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.stat-count .stat-label {
|
||||
font-size: 24rpx;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* 今日重量卡片 */
|
||||
.stat-weight {
|
||||
background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
|
||||
box-shadow: 0 6rpx 24rpx rgba(39, 174, 96, 0.35);
|
||||
}
|
||||
|
||||
.stat-weight .stat-icon {
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 8rpx;
|
||||
filter: drop-shadow(0 2rpx 8rpx rgba(0, 0, 0, 0.15));
|
||||
}
|
||||
|
||||
.stat-weight .stat-value {
|
||||
font-size: 48rpx;
|
||||
font-weight: 800;
|
||||
color: #fff;
|
||||
margin-bottom: 6rpx;
|
||||
text-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.stat-weight .stat-label {
|
||||
font-size: 24rpx;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* 今日异常卡片 */
|
||||
.stat-abnormal {
|
||||
background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
|
||||
box-shadow: 0 6rpx 24rpx rgba(231, 76, 60, 0.35);
|
||||
}
|
||||
|
||||
.stat-abnormal .stat-icon {
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 8rpx;
|
||||
filter: drop-shadow(0 2rpx 8rpx rgba(0, 0, 0, 0.15));
|
||||
}
|
||||
|
||||
.stat-abnormal .stat-value {
|
||||
font-size: 48rpx;
|
||||
font-weight: 800;
|
||||
color: #fff;
|
||||
margin-bottom: 6rpx;
|
||||
text-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.stat-abnormal .stat-label {
|
||||
font-size: 24rpx;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
font-weight: 500;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user