qingyiay
2023-09-16 d40527c10a2aa2ea481e1bf85ba0ac75ade9b670
pages/driver-page/driver-index/bill-of-lading-details/bill-of-lading-details.vue
@@ -154,6 +154,13 @@
            :show="servieceShow"
            cancelText="取消"></u-action-sheet>
      </view>
      <!-- 磅房忙碌提示弹窗 -->
      <view class="">
         <u-modal :show="wsgVisiable"
            title="提示"
            :content="wsgContent"
            @confirm="wsgContentConfirm"></u-modal>
      </view>
   </view>
</template>
@@ -252,7 +259,7 @@
         clearInterval(this.interval);
      },
      computed: {
         ...mapState(['globalweigh', 'globalinfraredStatus']),
         ...mapState(['globalweigh', 'globalinfraredStatus', 'wsgVisiable', 'wsgContent']),
         name() {
            return uni.getStorageSync('name');
         },
@@ -278,6 +285,7 @@
         }
      },
      methods: {
         ...mapMutations(['changewsgVisiable'])
         init() {
            this.$reqGet('coalDayPage', { id: this.orderPlanId }).then(res => {
               if (res.code == 0) {
@@ -572,6 +580,9 @@
               }
            })
         },
         wsgContentConfirm() {
            this.changewsgVisiable(false)
         }
      }
   };
</script>