zjj
2025-05-06 2ad931a09f80d02608101967a63e43212ebfa8f5
pages/listing/disc.vue
@@ -137,7 +137,7 @@
            batch: '',
            repeatClick: false,
            isconfirm: false,
            batch:''
         }
      },
      computed: {
@@ -149,9 +149,15 @@
      mounted() {},
      methods: {
         async search() {
            const find = this.list.find(el => el.trackCode === this.barcode);
            if (this.barcode == undefined || this.barcode == '') {
               uni.showToast({
                  icon: "none",
                  title: '物料标签不能为空!!'
               })
               return
            }
            const find = this.list.find(el => el.trackCode === this.barcode);
            find ? this.scrollTo() : this.getDet();
         },
         async getDet() {
            const {
@@ -163,7 +169,7 @@
               batch: this.batch
            }, "post")
            if (code === 200) {
               data && this.list.push(data);
               this.list = data
            } else {
               uni.showToast({
                  title: msg,
@@ -172,7 +178,14 @@
               })
            }
         },
         async getList() {
         async getList() {
            if (this.container == undefined || this.container == '') {
               uni.showToast({
                  icon: "none",
                  title: '容器号不能为空!!'
               })
               return
            }
            const {
               code,
               data,