information.vue
1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<template>
<view class="container">
<tui-list-cell :hover="false" :arrow="false" :size="30">
<view class="fs-flex__between">
<view>姓 名</view><view>{{userInfo.nickName}}</view>
</view>
</tui-list-cell>
<tui-list-cell v-if="userInfo.phonenumber" :hover="false" :arrow="false" :size="30">
<view class="fs-flex__between">
<view>电 话</view><view>{{userInfo.phonenumber}}</view>
</view>
</tui-list-cell>
<tui-list-cell :hover="false" :arrow="false" :size="30">
<view class="fs-flex__between">
<view>性 别</view><view>{{userInfo.sex==1 ? '女' : '男'}}</view>
</view>
</tui-list-cell>
<tui-list-cell :hover="false" :arrow="false" :size="30">
<view class="fs-flex__between">
<view>部 门</view><view>{{userInfo.deptName}}</view>
</view>
</tui-list-cell>
<tui-list-cell :hover="false" :arrow="false" :size="30">
<view class="fs-flex__between">
<view>岗 位</view><view>{{userInfo.postName}}</view>
</view>
</tui-list-cell>
<tui-list-cell :hover="false" :arrow="false" :size="30" unlined>
<view class="fs-flex__between">
<view>创建时间</view><view>{{userInfo.createTime}}</view>
</view>
</tui-list-cell>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="scss" scoped>
</style>