|
@@ -83,6 +83,32 @@
|
|
|
@searchChange="platform_codesearchChange"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="对接平台" prop="platform_type">
|
|
|
+ <el-select
|
|
|
+ :disabled="!ruleForm.platform_type"
|
|
|
+ v-model="ruleForm.platform_type"
|
|
|
+ @change="ruleForm.platform = ''"
|
|
|
+ disabled
|
|
|
+ placeholder="对接平台"
|
|
|
+ style="width:100%"
|
|
|
+ >
|
|
|
+ <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%">
|
|
|
+ <el-option
|
|
|
+ v-for="p in pricingOptions"
|
|
|
+ :key="p.value"
|
|
|
+ :value="p.value"
|
|
|
+ :label="p.label"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
<el-form-item label="上线原因" prop="online_reason">
|
|
|
<el-input
|
|
|
:disabled="false"
|
|
@@ -123,13 +149,16 @@ import asyncRequest from "@/apis/service/goodStore/dealGoodsPool";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
export default {
|
|
|
name: "brand",
|
|
|
- props: ["showModel", "id", "sitem"],
|
|
|
+ props: ["showModel", "id", "sitem", "isNobleMetal"],
|
|
|
mixins: [resToken],
|
|
|
data() {
|
|
|
return {
|
|
|
loading: false,
|
|
|
+ isYZPlatform:false,
|
|
|
showModelThis: this.showModel,
|
|
|
ruleForm: {
|
|
|
+ platform_type: "",
|
|
|
+ is_fixed: "",
|
|
|
platform: "", //string 平台id
|
|
|
online_reason: "", //string 上线原因
|
|
|
online_remark: "" //string 上线备注
|
|
@@ -141,6 +170,20 @@ export default {
|
|
|
],
|
|
|
rulesThis: this.rules,
|
|
|
rules: {
|
|
|
+ is_fixed: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "请选择定价模式",
|
|
|
+ trigger: "change"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ platform_type: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "请选择对接平台",
|
|
|
+ trigger: "change"
|
|
|
+ }
|
|
|
+ ],
|
|
|
platform: [
|
|
|
{
|
|
|
required: true,
|
|
@@ -166,6 +209,11 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
watch: {
|
|
|
+ isFiexed() {
|
|
|
+ if (this.ruleForm.is_fixed === "0") {
|
|
|
+ this.ruleForm.is_fixed = "";
|
|
|
+ }
|
|
|
+ },
|
|
|
showModel: function(val) {
|
|
|
this.showModelThis = val;
|
|
|
if (val) {
|
|
@@ -178,7 +226,35 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ computed:{
|
|
|
+ isFiexed() {
|
|
|
+ return (
|
|
|
+ !this.isYZPlatform &&
|
|
|
+ this.isNobleMetal &&
|
|
|
+ this.ruleForm.platform_type !== "1"
|
|
|
+ );
|
|
|
+ },
|
|
|
+ pricingOptions() {
|
|
|
+ return [
|
|
|
+ { value: "1", label: "一口价" },
|
|
|
+ ...(this.isFiexed ? [{ value: "0", label: "实时金价" }] : [])
|
|
|
+ ];
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
+ isFiexed() {
|
|
|
+ return (
|
|
|
+ !this.isYZPlatform &&
|
|
|
+ this.isNobleMetal &&
|
|
|
+ this.ruleForm.platform_type !== "1"
|
|
|
+ );
|
|
|
+ },
|
|
|
+ pricingOptions() {
|
|
|
+ return [
|
|
|
+ { value: "1", label: "一口价" },
|
|
|
+ ...(this.isFiexed ? [{ value: "0", label: "实时金价" }] : [])
|
|
|
+ ];
|
|
|
+ },
|
|
|
async initForm() {
|
|
|
this.loading = true;
|
|
|
this.rulesThis = this.rules;
|
|
@@ -192,6 +268,8 @@ export default {
|
|
|
this.$refs.ruleForm.resetFields();
|
|
|
this.$refs.ruleForm.clearValidate();
|
|
|
this.ruleForm = {
|
|
|
+ platform_type:"",
|
|
|
+ is_fiexed:"",
|
|
|
platform: "", //string 平台id
|
|
|
online_reason: "", //string 上线原因
|
|
|
online_remark: "" //string 上线备注
|
|
@@ -200,8 +278,10 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
platform_codesearchChange(e) {
|
|
|
- const { id, code, label } = e;
|
|
|
+ const { id, code, label, platform_type } = e;
|
|
|
this.ruleForm.platform = id || "";
|
|
|
+ this.isYZPlatform = platform_type === "1";
|
|
|
+ this.ruleForm.platform_type = platform_type
|
|
|
this.$refs.ruleForm.validateField("platform");
|
|
|
},
|
|
|
async submitForm() {
|