#
whycq
2024-04-06 9dba76a130bf214aa540c8c5ffbd781590afe4f1
pages/phyz/stationManage/stationManage.vue
@@ -9,7 +9,7 @@
         <view class="list-left">
            <view>工位编号:{{item.devNo}}</view>
            <view>站点状态:{{item.locSts$}}</view>
            <view>条形码:{{item.barcode}}</view>
            <view>货架码:{{item.barcode}}</view>
            <view>站点类型:{{item.locType1$}}</view>
            <!-- <view class="card-id">{{i + 1}}</view> -->
         </view>
@@ -122,6 +122,7 @@
         this.baseUrl = uni.getStorageSync('baseUrl');
         this.token = uni.getStorageSync('token');
         this.getBasDevp('all')
         this.searchValueFocus = true
      },
      methods: {
         searchValueInput() {
@@ -162,14 +163,15 @@
                        }
                        _this.stations = res.data.records  
                     } else {
                        console.log(123213);
                        for (let item of res.data.records) {
                           _this.station = item
                           if (item.barcode) {
                              _this.getWrkMast(item.barcode)
                              _this.getWaitPakin(item.barcode)
                           if (item.locSts != 'O') {
                              item['style'] = 'station-wrk'
                           } else {
                              item['style'] = 'station-nowrk'
                           }
                           _this.station = item
                           _this.getOrderDetl(_this.station)
                        }
                     }
                     
@@ -377,13 +379,13 @@
                  // 通过eventChannel向被打开页面传送数据   向另外一个页面传递值的
                  res.eventChannel.emit('item', {
                     item: item
                  })
                  }),
                  _this.searchValue = ''
               },
               events: {
                  // 为指定事件添加一个监听器,获取被打开页面传送到当前页面的数据  另外一个页面传过来的
                  acceptDataFromOpenedPage: function(data) {
                     // _this.matnr = data.data
                     _this.input(_this.matnr)
                     _this.searchValueFocus = true
                  },
               },
            });