1
This commit is contained in:
parent
01d31f9736
commit
83a1c714b4
@ -10,10 +10,11 @@ export function listCard(query) {
|
||||
}
|
||||
|
||||
// 查询博主名片详细
|
||||
export function getCard(id) {
|
||||
export function getCard(query) {
|
||||
return request({
|
||||
url: '/member/busiCard/' + id,
|
||||
method: 'get'
|
||||
url: '/member/busiCard/getBusiCardById',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -27,7 +27,13 @@
|
||||
<template slot="label">
|
||||
剩余积分
|
||||
</template>
|
||||
{{ bloggerDetail.bpoints }}
|
||||
{{ bloggerDetail.pointsBalance }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
剩余报名次数
|
||||
</template>
|
||||
{{ bloggerDetail.report }}
|
||||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
|
||||
|
@ -179,7 +179,7 @@ export default {
|
||||
/** 查看名片片详情 */
|
||||
getCardById(id) {
|
||||
this.reset();
|
||||
getCard(id).then(response => {
|
||||
getCard({id:id}).then(response => {
|
||||
this.form = response.data;
|
||||
});
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user