#
whycq
2025-01-13 9b37d74d9e60a9117ff1611679682ecf2a3233ad
pages/phyz/checkLocDetl/locDetlList.vue
@@ -71,6 +71,7 @@
            orderNo: '',
            threeCode: '',
            processSts$: '',
            type: '',
            processSts$List: ['待加工','已加工','无需加工']
         }
      },
@@ -81,17 +82,51 @@
         // const eventChannel = this.$scope.eventChannel; // 兼容APP-NVUE
         const eventChannel = this.getOpenerEventChannel();
         // 监听acceptDataFromOpenerPage事件,获取上一页面通过eventChannel传送到当前页面的数据
         eventChannel.on('item', function(data) {
         // eventChannel.on('item', function(data) {
         //    console.log(data);
         //    _this.locNo = data.item.locNo
         //    _this.barcode = data.item.barcode
         //    for (let k of data.item.data) {
         //       k['count'] = k.anfme
         //    }
         //    _this.dataList = data.item.data
         // })
         eventChannel.on('baseInfo', function(data) {
            console.log(data);
            _this.locNo = data.item.locNo
            _this.barcode = data.item.barcode
            for (let k of data.item.data) {
               k['count'] = k.anfme
            }
            _this.dataList = data.item.data
            _this.getLocDetl(data.info.locNo,data.info.barcode)
            _this.locNo = data.info.locNo
            _this.barcode = data.info.barcode
            _this.type = data.info.type
         })
      },
      methods: {
         getLocDetl(locNo,barcode) {
            let _this = this
            let param = {locNo:locNo,containerCode: barcode}
            uni.request({
               url: `${_this.baseUrl}/agvMobile/check/detl/v1`,
               header: {'token': uni.getStorageSync('token')},
               data: param,
               method: 'POST',
               success(res) {
                  res = res.data
                  console.log(res);
                  if (res.code === 200) {
                     if (_this.type == 'con') {
                        _this.dataList = res.data.containerCode
                     } else {
                        _this.dataList = res.data.locNo
                     }
                  } else if (res.code == 403) {
                     uni.showToast({ title: res.msg, icon: "error", position: 'top' })
                     setTimeout(() => { uni.reLaunch({ url: '../../login/login' }); }, 1000);
                  } else {
                     uni.showToast({ title: res.msg, icon: "error", position: 'top' })
                  }
               }
            })
         },
         add() {
            let _this = this
            uni.navigateTo({