Browse Source

卷袋贴保存问题

zhangjie 2 years ago
parent
commit
8cf3d14629
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/base/components/ModifyPrintTemplate.vue

+ 1 - 1
src/modules/base/components/ModifyPrintTemplate.vue

@@ -137,7 +137,7 @@ export default {
   data() {
     const fieldsValidator = (rule, value, callback) => {
       if (this.modalForm.classify === "PACKAGE") {
-        if (!this.packageDatas.basic.some(item => item.enable)) {
+        if (!this.packageDatas.some(item => item.enable)) {
           return callback(new Error("请选择显示字段"));
         }
         return callback();