002201 2 年 前
コミット
9d429f6491

+ 0 - 4
src/components/popover-select/index.vue

@@ -97,10 +97,6 @@ export default {
     };
   },
   computed: {
-    // innerValue() {
-    //   const { value, multiple } = this.$props;
-    //   return multiple ? "" : value;
-    // },
     innerValue: {
       get() {
         const { value, multiple } = this.$props;

+ 1 - 1
src/views/purchase/catalogue/column.js

@@ -9,7 +9,7 @@ export const FormColumns = [
   // },
   { key: "materialName", title: "物料" },
   { key: "materialCode", title: "物料编码" },
-  { key: "materialClassify", title: "物料一级分类" },
+  // { key: "materialClassify", title: "物料一级分类" },
   { key: "manufacturerName", title: "生产厂家名称" },
   // { key: "manufacturer", title: "生产厂家" },
   { key: "model", title: "物料型号" },

+ 2 - 2
src/views/purchase/contract/edit/index.vue

@@ -83,14 +83,14 @@ export default {
     },
     //
     async useRowRemove(prop, scope) {
-      const { ROMVE } = TABLE;
+      const { REMOVE } = TABLE;
       const {
         row: { id, contractId },
       } = scope;
       try {
         // try
         this.loading = true;
-        const { code } = ROMVE(id, prop);
+        const { code } = REMOVE(id, prop);
         if (code === 200) {
           this.fetchItem(contractId);
         }