snow 2 years ago
parent
commit
b666c4d870

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/0.js


+ 12 - 0
dist/static/js/1.js

@@ -219,6 +219,18 @@ eval("\nvar $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/
 
 /***/ }),
 
+/***/ "./node_modules/core-js/modules/es.map.js":
+/*!************************************************!*\
+  !*** ./node_modules/core-js/modules/es.map.js ***!
+  \************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+eval("\nvar collection = __webpack_require__(/*! ../internals/collection */ \"./node_modules/core-js/internals/collection.js\");\nvar collectionStrong = __webpack_require__(/*! ../internals/collection-strong */ \"./node_modules/core-js/internals/collection-strong.js\");\n\n// `Map` constructor\n// https://tc39.github.io/ecma262/#sec-map-objects\nmodule.exports = collection('Map', function (init) {\n  return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };\n}, collectionStrong);\n\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.map.js?");
+
+/***/ }),
+
 /***/ "./node_modules/core-js/modules/es.number.is-integer.js":
 /*!**************************************************************!*\
   !*** ./node_modules/core-js/modules/es.number.is-integer.js ***!

+ 19 - 2
src/views/goodStore/goodsCost/components/baseForm.vue

@@ -1992,17 +1992,34 @@ export default {
       let id = cat_id.length == 1 ? cat_id[0] : "";
       if (id) {
         const { code, message, data } = await asyncRequest.catinfo({ id: id });
-        
+
         this.ruleForm.after_sales = data.cat_desc
         this.$refs.ruleForm.validateField('after_sales');
 
+        const unionSpec = (spec) => {
+          const newArr = []
+          const map = new Map()
+          spec.forEach((item,index) => {
+            if(!map.has(item.id)){
+              map.set(item.id,index)
+              newArr.push(item)
+            }
+          })
+          return newArr
+        }
+
         if (code === 0) {
-          const { spec } = data;
+          const { spec:_spec = [] } = data;
+          const spec = unionSpec(_spec)
+
           if (spec && spec.length > 0) {
             if (this.spec_tableData && this.spec_tableData.length > 0) {
               this.spec_tableData.forEach((c) => {
                 c.isMust = false;
               });
+
+ 
+
               spec.forEach((a, ai) => {
                 let findex = this.spec_tableData.findIndex(
                   (b) => b.spec_id + "" === a.id + ""

+ 16 - 1
src/views/goodStore/supplierGoodsCost/components/baseForm.vue

@@ -1992,10 +1992,25 @@ export default {
     async set_must_spec() {
       const { cat_id } = this.ruleForm;
       let id = cat_id.length == 1 ? cat_id[0] : "";
+
+      const unionSpec = (spec) => {
+          const newArr = []
+          const map = new Map()
+          spec.forEach((item,index) => {
+            if(!map.has(item.id)){
+              map.set(item.id,index)
+              newArr.push(item)
+            }
+          })
+          return newArr
+        }
+
       if (id) {
         const { code, message, data } = await asyncRequest.catinfo({ id: id });
         if (code === 0) {
-          const { spec } = data;
+          const { spec:_spec = [] } = data;
+          const spec = unionSpec(_spec)
+          
           if (spec && spec.length > 0) {
             if (this.spec_tableData && this.spec_tableData.length > 0) {
               this.spec_tableData.forEach((c) => {

Some files were not shown because too many files changed in this diff