|
|
@@ -137,6 +137,18 @@
|
|
|
<el-option v-for="item in institutionList" :value="item.id" :label="item.name"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="账号互通" prop="accountLinking">
|
|
|
+ <el-radio-group style="width: 100%;" v-model="functionForm.accountLinking">
|
|
|
+ <el-row :gutter="20">
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-radio :value="1">开启</el-radio>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-radio :value="0">关闭</el-radio>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-radio-group>
|
|
|
+ </el-form-item>
|
|
|
</el-form>
|
|
|
</el-descriptions-item>
|
|
|
</el-descriptions>
|
|
|
@@ -264,7 +276,8 @@ let functionForm = ref({
|
|
|
salesmanWithdrawAccountAuditDept: null,
|
|
|
salesmanWithdrawAccountAuditDeptList: '',
|
|
|
salesmanWithdrawPaymentAuditDept: null,
|
|
|
- salesmanWithdrawPaymentAuditDeptList: ''
|
|
|
+ salesmanWithdrawPaymentAuditDeptList: '',
|
|
|
+ accountLinking: 0
|
|
|
})
|
|
|
const functionRules = {
|
|
|
a: [
|