|
@@ -163,6 +163,14 @@
|
|
|
</el-radio-group>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="是否微信自动分账" prop="isAutoShare" label-width="160px">
|
|
|
+ <el-radio-group v-model="step1Form.isAutoShare">
|
|
|
+ <el-radio :label="true">开启</el-radio>
|
|
|
+ <el-radio :label="false">禁用</el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
|
|
|
<el-col :span="12">
|
|
|
<div style="margin-bottom: 20px">
|
|
@@ -797,6 +805,7 @@ export default {
|
|
|
companyType: 2,
|
|
|
yjhxDkFlag: '',
|
|
|
offlinePay: true,
|
|
|
+ isAutoShare: true,
|
|
|
appModuleJson: [],
|
|
|
sortModuleJson: []
|
|
|
},
|
|
@@ -947,6 +956,7 @@ export default {
|
|
|
this.step1Form.companyType = res.data.companyType
|
|
|
this.step1Form.yjhxDkFlag = res.data.yjhxDkFlag
|
|
|
this.step1Form.offlinePay = res.data.offlinePay
|
|
|
+ this.step1Form.isAutoShare = res.data.isAutoShare
|
|
|
this.step1Form.appModuleJson = JSON.parse(res.data.appModuleJson)
|
|
|
this.step1Form.sortModuleJson = JSON.parse(res.data.sortModuleJson)
|
|
|
|
|
@@ -1102,6 +1112,7 @@ export default {
|
|
|
companyType: this.step1Form.companyType,
|
|
|
yjhxDkFlag: this.step1Form.yjhxDkFlag,
|
|
|
offlinePay: this.step1Form.offlinePay,
|
|
|
+ isAutoShare: this.step1Form.isAutoShare,
|
|
|
appModuleJson: JSON.stringify(this.step1Form.appModuleJson),
|
|
|
sortModuleJson: JSON.stringify(this.step1Form.sortModuleJson)
|
|
|
}
|