renwu.vue
2.4 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<template>
<view class='box'>
<view class="renwulist">
<!-- v-if="showhide[0].status==1" -->
<view class="renwulistitem" @click="xiangmufen" >
<view class="renwuleft">
<view class="renwulimg">
<image src="../../static/img/fenpei.png" mode=""></image>
</view>
<view class="renwuname">项目组分配</view>
</view>
<view class="renwuright">
<image src="../../static/img/yourow.png" mode=""></image>
</view>
</view>
<view class="renwulistitem" @click="zhuanjia" >
<!-- v-if="showhide[1].status==1" -->
<view class="renwuleft">
<view class="renwulimg">
<image src="../../static/img/zhuanjia.png" mode=""></image>
</view>
<view class="renwuname">专家分配</view>
</view>
<view class="renwuright">
<image src="../../static/img/yourow.png" mode=""></image>
</view>
</view>
<!-- v-if="showhide[2].status==1" -->
<view class="renwulistitem" @click="danweifen" >
<view class="renwuleft">
<view class="renwulimg">
<image src="../../static/img/danwei.png" mode=""></image>
</view>
<view class="renwuname">咨询单位分配</view>
</view>
<view class="renwuright">
<image src="../../static/img/yourow.png" mode=""></image>
</view>
</view>
</view>
</view>
</template>
<script>
import app from "../../App.vue";
export default {
data() {
return {
selshow: false,
showhide:''
}
},
onLoad() {
this.showhideproject()
},
methods: {
xiangmufen(){
uni.navigateTo({
url:'../zixunfen/zixunfen'
})
},
// 咨询单位
danweifen(){
uni.navigateTo({
url:'../danweizixun/danweizixun'
})
},
// 专家分配
zhuanjia(){
uni.navigateTo({
url:'../zhuanjiafenpei/zhuanjiafenpei'
})
},
},
}
</script>
<style>
.renwulimg{
width:68rpx;
height:68rpx;
font-size: 0;
}
.renwulimg image{
width:100%;
height:100%;
}
.renwuright{
width:13rpx;
height:23rpx;
font-size: 0;
}
.renwuright image{
width:100%;
height:100%;
}
.renwulist{
padding: 0 32rpx;
box-sizing: border-box;
}
.renwulistitem{
display:flex;
align-items: center;
justify-content: space-between;
padding: 32rpx 0;
box-sizing: border-box;
border-bottom:1rpx solid #EEEEEE;
}
.renwuleft{
display:flex;
align-items: center;
}
.renwuname{
color:#3D444D;
font-size: 28rpx;
margin-left:20rpx;
letter-spacing: 2rpx;
}
</style>