mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-03 17:40:13 +08:00
汇付会员配置
This commit is contained in:
@@ -17,20 +17,20 @@
|
||||
<el-card class="box-card" shadow="hover" style="margin-bottom: 10px">
|
||||
<h2>汇付会员</h2>
|
||||
<hr>
|
||||
<!-- <el-descriptions :column="2" >
|
||||
<el-descriptions :column="2" >
|
||||
<el-descriptions-item label="会员昵称">{{
|
||||
ruleForm.nickname
|
||||
dialogForm.nickname
|
||||
}}</el-descriptions-item>
|
||||
<el-descriptions-item label="会员邮箱">{{
|
||||
ruleForm.email
|
||||
dialogForm.email
|
||||
}}</el-descriptions-item>
|
||||
<el-descriptions-item label="会员性别">{{
|
||||
ruleForm.gender === "FEMALE" ? "女" : "男"
|
||||
dialogForm.gender === "FEMALE" ? "女" : "男"
|
||||
}}</el-descriptions-item>
|
||||
<el-descriptions-item label="公司地址">{{
|
||||
ruleForm.location
|
||||
dialogForm.location
|
||||
}}</el-descriptions-item>
|
||||
</el-descriptions> -->
|
||||
</el-descriptions>
|
||||
</el-card>
|
||||
|
||||
<el-card class="box-card" shadow="hover" style="margin:20px 0">
|
||||
@@ -225,7 +225,7 @@
|
||||
<script>
|
||||
import {
|
||||
selectAdapayMember,
|
||||
createAdapayMember,createCorpMember
|
||||
createAdapayMember,createCorpMember,createSettleAccount
|
||||
} from "@/api/adapayMember/adapayMember";
|
||||
import { getToken } from "@/utils/auth";
|
||||
export default {
|
||||
@@ -482,6 +482,11 @@ export default {
|
||||
this.$refs[dialogForm].validate((valid) =>{
|
||||
if (valid) {
|
||||
console.log(valid,'valid');
|
||||
createSettleAccount(this.dialogForm).then((response) =>{
|
||||
console.log('新增',response);
|
||||
this.dialog = false
|
||||
this.selectAdapayMember();
|
||||
})
|
||||
} else {
|
||||
console.log('表格提交失败');
|
||||
return false
|
||||
@@ -518,7 +523,7 @@ export default {
|
||||
console.log("查询 selectAdapayMember", response);
|
||||
this.adapayMember = response.data;
|
||||
if (response.data != null) {
|
||||
this.ruleForm = response.data.adapayMember;
|
||||
this.dialogForm = response.data.adapayMember;
|
||||
this.settleAccountList= response.data.settleAccountList
|
||||
console.log(' this.settleAccountList', this.settleAccountList)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user