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({
|
return request({
|
||||||
url: '/member/busiCard/' + id,
|
url: '/member/busiCard/getBusiCardById',
|
||||||
method: 'get'
|
method: 'get',
|
||||||
|
params: query
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -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>
|
||||||
|
|
||||||
|
|||||||
@ -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;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user