|
@@ -2192,8 +2192,8 @@ export default {
|
|
|
lead_time: lead_time || "",
|
|
|
sample_day: sample_day || "",
|
|
|
good_thumb_img: good_thumb_img || "",
|
|
|
- good_img: !isArray(good_img || "") ? good_img.split(",") : [],
|
|
|
- good_info_img: !isArray(good_info_img || "") ? good_info_img.split(",") : [],
|
|
|
+ good_img: good_img ?!isArray(good_img || "") ? good_img.split(",") : []:[],
|
|
|
+ good_info_img: good_info_img?!isArray(good_info_img || "") ? good_info_img.split(",") : []:[],
|
|
|
//固定阶梯成本
|
|
|
demo_fee: demo_fee || "",
|
|
|
open_fee: open_fee || "",
|
|
@@ -2436,7 +2436,7 @@ export default {
|
|
|
async noble_metalsearchChange(e) {
|
|
|
const { id, code, label } = e;
|
|
|
this.ruleForm.noble_metal = id || "";
|
|
|
- tthis.$refs.ruleForm && his.$refs.ruleForm.validateField("noble_metal");
|
|
|
+ this.$refs.ruleForm && this.$refs.ruleForm.validateField("noble_metal");
|
|
|
await this.get_all_fee();
|
|
|
},
|
|
|
async areaChange(e, key) {
|