123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <template>
- <view class="userDetail-v">
- <view class="userDetail-hd u-flex-col">
- <view class="u-m-t-60">
- <u-avatar :src="define.baseURL+userData.headIcon" size="120"></u-avatar>
- </view>
- <view class="u-m-t-32 u-font-32 name">
- <text>{{userData.realName}}/{{userData.account}}</text>
- </view>
- <view class="u-m-t-20 u-font-24 positionName">
- <text>{{userData.organizeName}}</text>
- </view>
- <view class="u-m-t-32 u-flex userDetail-hd-btn">
- <view class="u-m-r-40 btn" @click="call()">
- <text class="ym-custom ym-custom-phone u-font-40" />
- </view>
- <view class="u-m-l-40 btn" @click="toIm()">
- <text class="ym-custom ym-custom-comment u-font-40" />
- </view>
- </view>
- </view>
- <view class="u-p-l-20 u-p-r-20">
- <u-cell-group>
- <u-cell-item title="手机号" :value="userData.mobilePhone || '未填写'" :arrow="false"
- :title-style="titleStyle">
- </u-cell-item>
- <u-cell-item title="座机号" :value="userData.telePhone || '未填写'" :arrow="false" :title-style="titleStyle">
- </u-cell-item>
- <u-cell-item title="邮箱" :value="userData.email || '未填写'" :arrow="false" :title-style="titleStyle">
- </u-cell-item>
- <u-cell-item title="岗位" :value="userData.positionName || '未填写'" :arrow="false"
- :title-style="titleStyle">
- </u-cell-item>
- </u-cell-group>
- </view>
- </view>
- </template>
- <script>
- import {
- getUesrDetail
- } from '@/api/common.js'
- export default {
- data() {
- return {
- userData: {},
- titleStyle: {
- color: '#303133'
- },
- userDetal: {}
- }
- },
- computed: {
- baseURL() {
- return this.define.baseURL
- }
- },
- onLoad(option) {
- let userId = option.userId;
- this.getUserDetail(userId)
- },
- methods: {
- getUserDetail(userId) {
- getUesrDetail(userId).then(res => {
- this.userData = res.data
- uni.setNavigationBarTitle({
- title: '联系人'
- });
- })
- },
- call() {
- if (!this.userData.mobilePhone) return
- uni.makePhoneCall({
- phoneNumber: this.userData.mobilePhone
- })
- },
- toIm() {
- const userData = this.userData
- const name = userData.realName + '/' + userData.account
- uni.$emit('updateMsgNum', userData.id)
- uni.navigateTo({
- url: '/pages/message/im/index?name=' + name + '&formUserId=' + userData.id + '&headIcon=' +
- userData.headIcon
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .userDetail-v {
- :deep(.u-cell) {
- height: 112rpx;
- padding: 0;
- .u-cell__value {
- color: #606266;
- }
- }
- .userDetail-hd {
- height: 482rpx;
- background-color: #f0f2f6;
- color: #FFFFFF;
- align-items: center;
- }
- .name {
- // font-weight: 700;
- color: #303133;
- }
- .positionName {
- color: #909399;
- }
- .userDetail-hd-btn {
- .btn {
- width: 84rpx;
- height: 84rpx;
- border: 2rpx solid #606266;
- border-radius: 50%;
- text-align: center;
- line-height: 80rpx;
- color: #606266;
- }
- }
- }
- </style>
|