guoyujie
6 天以前 f398ddd14530d2f0695865c8a4dede6205d91d09
qrcodeScaner/pages/glassFinishToStore/glassFinishToStore.vue
@@ -73,7 +73,6 @@
               </uni-row>
            </view>
            <view>
               <uni-row>
                  <uni-col :span='12'>
                     <button  @click="open(0)">取消</button>
@@ -91,6 +90,7 @@
   import { onLoad } from '@dcloudio/uni-app'
   import request from '../../utils/request'
   import userInfo from '@/stores/userInfo'
   import { debounce } from 'lodash'
   const user=userInfo()
   const message = ref(null)
   const msgType=ref('success')
@@ -125,7 +125,6 @@
      const para = {
         processId:processIdVal
      }
      await request.post(`/app/getSelectWarehousingList`,para).then(res => {
         if(res.data.data.length===0){
            uni.showModal({
@@ -147,7 +146,7 @@
      table.value.selectionAll()
   }
   
   const glassToStore = () => {
   const glassToStore = debounce(() => {
      subLoading.value = true
      checkList.value.sort()
      const arr = []
@@ -169,7 +168,7 @@
           url: `/pages/mainView/mainView`
         })
      })
   }
   },200)
   
   const change = (e,item) => {
      const quantity = item.orderDetail.quantity*1 - item.receivedQuantity*1
@@ -194,7 +193,6 @@
      }else{
         alertDialog.value.close()
      }
   }
</script>