|
@@ -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 + ""
|