#
whycq
2023-11-11 387f6b880f2ee8cf8ae1b02c3ea544429b7167e6
pages/tzsk/AGV/AGVPakinOn.vue
@@ -4,10 +4,10 @@
         <view class="item">
            <view class="code-decs">订单号:</view>
            <input type="text" placeholder=" 扫码 / 输入" v-model="orderNo" :focus="orderNoFocus"
               @input="orderNoInput()">
               @input="findOrder()">
         </view>
         <view class="item">
            <view class="code-decs">托盘码:</view>
            <view class="code-decs">料箱码:</view>
            <input type="text" placeholder=" 扫码 / 输入" v-model="barcode" :focus="barcodeFocus"
               @input="barcodeInput()">
         </view>
@@ -35,6 +35,27 @@
               <view class="list-left-item">
                  <view class="desc">No:</view>
                  <view class="left-item">{{i + 1}}</view>
               </view>
               <!-- <view class="list-left-item">
                  <view class="desc">箱码:</view>
                  <view class="left-item">
                     <input type="text" v-model="item.containerCode">
                     <uni-tag :text="item.containerCode" type="primary"></uni-tag>
                  </view>
               </view> -->
               <view class="list-left-item">
                  <view class="desc">销售单号:</view>
                  <view class="left-item">
                     <input type="text" v-model="item.csocode">
                     <!-- <uni-tag :text="item.containerCode" type="primary"></uni-tag> -->
                  </view>
               </view>
               <view class="list-left-item">
                  <view class="desc">订单行号:</view>
                  <view class="left-item">
                     <input type="text" v-model="item.isoseq">
                     <!-- <uni-tag :text="item.containerCode" type="primary"></uni-tag> -->
                  </view>
               </view>
               <view class="list-left-item">
                  <view class="desc">编码:</view>
@@ -139,6 +160,10 @@
               @confirm="agvStartConfirm" @close="resetClose"></uni-popup-dialog>
         </uni-popup>
      </view>
      <view class="keyboard" :class="hidebg" mode="aspectFit" @click="hideKeyboard">
         <image src="@/static/img/keyboard1.png" style="height: 70%;width: 70%;"></image>
      </view>
   </view>
</template>
@@ -162,24 +187,95 @@
            messageText: '',
            title: '',
            content: '',
            barcodeFocus: true,
            barcodeFocus: false,
            stationCodeFocus: false,
            matFocus: false,
            orderNoFocus: false,
            orderNoFocus: true,
            matData: '',
            removeNum: 0,
            devNo: [],
            flag: 0
            flag: 0,
            tempOrderInfo: {csocode: '',isoseq: ''},
            hide: true,
            hidebg: 'kb-bgtr'
         }
      },
      onLoad() {
         // #ifdef APP
         setInterval(()=>{
            if (this.hide) {
               uni.hideKeyboard()
            } else {
            }
         },20)
         // #endif
      },
      onBackPress() {
         this.hide = false
      },
      onShow() {
         this.baseUrl = uni.getStorageSync('baseUrl');
         this.token = uni.getStorageSync('token');
      },
      methods: {
         hideKeyboard() {
            this.hide = this.hide ? false : true
            if (this.hide) {
               this.hidebg = 'kb-bgtr'
            } else {
               this.hidebg = 'kb-bgfa'
            }
         },
         findOrder() {
            let that = this
            that.tempOrderInfo.csocode = ''
            that.tempOrderInfo.isoseq = ''
            uni.request({
               url: that.baseUrl + '/mobile/order/search/orderNo/auth',
               header: {'token': uni.getStorageSync('token')},
               data: {
                  orderNo: that.orderNo
               },
               success(res) {
                  res = res.data
                  if (res.code === 200) {
                     if(res.data && res.data[0].combMats) {
                        for (let i = 0; i < res.data[0].combMats.length; i++) {
                           that.checkMat(res.data[0].combMats[i])
                        }
                        that.orderNoFocus = false
                        setTimeout(() => {
                           that.barcodeFocus = true
                        }, 10);
                     } else {
                        uni.showToast({
                           title: that.orderNo + '请检查订单号是否正确',
                           icon: "none",
                           position: 'top'
                        })
                     }
                  } else if (res.code == 403) {
                     uni.showToast({
                        title: res.msg,
                        icon: "none",
                        position: 'top'
                     })
                     setTimeout(() => {
                        uni.reLaunch({
                           url: '../login/login'
                        });
                     }, 1000);
                  } else {
                     uni.showToast({
                        title: res.msg,
                        icon: "none",
                        position: 'top'
                     })
                  }
               }
            })
         },
         messageToggle(type) {
            this.msgType1 = type
            this.$refs.message.open()
@@ -210,13 +306,14 @@
         },
         barcodeInput() {
            // 不设置定时器 会出现扫入的字符串不全
            this.barcode = this.barcode.split('_')[1]
            setTimeout(() => {
               var len = this.barcode.length
               if (len != 10) {
                  this.barcode = ''
                  this.barcodeFocus = true
                  uni.showToast({
                     title: '托盘码有误请重试',
                     title: '料箱码有误请重试',
                     icon: "none",
                     position: 'top'
                  });
@@ -225,7 +322,7 @@
               this.stationCodeFocuss()
            }, 200)
         },
         // 托盘码有误重置
         // 料箱码有误重置
         barcodeFocuss() {
            let that = this;
            that.barcodeFocus = false;
@@ -253,12 +350,12 @@
         // 搜索物料
         findMat() {
            let that = this
            if (that.dataList.length >= 1) {
               this.messageText = "只能添加一种物料"
               this.messageToggle('warn')
               that.matnr = ''
               return
            }
            // if (that.dataList.length >= 1) {
            //    this.messageText = "只能添加一种物料"
            //    this.messageToggle('warn')
            //    that.matnr = ''
            //    return
            // }
            uni.request({
               url: that.baseUrl + '/mat/auth',
               data: {
@@ -274,7 +371,7 @@
                     that.matnr = ''
                     that.matData['batch'] = ''
                     uni.navigateTo({
                        url: "../mat/matSelected",
                        url: "../../mat/matSelected",
                        // 通过eventChannel向被打开页面传送数据
                        success: function(res) {
                           res.eventChannel.emit('mat', {
@@ -284,6 +381,8 @@
                        // 为指定事件添加一个监听器,获取被打开页面传送到当前页面的数据
                        events: {
                           matList: function(data) {
                              data.data['csocode'] = ''
                              data.data['isoseq'] = ''
                              that.checkMat(data.data)
                              that.focuss()
                           },
@@ -443,6 +542,8 @@
                  return;
               }
            }
            // console.log(that.dataList);
            // return
            uni.request({
               url: that.baseUrl + '/agvMobile/comb/auth',
               data: JSON.stringify({
@@ -574,12 +675,13 @@
<style>
   @import url('../../../static/css/wms.css/wms.css');
   .list:first-child {
      margin-top: 540rpx;
      margin-top: 400rpx;
   }
   .code {
      width: 100%;
      position: fixed;
      min-height: 200rpx;
      min-height: 210rpx;
      background-color: #FFF;
      z-index: 10;
   }
@@ -587,7 +689,7 @@
   .item {
      display: flex;
      align-items: center;
      height: 100rpx;
      height: 70rpx;
      margin-left: 20rpx;
      border-bottom: 1px solid #DCDFE6;
   }
@@ -619,7 +721,7 @@
      width: 100%;
      background-color: white;
      position: fixed;
      margin-top: 400rpx;
      margin-top: 280rpx;
      z-index: 9;
      /* border-top: 1px solid #DCDFE6; */
      text-align: center;