init
This commit is contained in:
@@ -106,6 +106,14 @@ export function getUser(id) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getFullUser(id) {
|
||||||
|
return request({
|
||||||
|
url: '/xq/user/fullUser',
|
||||||
|
method: 'get',
|
||||||
|
params: {"userId":id}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// 新增用户管理
|
// 新增用户管理
|
||||||
export function addUser(data) {
|
export function addUser(data) {
|
||||||
return request({
|
return request({
|
||||||
|
|||||||
214
src/views/xq/user/user-info-dialog.vue
Normal file
214
src/views/xq/user/user-info-dialog.vue
Normal file
@@ -0,0 +1,214 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog title="用户信息" :close-on-click-modal="false" :visible.sync="open" width="1200px" append-to-body>
|
||||||
|
<el-collapse v-model="activeName" >
|
||||||
|
<el-collapse-item title="基本信息" name="base">
|
||||||
|
<el-descriptions :contentStyle="CS" :label-style="LS " class="margin-top" :column="3" size="medium" border>
|
||||||
|
<el-descriptions-item label="id">
|
||||||
|
{{info.user.id}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="编号">
|
||||||
|
{{info.user.usercode}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="手机号">
|
||||||
|
{{info.user.mobile}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="昵称">
|
||||||
|
{{info.user.nickname}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="头像">
|
||||||
|
<image-avatar :src="info.user.avatar" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="性别">
|
||||||
|
<cai-dict-tag :options="genderList" :value="info.user.gender" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="年龄">
|
||||||
|
{{info.user.age}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="生日">
|
||||||
|
{{info.user.birthday}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="资料完成">
|
||||||
|
<cai-dict-tag :options="authList" :value="info.user.finishStatus" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="相册" :span="3" v-if="info.userAlbums">
|
||||||
|
<span v-for='val in info.userAlbums'>
|
||||||
|
<image-preview :src="val.url" height="45px" width="45px" />
|
||||||
|
</span>
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="居住地">
|
||||||
|
{{info.user.city}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="住房情况">
|
||||||
|
<cai-dict-tag :options="userHousingStatusList" :value="info.user.housingStatus" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="购车情况">
|
||||||
|
<cai-dict-tag :options="userCarStatusList" :value="info.user.carStatus" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="状态">
|
||||||
|
<cai-dict-tag :options="userStatusList" :value="info.user.status" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
|
||||||
|
<el-descriptions-item label="最后登录IP">
|
||||||
|
{{info.userInfo.lastLoginIp}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="最后登录时间">
|
||||||
|
{{info.userInfo.lastLoginTime}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="最后登录位置">
|
||||||
|
{{info.userInfo.lastLocation}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="注册IP">
|
||||||
|
{{info.userInfo.regIp}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="注册时间">
|
||||||
|
{{info.userInfo.regTime}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
</el-collapse-item>
|
||||||
|
<el-collapse-item title="钱包" name="account">
|
||||||
|
<el-descriptions :contentStyle="CS" :label-style="LS" class="margin-top" :column="2" size="medium" border>
|
||||||
|
<el-descriptions-item label="余额">
|
||||||
|
{{info.account.coin}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="收益">
|
||||||
|
{{info.account.incomeCoin}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="充值总额">
|
||||||
|
{{info.account.totalBuyMoney}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="充值总币">
|
||||||
|
{{info.account.totalBuyCoin}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
</el-collapse-item>
|
||||||
|
<el-collapse-item title="会员" name="userMember" v-if="info.userMember">
|
||||||
|
<el-descriptions :contentStyle="CS" :label-style="LS" class="margin-top" :column="3" size="medium" border>
|
||||||
|
<el-descriptions-item label="类型">
|
||||||
|
<cai-dict-tag :options="memberTypeList" :value="info.userMember.memberType" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="过期时间">
|
||||||
|
{{info.userMember.expireDate}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="会员状态">
|
||||||
|
<cai-dict-tag :options="memberStatusList" :value="info.userMember.status" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
</el-collapse-item>
|
||||||
|
<el-collapse-item title="详细信息" name="anchor" v-if="info.anchor">
|
||||||
|
<el-descriptions :contentStyle="CS" :label-style="LS" class="margin-top" :column="3" size="medium" border>
|
||||||
|
<el-descriptions-item label="价格">
|
||||||
|
{{info.anchor.price}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="开启视频接听">
|
||||||
|
<cai-dict-tag :options="openVideoStatusList" :value="info.anchor.openVideoStatus" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="视频状态">
|
||||||
|
<cai-dict-tag :options="videoStatusList" :value="info.anchor.videoStatus" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="隐藏接单">
|
||||||
|
<cai-dict-tag :options="orderSwitchList" :value="info.anchor.orderSwitch" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="首页展示">
|
||||||
|
<cai-dict-tag :options="indexDisplayList" :value="info.anchor.indexDisplay" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="用户评分">
|
||||||
|
{{info.anchor.giveScore}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="服务总次数">
|
||||||
|
{{info.anchor.serviceCount}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="服务总时长">
|
||||||
|
{{info.anchor.serviceTime}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="视频分成比例">
|
||||||
|
{{info.anchor.videoRate}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="守护分成比例">
|
||||||
|
{{info.anchor.guardRate}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="礼物分成比列">
|
||||||
|
{{info.anchor.giftRate}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
</el-collapse-item>
|
||||||
|
<el-collapse-item title="在线状态" name="userOnline" v-if="info.userOnline">
|
||||||
|
<el-descriptions :contentStyle="CS" :label-style="LS" class="margin-top" :column="2" size="medium" border>
|
||||||
|
<el-descriptions-item label="在线状态">
|
||||||
|
<cai-dict-tag :options="onlineStatusList" :value="info.userOnline.status" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="最后在线时间">
|
||||||
|
{{info.userOnline.lastLiveTime}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
</el-collapse-item>
|
||||||
|
</el-collapse>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
authList,
|
||||||
|
genderList,
|
||||||
|
userStatusList,
|
||||||
|
isAnchorList,
|
||||||
|
videoStatusList,
|
||||||
|
onlineStatusList,
|
||||||
|
memberTypeList,
|
||||||
|
memberStatusList,
|
||||||
|
openVideoStatusList,
|
||||||
|
orderSwitchList,
|
||||||
|
indexDisplayList,
|
||||||
|
booleanList, userCarStatusList, userHousingStatusList
|
||||||
|
} from '@/constant/statusMap'
|
||||||
|
import { getFullUser } from '@/api/xq/user'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "UserInfo",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
genderList,userStatusList,
|
||||||
|
userHousingStatusList,userCarStatusList,
|
||||||
|
isAnchorList,authList,videoStatusList,onlineStatusList,memberTypeList,
|
||||||
|
booleanList,
|
||||||
|
systemName: process.env.VUE_APP_SYSTEM_HOME,
|
||||||
|
activeName:['base','account','userAlbums'],
|
||||||
|
CS: {
|
||||||
|
'text-align': 'center', //文本居中
|
||||||
|
'min-width': '250px', //最小宽度
|
||||||
|
'word-break': 'break-all' //过长时自动换行
|
||||||
|
},
|
||||||
|
LS: {
|
||||||
|
// 'color': '#000',
|
||||||
|
'text-align': 'center',
|
||||||
|
// 'font-weight': '600',
|
||||||
|
'height': '40px',
|
||||||
|
// 'background-color': 'rgba(255, 97, 2, 0.1)',
|
||||||
|
'min-width': '110px',
|
||||||
|
'word-break': 'keep-all'
|
||||||
|
},
|
||||||
|
open:false,
|
||||||
|
info:{},
|
||||||
|
userId: this.$route.query.id,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init(userId){
|
||||||
|
this.open = true;
|
||||||
|
this.userId = userId;
|
||||||
|
getFullUser(this.userId).then(response => {
|
||||||
|
this.info = response.data;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.el-row {
|
||||||
|
margin-bottom: -15px;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Reference in New Issue
Block a user