|
@@ -121,7 +121,14 @@
|
|
|
/>
|
|
|
<el-table-column prop="companyNo" label="业务公司编号" width="110" show-overflow-tooltip />
|
|
|
<el-table-column prop="company" label="业务公司名称" width="110" show-overflow-tooltip />
|
|
|
- <el-table-column fixed="right">
|
|
|
+
|
|
|
+ <el-table-column label="京东链接" min-width="120px">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-input size="mini" placeholder="京东比价链接" :value="tableData[scope.$index].market_url" @input="changeMarketUrlByIndex($event,scope.$index)" />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
+ <el-table-column fixed="right" width="70px">
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
<span>操作</span>
|
|
|
<el-tooltip class="item" effect="dark" content="添加上线商品" placement="top">
|
|
@@ -264,6 +271,14 @@ export default {
|
|
|
this.isNoble = null;
|
|
|
}
|
|
|
},
|
|
|
+ changeMarketUrlByIndex(market_url,index){
|
|
|
+ console.log(market_url)
|
|
|
+
|
|
|
+ this.$set(this.tableData,index,{
|
|
|
+ ...this.tableData[index],
|
|
|
+ market_url
|
|
|
+ })
|
|
|
+ },
|
|
|
resultList(e) {
|
|
|
this.showModel = false;
|
|
|
let list = JSON.parse(JSON.stringify(e));
|
|
@@ -274,14 +289,8 @@ export default {
|
|
|
isGoldPrice: String(is_gold_price)
|
|
|
}));
|
|
|
|
|
|
- const nobleIds = categoryIds.filter(
|
|
|
- ({ id, isGoldPrice }) => id === "6" && isGoldPrice === "1"
|
|
|
- );
|
|
|
-
|
|
|
- console.log(nobleIds, categoryIds);
|
|
|
-
|
|
|
- this.isNoble =
|
|
|
- nobleIds.length > 0 && categoryIds.length === nobleIds.length;
|
|
|
+ const nobleIds = categoryIds.filter(({ id, isGoldPrice }) => id === "6" && isGoldPrice === "1");
|
|
|
+ this.isNoble = nobleIds.length > 0 && categoryIds.length === nobleIds.length;
|
|
|
|
|
|
list.forEach((e, ei) => {
|
|
|
let index = oldList.findIndex(a => {
|
|
@@ -290,7 +299,10 @@ export default {
|
|
|
|
|
|
if (index === -1) {
|
|
|
let item = JSON.parse(JSON.stringify(list[ei]));
|
|
|
- this.tableData.push(item);
|
|
|
+ this.tableData.push({
|
|
|
+ ...item,
|
|
|
+ market_url:""
|
|
|
+ });
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -298,6 +310,16 @@ export default {
|
|
|
this.ruleForm.online_remark = replaceTextWrapAndSpace(
|
|
|
this.ruleForm.online_remark
|
|
|
);
|
|
|
+
|
|
|
+ if(this.tableData.length > 0){
|
|
|
+ for(const tableItem of this.tableData){
|
|
|
+ if(!tableItem.market_url){
|
|
|
+ this.$message.warning("请填写京东比价链接")
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
await this.$refs.ruleForm.validate(async valid => {
|
|
|
if (valid) {
|
|
|
if (!this.loading) {
|
|
@@ -312,11 +334,15 @@ export default {
|
|
|
|
|
|
this.loading = true;
|
|
|
let model = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
+ model.goodinfo = []
|
|
|
let list = JSON.parse(JSON.stringify(this.tableData));
|
|
|
list.forEach(e => {
|
|
|
- model.codes.push(e.spuCode);
|
|
|
+ model.goodinfo.push({
|
|
|
+ spuCode: e.spuCode,
|
|
|
+ market_url: e.market_url
|
|
|
+ })
|
|
|
});
|
|
|
- // model.platform = model.platform.toString();
|
|
|
+ delete model.codes;
|
|
|
const { code, data, message } = await asyncRequest.add(model);
|
|
|
this.loading = false;
|
|
|
if (code === 0) {
|