#
whycq
2023-04-27 4552aab807dbcf63ecc70a8d21db95e9bb425b7a
pages/pakin/orderPakin.vue
@@ -4,7 +4,7 @@
         <view class="item">
            <view class="code-decs">订单号:</view>
            <input type="text" placeholder=" 扫码 / 输入" v-model="order" :focus="orderFocus"
               @confirm="orderInput()">
               @input="orderInput()">
         </view>
         <view class="item">
            <view class="code-decs">托盘码:</view>
@@ -161,8 +161,13 @@
      methods: {
         orderInput() {
            let that = this
         }
            var order =  that.order.split(";")
            that.order = order[0]
            that.matnr = order[1]
            setTimeout(() => {
               that.orderFocus = true
            }, 200)
         },
      }
   }
</script>