【类 型】:fix
【原 因】:oldFile字段用了空数组 导致序列化 bug 【过 程】:把oldFile字段改为 空白字符串 【影 响】:
This commit is contained in:
parent
a5def2922d
commit
c2ba68ec63
@ -94,7 +94,7 @@ export default {
|
|||||||
stock: '',
|
stock: '',
|
||||||
purchase_channel: '',
|
purchase_channel: '',
|
||||||
upFile: '',
|
upFile: '',
|
||||||
oldFile: []
|
oldFile: ''
|
||||||
},
|
},
|
||||||
skuId: this.$route.params.id, // get参数 获取商品id 没有为添加页面
|
skuId: this.$route.params.id, // get参数 获取商品id 没有为添加页面
|
||||||
pageState: 'add', // 页面状态
|
pageState: 'add', // 页面状态
|
||||||
|
@ -108,6 +108,8 @@ export default {
|
|||||||
email: '',
|
email: '',
|
||||||
price_min: '',
|
price_min: '',
|
||||||
weight_max: '',
|
weight_max: '',
|
||||||
|
default_transport_price: '',
|
||||||
|
default_pack_price: '',
|
||||||
desc: '',
|
desc: '',
|
||||||
upFile: '',
|
upFile: '',
|
||||||
oldFile: '',
|
oldFile: '',
|
||||||
|
Loading…
Reference in New Issue
Block a user