|
@@ -285,7 +285,7 @@ export default {
|
|
|
'product_brand_id': 1,
|
|
|
'product_brand_name': '大众', // 品牌名称
|
|
|
'product_spec': 'xl', // 规格
|
|
|
- 'product_unit': '个', // 单位 TODO 获取单位列表
|
|
|
+ 'product_unit': '个', // 单位
|
|
|
'product_all_price': 10000, // 批发价
|
|
|
'product_price': 9000, // 零售价
|
|
|
'product_count': 1000, // 库存
|
|
@@ -345,7 +345,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
handleSubmit() {
|
|
|
- const url = this.exData.id ? '' : ''
|
|
|
+ const url = this.exData.id ? '/api/admin/product/modify' : ''
|
|
|
this.$refs.form.validate(async valid => {
|
|
|
if (valid) {
|
|
|
const formData = JSON.parse(JSON.stringify(this.form))
|