|
@@ -127,6 +127,14 @@
|
|
|
</el-radio-group>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="商户属性" prop="companyType">
|
|
|
+ <el-radio-group v-model="step1Form.companyType">
|
|
|
+ <el-radio :label="1">销售</el-radio>
|
|
|
+ <el-radio :label="2">售后</el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="以旧换新抵扣方式" prop="yjhxDkFlag">
|
|
|
<el-radio-group v-model="step1Form.yjhxDkFlag">
|
|
@@ -520,6 +528,7 @@ export default {
|
|
|
moduleZl:'',
|
|
|
moduleEs:'',
|
|
|
storePay: '',
|
|
|
+ companyType: 2,
|
|
|
yjhxDkFlag: '',
|
|
|
},
|
|
|
|
|
@@ -644,13 +653,14 @@ export default {
|
|
|
this.step1Form.password = '************';
|
|
|
this.step1Form.companyExpireTime = res.data.companyExpireTime
|
|
|
this.step1Form.moduleMaterialPart = res.data.moduleMaterialPart
|
|
|
- this.step1Form.billTitle = res.data.billTitle
|
|
|
+ this.step1Form.billTitle = res.data.billTitle
|
|
|
this.step1Form.moduleYb = res.data.moduleYb
|
|
|
this.step1Form.moduleWb = res.data.moduleWb
|
|
|
this.step1Form.joinCode = res.data.joinCode
|
|
|
this.step1Form.moduleZl = res.data.moduleZl
|
|
|
this.step1Form.moduleEs = res.data.moduleEs
|
|
|
this.step1Form.storePay = res.data.storePay
|
|
|
+ this.step1Form.companyType = res.data.companyType
|
|
|
this.step1Form.yjhxDkFlag = res.data.yjhxDkFlag
|
|
|
|
|
|
this.img1_url = res.data.minLogo1;
|
|
@@ -658,7 +668,7 @@ export default {
|
|
|
this.img3_url = res.data.minLogo3;
|
|
|
this.qrcode1_url = res.data.qrcode1;
|
|
|
this.qrcode2_url = res.data.qrcode2;
|
|
|
- this.qrcode3_url = res.data.payQrcode;
|
|
|
+ this.qrcode3_url = res.data.payQrcode;
|
|
|
|
|
|
this.step3Form.enterpriseId = res.data.corpId;
|
|
|
this.step3Form.listSecret = res.data.secret2;
|
|
@@ -793,13 +803,14 @@ export default {
|
|
|
// adminUserId: this.id,
|
|
|
companyWechatId: this.companyWechatId,
|
|
|
moduleMaterialPart: this.step1Form.moduleMaterialPart,
|
|
|
- billTitle: this.step1Form.billTitle,
|
|
|
+ billTitle: this.step1Form.billTitle,
|
|
|
moduleYb: this.step1Form.moduleYb,
|
|
|
moduleWb: this.step1Form.moduleWb,
|
|
|
joinCode: this.step1Form.joinCode,
|
|
|
moduleZl: this.step1Form.moduleZl,
|
|
|
moduleEs: this.step1Form.moduleEs,
|
|
|
storePay: this.step1Form.storePay,
|
|
|
+ companyType: this.step1Form.companyType,
|
|
|
yjhxDkFlag: this.step1Form.yjhxDkFlag,
|
|
|
}
|
|
|
editAccount(params).then(res => {
|