This commit is contained in:
PQZ 2025-04-03 15:48:09 +08:00
parent 01d31f9736
commit 83a1c714b4
3 changed files with 12 additions and 5 deletions

View File

@ -10,10 +10,11 @@ export function listCard(query) {
} }
// 查询博主名片详细 // 查询博主名片详细
export function getCard(id) { export function getCard(query) {
return request({ return request({
url: '/member/busiCard/' + id, url: '/member/busiCard/getBusiCardById',
method: 'get' method: 'get',
params: query
}) })
} }

View File

@ -27,7 +27,13 @@
<template slot="label"> <template slot="label">
剩余积分 剩余积分
</template> </template>
{{ bloggerDetail.bpoints }} {{ bloggerDetail.pointsBalance }}
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
剩余报名次数
</template>
{{ bloggerDetail.report }}
</el-descriptions-item> </el-descriptions-item>
</el-descriptions> </el-descriptions>

View File

@ -179,7 +179,7 @@ export default {
/** 查看名片片详情 */ /** 查看名片片详情 */
getCardById(id) { getCardById(id) {
this.reset(); this.reset();
getCard(id).then(response => { getCard({id:id}).then(response => {
this.form = response.data; this.form = response.data;
}); });
}, },