123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <template>
- <view class="Scanning_Result">
- <view class="Scanning_cont">
- <scroll-view scroll-y class="scrollContent">
- <view class="column" v-for="item in drugsBagList" :key="item.id" @click="toDetail(item.id)">
- <view class="head">
- <view class="name">{{item.packid}}</view>
- <view class="value">{{item.drugsState ? item.drugsState.name : ''}}</view>
- </view>
- <view class="body">
- <view class="bodyColumn">
- <view class="name">种类数:{{item.drugsTypeCount}}</view>
- <view class="value">总数:{{item.drugsCount}}</view>
- </view>
- <view class="bodyColumn">
- <view class="name">收取人:<template v-if="item.startLog">{{item.startLog.username}}</template></view>
- <view class="value">收取时间:<template v-if="item.startLog">{{item.startLog.operationTime | formatDate('yyyy-MM-dd hh:mm')}}</template></view>
- </view>
- <view class="bodyColumn">
- <view class="name">送达人:<template v-if="item.endLog">{{item.endLog.username}}</template></view>
- <view class="value">送达时间:<template v-if="item.endLog">{{item.endLog.operationTime | formatDate('yyyy-MM-dd hh:mm')}}</template></view>
- </view>
- <view class="bodyColumn">
- <view class="name">收取交接人:<template v-if="item.startLog">{{item.startLog.handoverName}}</template></view>
- <view class="name">送达交接人:<template v-if="item.endLog">{{item.endLog.handoverName}}</template></view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </template>
- <script>
- import {
- get,
- post,
- SM,
- webHandle
- } from "@/http/http.js";
- export default {
- data() {
- return {
- hosId: uni.getStorageSync('userData').user.currentHospital.id,
- drugsBagList: [], //药包列表
- queryObj: {}, //路由传递过来的数据
- workOrder: {}, //工单信息
- config: {}, //配置
- };
- },
- methods: {
- // 详情
- toDetail(drugsBagId){
- uni.navigateTo({
- url: `/pages/newDrug/detail?drugsBagType=${this.queryObj.drugsBagType}&drugsBagId=${drugsBagId}`,
- });
- },
- //获取页面信息
- getInfo(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'orderInfo', orderId: +this.queryObj.orderId}).then(res => {
- uni.hideLoading();
- if(res.state == 200){
- if(res.data){
- this.drugsBagList = res.data.drugsBagList || [];
- this.workOrder = res.data.workOrder || {};
- }
- }else{
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- })
- },
- },
- onLoad(options) {
- console.log(options, "options");
- this.queryObj = options;
- this.getInfo();
- // #ifdef APP-PLUS
- webHandle("no", "app");
- // #endif
- // #ifdef H5
- webHandle("no", "wx");
- // #endif
- },
- };
- </script>
- <style lang="less" scoped>
- .Scanning_Result {
- background: #F7F7F7;
- display: flex;
- flex-direction: column;
- height: 100vh;
- .Scanning_top {
- margin: 32rpx auto;
- .Scanning_top_icon {
- font-size: 30rpx;
- font-weight: bold;
- .newicon{
- margin: 0 32rpx;
- }
- }
- }
- .Scanning_top_tips{
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28rpx;
- margin-bottom: 32rpx;
- gap: 64rpx;
- }
- .Scanning_cont {
- flex: 1;
- min-height: 0;
- display: flex;
- flex-direction: column;
- .scrollContent{
- flex: 1;
- min-height: 0;
- overflow: hidden;
- }
- .column{
- background: #FFFFFF;
- font-size: 24rpx;
- margin-bottom: 16rpx;
- .head{
- padding: 24rpx;
- display: flex;
- justify-content: space-between;
- align-content: center;
- border-bottom: 1rpx solid #D2D2D2;
- font-weight: bold;
- }
- .body{
- padding: 24rpx;
- .bodyColumn{
- display: flex;
- justify-content: space-between;
- align-content: center;
- margin-top: 24rpx;
- &:first-of-type{
- margin-top: 0;
- }
- .value{
- text-align: left;
- }
- }
- }
- }
- }
- .foot_btn_spe {
- margin: 24rpx 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 24rpx;
- font-weight: bold;
- .column{
- width: 100%;
- height: 78rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 24rpx;
- .btn {
- height: 100%;
- flex: 1;
- background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
- color: #fff;
- border-radius: 4rpx;
- font-size: 30rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- }
- }
- </style>
|