|
@@ -17,7 +17,7 @@
|
|
|
<el-row :gutter="10">
|
|
|
<el-col :span="24" style="padding: 0 0 15px 0">
|
|
|
<el-table
|
|
|
- :data="sitem"
|
|
|
+ :data="list"
|
|
|
stripe
|
|
|
:size="'mini'"
|
|
|
border
|
|
@@ -60,6 +60,11 @@
|
|
|
<el-table-column prop="supplier_name" label="供应商名称" width="110" show-overflow-tooltip />
|
|
|
<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 prop="market_url" label="京东链接" width="200" fixed="right" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-input size="mini" placeholder="京东比价链接" :value="list[scope.$index].market_url" @input="changeMarketUrl($event,scope.$index)" />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
</el-col>
|
|
|
<el-col :span="24">
|
|
@@ -110,14 +115,14 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="16" style="text-align: right">
|
|
|
- <el-form-item label="京东链接" prop="market_url">
|
|
|
+ <!-- <el-form-item label="京东链接" prop="market_url">
|
|
|
<el-input
|
|
|
v-model="ruleForm.market_url"
|
|
|
:disabled="false"
|
|
|
placeholder="京东比价链接"
|
|
|
maxlength="200"
|
|
|
/>
|
|
|
- </el-form-item>
|
|
|
+ </el-form-item> -->
|
|
|
|
|
|
<el-form-item label="上线原因" prop="online_reason">
|
|
|
<el-input
|
|
@@ -167,7 +172,7 @@ export default {
|
|
|
isYZPlatform: false,
|
|
|
showModelThis: this.showModel,
|
|
|
ruleForm: {
|
|
|
- market_url:"",
|
|
|
+ list:[],
|
|
|
platform_type: "",
|
|
|
platform: "", // string 平台id
|
|
|
is_fixed: "", // string 定价模式
|
|
@@ -188,11 +193,6 @@ export default {
|
|
|
trigger: "change"
|
|
|
}
|
|
|
],
|
|
|
- market_url:[{
|
|
|
- required: true,
|
|
|
- message: "请选择京东链接",
|
|
|
- trigger: "change"
|
|
|
- }],
|
|
|
is_fixed: [
|
|
|
{
|
|
|
required: true,
|
|
@@ -239,6 +239,9 @@ export default {
|
|
|
];
|
|
|
}
|
|
|
},
|
|
|
+ // mounted(){
|
|
|
+
|
|
|
+ // },
|
|
|
watch: {
|
|
|
isFiexed() {
|
|
|
if (this.ruleForm.is_fixed === "0") {
|
|
@@ -249,6 +252,7 @@ export default {
|
|
|
this.showModelThis = val;
|
|
|
if (val) {
|
|
|
this.initForm();
|
|
|
+ this.list = JSON.parse(JSON.stringify(this.sitem));
|
|
|
}
|
|
|
},
|
|
|
showModelThis(val) {
|
|
@@ -258,6 +262,12 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ changeMarketUrl(market_url,index){
|
|
|
+ this.$set(this.list,index,{
|
|
|
+ ...this.list[index],
|
|
|
+ market_url
|
|
|
+ })
|
|
|
+ },
|
|
|
async initForm() {
|
|
|
this.loading = true;
|
|
|
this.rulesThis = this.rules;
|
|
@@ -271,7 +281,6 @@ export default {
|
|
|
this.$refs.ruleForm.resetFields();
|
|
|
this.$refs.ruleForm.clearValidate();
|
|
|
this.ruleForm = {
|
|
|
- market_url:"",
|
|
|
platform_type: "",
|
|
|
platform: "", // string 平台id
|
|
|
online_reason: "", // string 上线原因
|
|
@@ -291,6 +300,16 @@ export default {
|
|
|
this.ruleForm.online_remark = replaceTextWrapAndSpace(
|
|
|
this.ruleForm.online_remark
|
|
|
);
|
|
|
+
|
|
|
+ if(this.list.length > 0){
|
|
|
+ for(const item of this.list){
|
|
|
+ if(!item.market_url){
|
|
|
+ this.$message.warning("请填入京东比价链接")
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
await this.$refs.ruleForm.validate(async valid => {
|
|
|
if (valid) {
|
|
|
if (!this.loading) {
|
|
@@ -299,16 +318,15 @@ export default {
|
|
|
|
|
|
// model.platform = model.platform.toString();
|
|
|
model.codes = [];
|
|
|
- const list = JSON.parse(JSON.stringify(this.sitem));
|
|
|
+ const list = JSON.parse(JSON.stringify(this.list));
|
|
|
model.goodinfo = []
|
|
|
list.forEach(e => {
|
|
|
model.goodinfo.push({
|
|
|
spuCode: e.spuCode,
|
|
|
- market_url: this.ruleForm.market_url
|
|
|
+ market_url:e.market_url
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- delete model.market_url
|
|
|
delete model.codes;
|
|
|
|
|
|
const { code, data, message } = await asyncRequest.online_add(
|