Files
mwims-mtx-mini-program/pages/component/traceDetailsByDept.vue
T

122 lines
3.2 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<view>
<scroll-view scroll-y class="page">
<cu-custom bgColor="bg-blue" :isBack="true"><block slot="backText">返回</block><block slot="content">追溯详情按科室汇总</block></cu-custom>
<view class="cu-card dynamic" :class="isCard?'no-card':''">
<view class="cu-item shadow" v-for="(value,index) in deptSummaryList" :key="index">
<view class="cu-list menu-avatar comment solids-bottom">
<view class="cu-item" style="padding: 30rpx;30rpx;30rpx;30rpx;">
<view class="content">
<view class="flex">
<view>医废袋标识</view>
<view class="flex-sub text-black">{{ value.ribbon_code }}</view>
</view>
<view class="bg-white padding-sm radius margin-top-sm" style="font-size:30rpx;">
<view class="flex">
<view>收集人员</view>
<view class="flex-sub">{{ value.recl_name }}</view>
</view>
<view class="flex">
<view>收集科室</view>
<view class="flex-sub">{{ value.dept_name }}</view>
</view>
<view class="flex">
<view>交接人员</view>
<view class="flex-sub">{{ value.hand_name }}</view>
</view>
<view class="flex">
<view>医废类型</view>
<view class="flex-sub">{{ value.waste_type }}</view>
</view>
<view class="flex">
<view>医废状态</view>
<view class="flex-sub">{{ value.waste_status }}</view>
</view>
<view class="flex">
<view>医废重量</view>
<view class="flex-sub">{{ value.weight }}</view>
</view>
</view>
<view class="margin-top-sm flex justify-between">
<view class="text-black" style="font-size: 30rpx;">{{ value.recl_time }}</view>
</view>
</view>
</view>
</view>
<view class="solids-bottom" style="padding-top: 20rpx;background-color: #F1F1F1;"></view>
</view>
</view>
</scroll-view>
</view>
</template>
<script>
export default {
data() {
return {
isCard: false,
dept_code: '',
deptSummaryList: []
}
},
onLoad(e) {
this.dept_code = e.id
this.getDeptSummaryList(e.id)
},
methods: {
IsCard(e) {
this.isCard = e.detail.value
},
getDeptSummaryList(){
let that = this;
uni.request({
url: "https://lekapi.opmonitor.com/?c=app_api&a=dept_summary_list",
data: {id: that.dept_code},
header: {
'Content-type': 'application/json'
},
success: function(res){
that.deptSummaryList = res.data.data
},
fail: () => {
console.info('小程序域名不正确,请检查域名的正确性')
}
})
}
}
}
</script>
<style>
.page {
width: 100vw;
height: 120Vh;
}
.photoView {
padding-top: 50rpx;
position: relative;
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
}
.photoImage {
overflow:hidden;
display: block;
width: 200rpx;
height: 200rpx;
margin: 20rpx;
border-radius: 50%;
border: 2px solid #fff;
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.cu-form-group .title{
min-width: calc(4em + 15px);
font-weight: 600;
}
.picker {
text-align: left;
}
</style>