| | |
| | | <view class="edc-sampling-card" v-for="item in edcList" :key="item.id"> |
| | | <view class="edc-sampling-line"> |
| | | <h1>批号:{{item.batchNumber}}</h1> |
| | | <!-- #ifdef H5 --> |
| | | <view class="status" :class="statusClassComputed(item.status)" v-if="item.status">{{statusComputed(item.status)}}</view> |
| | | <!-- #endif --> |
| | | |
| | | <!-- #ifdef MP-WEIXIN --> |
| | | <view class="status" v-if="item.status">{{statusComputed(item.status)}}</view> |
| | | <!-- #endif --> |
| | | </view> |
| | | <view class="edc-sampling-line"> |
| | | <h2>采样地点:{{item.bunkerName}}</h2> |
| | |
| | | return '' |
| | | } |
| | | }, |
| | | /* #ifdef H5 */ |
| | | statusClassComputed(status) { |
| | | if(status == 1) { |
| | | return 'blue' |
| | |
| | | return '' |
| | | } |
| | | }, |
| | | /* #endif */ |
| | | async getPageList(callBack) { |
| | | uni.showLoading({ |
| | | title: "加载中" |