This commit is contained in:
JS-LM
2023-06-15 15:47:14 +08:00
parent 4098f520e2
commit 7aa0922f92

View File

@@ -4,7 +4,7 @@
<!-- <div style="margin: 12px 0">汇付会员</div> --> <!-- <div style="margin: 12px 0">汇付会员</div> -->
<h2>汇付会员</h2> <h2>汇付会员</h2>
<hr> <hr>
<div style="margin: 12px 0" v-if="ruleForm.adapayMemberId == null"> <div style="margin: 12px 0" v-if="adapayMember == null">
没有查询到汇付会员配置请点击按钮创建汇付会员汇付结算账号 没有查询到汇付会员配置请点击按钮创建汇付会员汇付结算账号
<!-- 刷新按钮 --> <!-- 刷新按钮 -->
<el-button <el-button
@@ -31,7 +31,7 @@
</el-descriptions> </el-descriptions>
</el-card> </el-card>
<el-card class="box-card" shadow="hover" style="margin-top:20px" v-if="ruleForm.adapayMemberId !== null"> <el-card class="box-card" shadow="hover" style="margin-top:20px" v-if="adapayMember!== null">
<!-- <div style="margin: 12px 0">汇付结算账户</div> --> <!-- <div style="margin: 12px 0">汇付结算账户</div> -->
<h2>汇付结算账户</h2> <h2>汇付结算账户</h2>
<hr> <hr>
@@ -345,9 +345,9 @@ export default {
}; };
selectAdapayMember(param).then((response) => { selectAdapayMember(param).then((response) => {
console.log("查询 selectAdapayMember", response); console.log("查询 selectAdapayMember", response);
this.adapayMember = response.data;
if (response.data != null) { if (response.data != null) {
this.ruleForm = response.data.adapayMember; this.ruleForm = response.data.adapayMember;
this.adapayMember = response.data;
this.settleAccountList= response.data.settleAccountList this.settleAccountList= response.data.settleAccountList
console.log(' this.settleAccountList', this.settleAccountList) console.log(' this.settleAccountList', this.settleAccountList)
} }