|
@@ -155,6 +155,14 @@
|
|
</el-radio-group>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="是否允许微信线下支付" prop="offlinePay" label-width="160px">
|
|
|
|
+ <el-radio-group v-model="step1Form.offlinePay">
|
|
|
|
+ <el-radio :label="true">开启</el-radio>
|
|
|
|
+ <el-radio :label="false">禁用</el-radio>
|
|
|
|
+ </el-radio-group>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
<div style="margin-bottom: 20px">
|
|
<div style="margin-bottom: 20px">
|
|
@@ -753,6 +761,7 @@ export default {
|
|
storePay: '',
|
|
storePay: '',
|
|
companyType: 2,
|
|
companyType: 2,
|
|
yjhxDkFlag: '',
|
|
yjhxDkFlag: '',
|
|
|
|
+ offlinePay: true,
|
|
appModuleJson: []
|
|
appModuleJson: []
|
|
},
|
|
},
|
|
|
|
|
|
@@ -887,6 +896,7 @@ export default {
|
|
this.step1Form.storePay = res.data.storePay
|
|
this.step1Form.storePay = res.data.storePay
|
|
this.step1Form.companyType = res.data.companyType
|
|
this.step1Form.companyType = res.data.companyType
|
|
this.step1Form.yjhxDkFlag = res.data.yjhxDkFlag
|
|
this.step1Form.yjhxDkFlag = res.data.yjhxDkFlag
|
|
|
|
+ this.step1Form.offlinePay = res.data.offlinePay
|
|
this.step1Form.appModuleJson = JSON.parse(res.data.appModuleJson)
|
|
this.step1Form.appModuleJson = JSON.parse(res.data.appModuleJson)
|
|
|
|
|
|
this.img1_url = res.data.minLogo1
|
|
this.img1_url = res.data.minLogo1
|
|
@@ -1040,6 +1050,7 @@ export default {
|
|
storePay: this.step1Form.storePay,
|
|
storePay: this.step1Form.storePay,
|
|
companyType: this.step1Form.companyType,
|
|
companyType: this.step1Form.companyType,
|
|
yjhxDkFlag: this.step1Form.yjhxDkFlag,
|
|
yjhxDkFlag: this.step1Form.yjhxDkFlag,
|
|
|
|
+ offlinePay: this.step1Form.offlinePay,
|
|
appModuleJson: JSON.stringify(this.step1Form.appModuleJson)
|
|
appModuleJson: JSON.stringify(this.step1Form.appModuleJson)
|
|
}
|
|
}
|
|
editAccount(params)
|
|
editAccount(params)
|