65 lines
1.1 KiB
Vue
65 lines
1.1 KiB
Vue
<template>
|
|
<view :class="{'gray':store.isgray==1}">
|
|
<view class="list">
|
|
<view class="item f-row aic jcb" v-for="item,i in 4" :key="i">
|
|
<view class="user f-row aic">
|
|
<image src="" mode=""></image>
|
|
<view class="name_job">
|
|
<view class="name">
|
|
我是晴天
|
|
</view>
|
|
<view class="job">
|
|
销售部-销售总监
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="btn">
|
|
电话联系
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
useStore
|
|
} from '@/store'
|
|
const store = useStore()
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.list{
|
|
padding: 0 30rpx;
|
|
.item{
|
|
padding: 30rpx 0;
|
|
border-bottom: 1px solid #EFEFEF;
|
|
image{
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
border-radius: 50rpx;
|
|
background-color: #EFEFEF;
|
|
margin-right: 30rpx;
|
|
}
|
|
.name{
|
|
font-size: 32rpx;
|
|
color: #333333;
|
|
}
|
|
.job{
|
|
font-size: 24rpx;
|
|
color: #999999;
|
|
margin-top: 8rpx;
|
|
}
|
|
.btn{
|
|
width: 132rpx;
|
|
height: 60rpx;
|
|
background: #01508B;
|
|
border-radius: 8rpx;
|
|
text-align: center;
|
|
line-height: 60rpx;
|
|
font-size: 24rpx;
|
|
color: #FFFFFF;
|
|
}
|
|
}
|
|
}
|
|
</style> |