Commit 45a2fab9 by caoyanzhi

update: 客户展示设置

parent bd209dc6
......@@ -120,9 +120,9 @@ export default {
return types;
}, []);
this.myCustomData.storeType = this.myCustomData.storeType.concat(this.selectedTypes);
setTimeout(() => {
this.$nextTick(() => {
this.rules.storeType.trigger = 'change';
}, 50);
});
}
});
},
......@@ -159,7 +159,7 @@ export default {
const { strategyName, storeType, mainStoreFlag, minorStoreFlag, openCardStoreFlag, clerkSeeOtherFlag, showFreezeFlag, isSeeAuthMember } = result || {};
Object.assign(this.myCustomData, {
strategyName,
storeType: typeof storeType == 'string' ? storeType.split(',') : [],
storeType: this.selectedTypes.concat(typeof storeType == 'string' ? storeType.split(',') : []),
mainStoreFlag,
minorStoreFlag,
openCardStoreFlag,
......@@ -167,9 +167,9 @@ export default {
showFreezeFlag,
isSeeAuthMember
});
setTimeout(() => {
this.$nextTick(() => {
this.rules.options.trigger = 'change';
}, 50);
});
});
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment