|
@@ -13,31 +13,32 @@
|
|
|
>
|
|
|
<el-row>
|
|
|
<el-col :span="8">
|
|
|
- <el-form-item label="对接平台" prop="platform_type">
|
|
|
- <el-select
|
|
|
- placeholder="对接平台"
|
|
|
- style="width:100%"
|
|
|
- v-model="ruleForm.platform_type"
|
|
|
- @change="ruleForm.platform = ''"
|
|
|
- >
|
|
|
- <el-option label="有赞平台" value="1" />
|
|
|
- <el-option label="无对接" value="0" />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
+ <!-- :platformType="ruleForm.platform_type" -->
|
|
|
|
|
|
<el-form-item label="所属平台" prop="platform">
|
|
|
<search-terrace
|
|
|
:value="ruleForm.platform"
|
|
|
- :disabled="!ruleForm.platform_type"
|
|
|
:size="'mini'"
|
|
|
:is_show="'1'"
|
|
|
:isDetail="false"
|
|
|
:placeholder="'所属平台'"
|
|
|
- :platformType="ruleForm.platform_type"
|
|
|
@searchChange="platform_codesearchChange"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
|
|
|
+ <el-form-item label="对接平台" prop="platform_type">
|
|
|
+ <el-select
|
|
|
+ placeholder="对接平台"
|
|
|
+ style="width:100%"
|
|
|
+ v-model="ruleForm.platform_type"
|
|
|
+ @change="handleTypeChange"
|
|
|
+ disabled
|
|
|
+ >
|
|
|
+ <el-option label="有赞平台" value="1" />
|
|
|
+ <el-option label="无对接" value="0" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
<el-form-item label="定价模式" prop="is_fixed">
|
|
|
<el-select v-model="ruleForm.is_fixed" style="width:100%" placeholder="定价模式">
|
|
|
<el-option
|
|
@@ -169,7 +170,12 @@ import { replaceTextWrapAndSpace } from "@/utils";
|
|
|
export default {
|
|
|
name: "goodsOnlineAdd",
|
|
|
mixins: [resToken],
|
|
|
- props: ["showModel", "id", "type", "sitem"],
|
|
|
+ props: [
|
|
|
+ "showModel",
|
|
|
+ "sitem",
|
|
|
+ "type",
|
|
|
+ "id"
|
|
|
+ ],
|
|
|
components: {
|
|
|
searchGoodModal
|
|
|
},
|
|
@@ -241,6 +247,9 @@ export default {
|
|
|
this.initForm();
|
|
|
},
|
|
|
methods: {
|
|
|
+ handleTypeChange(){
|
|
|
+ this.ruleForm.platform = ''
|
|
|
+ },
|
|
|
async initForm() {
|
|
|
this.loading = true;
|
|
|
this.resetFormData();
|
|
@@ -379,9 +388,11 @@ export default {
|
|
|
},
|
|
|
|
|
|
platform_codesearchChange(e) {
|
|
|
- const { id, code, label, platform_type } = e;
|
|
|
+ const { id,platform_type } = e;
|
|
|
this.ruleForm.platform = id || "";
|
|
|
this.isYzPlatform = String(platform_type) === "1";
|
|
|
+
|
|
|
+ this.ruleForm.platform_type = platform_type
|
|
|
this.$refs.ruleForm.validateField("platform");
|
|
|
}
|
|
|
}
|