renwu.vue 2.4 KB
<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>