Kaynağa Gözat

质检人补丁

flower_bs 6 gün önce
ebeveyn
işleme
0a8cb5927f

+ 1 - 0
templates/dist/spa/css/7.3b0ca86f.css

@@ -0,0 +1 @@
+.q-date__calendar-item--selected[data-v-3c509fda]{transition:all 0.3s ease;background-color:#1976d2!important}.q-date__range[data-v-3c509fda]{background-color:rgba(25,118,210,0.1)}.custom-title[data-v-3c509fda]{font-size:0.9rem;font-weight:500}.custom-timeline[data-v-3c509fda]{--q-timeline-color:#e0e0e0}.custom-node .q-timeline__dot[data-v-3c509fda]{background:#485573!important;border:2px solid #5c6b8c!important}.custom-node .q-timeline__content[data-v-3c509fda]{color:#485573}

+ 0 - 1
templates/dist/spa/css/7.48636491.css

@@ -1 +0,0 @@
-.q-date__calendar-item--selected[data-v-931a9e26]{transition:all 0.3s ease;background-color:#1976d2!important}.q-date__range[data-v-931a9e26]{background-color:rgba(25,118,210,0.1)}.custom-title[data-v-931a9e26]{font-size:0.9rem;font-weight:500}.custom-timeline[data-v-931a9e26]{--q-timeline-color:#e0e0e0}.custom-node .q-timeline__dot[data-v-931a9e26]{background:#485573!important;border:2px solid #5c6b8c!important}.custom-node .q-timeline__content[data-v-931a9e26]{color:#485573}

Dosya farkı çok büyük olduğundan ihmal edildi
+ 1 - 1
templates/dist/spa/index.html


Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 1
templates/dist/spa/js/7.dabf770b.js


BIN
templates/dist/spa/js/7.dabf770b.js.gz


Dosya farkı çok büyük olduğundan ihmal edildi
+ 1 - 0
templates/dist/spa/js/7.fae9a015.js


BIN
templates/dist/spa/js/7.fae9a015.js.gz


BIN
templates/dist/spa/js/app.4f087607.js.gz


Dosya farkı çok büyük olduğundan ihmal edildi
+ 1 - 1
templates/dist/spa/js/app.4f087607.js


BIN
templates/dist/spa/js/app.c080ac4e.js.gz


+ 2 - 2
templates/src/pages/count/batch copy.vue

@@ -568,9 +568,9 @@ export default {
         goods_out_qty: '',
         goods_std: '',
         check_status: '',
-        check_user: '',
+        check_user: '默认质检人',
         create_time: '',
-        note: ''
+        note: ''
       },
       activeSearchField: '',
       activeSearchLabel: '',

+ 4 - 2
templates/src/pages/count/batch.vue

@@ -631,9 +631,9 @@ export default {
         goods_out_qty: '',
         goods_std: '',
         check_status: '',
-        check_user: '',
+        check_user: '默认质检人',
         create_time: '',
-        note: ''
+        note: ''
       },
       activeSearchField: '',
       activeSearchLabel: '',
@@ -694,6 +694,8 @@ export default {
     },
     handleEditRow (row) {
       this.editForm = { ...row } // 复制当前行的数据到表单
+      this.editForm.note = this.editForm.note || '无' // 防止note为空
+      this.editForm.check_user = this.editForm.check_user || '默认质检人' // 防止check_user为空 
       console.log(this.editForm)
       this.editDialog = true // 打开对话框
     },