update 汇付会员

This commit is contained in:
2023-06-09 14:44:32 +08:00
parent 87d4f8a9f0
commit e1bc44bbc3
6 changed files with 53 additions and 17 deletions

View File

@@ -312,7 +312,7 @@ export default {
this.$refs[formName].resetFields();
},
// 查询汇付会员
getList() {
selectAdapayMember() {
console.log("this.merchantId", this.merchantId);
let param = {
merchantId: this.merchantId,
@@ -323,9 +323,14 @@ export default {
this.adapayMember = response.data;
});
},
// 查询汇付结算账户
selectSettleAccount() {
}
},
created() {
this.getList();
this.selectAdapayMember();
this.selectSettleAccount();
},
};
</script>