|
@@ -766,7 +766,7 @@
|
|
|
<li
|
|
|
class="img-show-li"
|
|
|
v-if="
|
|
|
- ruleForm.good_img.length < 10 &&
|
|
|
+ ruleForm.good_img.length < 11 &&
|
|
|
(type == 'add' || type === 'editBase' || type === 'edit')
|
|
|
"
|
|
|
>
|
|
@@ -819,7 +819,7 @@
|
|
|
<li
|
|
|
class="img-show-li"
|
|
|
v-if="
|
|
|
- ruleForm.good_info_img.length < 10 &&
|
|
|
+ ruleForm.good_info_img.length < 11 &&
|
|
|
(type == 'add' || type === 'editBase' || type === 'edit')
|
|
|
"
|
|
|
>
|
|
@@ -1880,7 +1880,10 @@ export default {
|
|
|
lead_time: lead_time || "",
|
|
|
sample_day: sample_day || "",
|
|
|
good_thumb_img: good_thumb_img || "",
|
|
|
- good_img: good_img ? (good_img || "").split(",") : [],
|
|
|
+ good_img: good_img ? Object.prototype.toString.call(good_img) ===
|
|
|
+ "[object Array]"
|
|
|
+ ? []
|
|
|
+ :(good_img || "").split(",") : [],
|
|
|
good_info_img: good_info_img
|
|
|
? (Object.prototype.toString.call(good_info_img) ===
|
|
|
"[object Array]"
|
|
@@ -2110,7 +2113,9 @@ export default {
|
|
|
if (key === "good_thumb_img") {
|
|
|
this.ruleForm[key] = url;
|
|
|
} else {
|
|
|
- this.ruleForm[key].push(url);
|
|
|
+ if(this.ruleForm[key].length<10){
|
|
|
+ this.ruleForm[key].push(url);
|
|
|
+ }
|
|
|
}
|
|
|
this.$refs.ruleForm.validateField(key);
|
|
|
this.$message.success("图片上传成功!");
|