<template>
|
<!--
|
作者:luoyiming
|
时间:2020-06-04
|
描述:插件中心-积分商城-商品设置-添加商品
|
-->
|
<div class="pb50">
|
<el-form size="small" ref="form" :model="form" label-width="150px" v-if="!loading">
|
<!--商品信息-->
|
<Info></Info>
|
|
<!--规格-->
|
<Spec></Spec>
|
|
<!--其它-->
|
<Other></Other>
|
|
<!--提交-->
|
</el-form>
|
|
<div class="common-button-wrapper">
|
<el-button size="small" type="info" @click="cancelFunc">取消</el-button>
|
<el-button size="small" type="primary" @click="onSubmit" :loading="loading">提交</el-button>
|
</div>
|
</div>
|
</template>
|
<script>
|
import AdvanceApi from '@/api/advance.js';
|
import Info from './part/Info.vue';
|
import Spec from './part/Spec.vue';
|
import Other from './part/Other.vue';
|
import {
|
formatModel
|
} from '@/utils/base.js';
|
export default {
|
components: {
|
/*产品基本信息*/
|
Info,
|
/*规格*/
|
Spec,
|
/*其它*/
|
Other
|
},
|
data() {
|
return {
|
/*是否正在加载*/
|
loading: true,
|
/*表单*/
|
form: {
|
/*商品ID*/
|
advance_product_id: 0,
|
/*商品状态*/
|
status: 10,
|
/*商品名称*/
|
product_name: '',
|
/*图片*/
|
product_image: '',
|
/*排序*/
|
sort: 100,
|
/*规格*/
|
product_sku_id: 0,
|
/*限购数量*/
|
limit_num: 1,
|
/*定金*/
|
money: '',
|
/*尾款立减金额*/
|
reduce_money: '',
|
/*活动时间*/
|
active_time: [],
|
/*审核状态*/
|
audit_status: '',
|
/*商品表格*/
|
tableData: []
|
|
}
|
};
|
},
|
provide: function() {
|
return {
|
form: this.form,
|
type: 'add'
|
};
|
},
|
created() {
|
if (this.$route.query.advance_product_id != null) {
|
this.form.advance_product_id = this.$route.query.advance_product_id;
|
this.getData();
|
}
|
},
|
methods: {
|
/*获取商品*/
|
getData() {
|
let self = this;
|
AdvanceApi.detail({
|
advance_product_id: self.form.advance_product_id
|
},
|
true
|
).then(res => {
|
self.form.product_name = res.data.model.product.product_name;
|
self.form.product_image = res.data.model.product.image[0].file_path;
|
self.form.product_id = res.data.model.product.product_id;
|
self.form.active_time = res.data.model.active_time;
|
self.form.money = res.data.model.money;
|
self.form.limit_num = res.data.model.limit_num;
|
self.form.status = res.data.model.status;
|
self.form.sort = res.data.model.sort;
|
self.form.stock = res.data.model.stock;
|
self.form.reduce_money = res.data.model.reduce_money;
|
self.form.audit_status = res.data.model.audit_status;
|
res.data.model.sku.forEach(item => {
|
item.product_name = self.form.product_name;
|
item.spec_name = item.product_attr;
|
item.spec_type = res.data.model.product.spec_type;
|
});
|
self.form.tableData = res.data.model.sku;
|
self.loading = false;
|
});
|
},
|
|
/*提交表单*/
|
onSubmit() {
|
let self = this;
|
self.$refs.form.validate(valid => {
|
if (valid) {
|
let params = {
|
product: {}
|
};
|
params.product_id = self.form.product_id;
|
params.money = self.form.money;
|
params.status = self.form.status;
|
params.sort = self.form.sort;
|
params.limit_num = self.form.limit_num;
|
params.active_time = self.form.active_time;
|
params.reduce_money = self.form.reduce_money;
|
params.advance_product_id = self.form.advance_product_id;
|
params.product_id = self.form.product_id;
|
params.audit_status = self.form.audit_status;
|
params.product.spec_list = self.tableFormet(self.form.tableData);
|
self.loading = true;
|
AdvanceApi.saveData(params, true)
|
.then(data => {
|
self.loading = false;
|
self.$message({
|
message: '恭喜你,添加成功',
|
type: 'success'
|
});
|
self.cancelFunc();
|
})
|
.catch(error => {
|
self.loading = false;
|
});
|
}
|
});
|
},
|
|
/*表格数据格式化*/
|
tableFormet(list) {
|
list.forEach(item => {
|
item.product_attr = item.spec_name;
|
});
|
return list;
|
},
|
|
/*取消*/
|
cancelFunc() {
|
this.$router.back(-1);
|
}
|
}
|
};
|
</script>
|
<style>
|
.edit_container {
|
font-family: 'Avenir', Helvetica, Arial, sans-serif;
|
-webkit-font-smoothing: antialiased;
|
-moz-osx-font-smoothing: grayscale;
|
text-align: center;
|
color: #2c3e50;
|
}
|
|
.ql-editor {
|
height: 400px;
|
}
|
</style>
|