deming/components/index/zhibo-item/index.vue

88 lines
2.0 KiB
Vue
Raw Normal View History

2020-06-02 09:34:37 +08:00
<template>
2020-07-27 17:32:17 +08:00
<view class="zhibo" @click="zhibo">
2020-07-27 14:35:32 +08:00
<image class="head" :src="image"></image>
2020-06-02 09:34:37 +08:00
<view class="user">
<view class="name">
<image></image>
2020-07-27 14:35:32 +08:00
<text class="u-line-1" style="width:130rpx">{{name}}</text>
2020-06-02 09:34:37 +08:00
</view>
<view class="pingbi">
<image></image>
2020-07-28 20:47:52 +08:00
<text>1屏蔽用户</text>
2020-06-02 09:34:37 +08:00
</view>
</view>
</view>
</template>
<style lang="scss" scoped>
.zhibo{
width: 335rpx;
margin-top: 20rpx;
box-shadow:0 3rpx 7rpx 0 rgba(153, 153, 153, 0.35);
padding-bottom: 20rpx;
border-radius: 20rpx;
overflow: hidden;
.head{
width: 100%;
height: 425rpx;
}
.user{
display: flex;
justify-content: space-between;
align-items: center;
margin:0 auto;
margin-top: 20rpx;
width: 307rpx;
.name{
display: flex;
align-items: center;
>image{
width: 38rpx;
height: 38rpx;
border-radius: 50%;
}
>text{
font-size: 20rpx;
color:#333;
margin-left: 9rpx;
}
}
.pingbi{
display: flex;
align-items: center;
>text{
font-size: 20rpx;
color: #333;
margin-left: 9rpx;
}
>image{
width: 24rpx;
height: 24rpx;
}
}
}
}
</style>
<script>
export default {
name:"zhibo-item",
data(){
return {
}
2020-07-27 14:35:32 +08:00
},
2020-07-27 17:32:17 +08:00
methods:{
zhibo(){
this.$u.route({
2020-08-03 09:05:30 +08:00
url:"/pages/zhibo/index",
2020-07-27 17:32:17 +08:00
params:{
2020-07-31 09:40:06 +08:00
url:this.url,
2020-08-03 09:05:30 +08:00
id:this.zid,
rid:this.rid
2020-07-27 17:32:17 +08:00
}
})
}
},
2020-08-03 09:05:30 +08:00
props:['name','image','url','zid','rid']
2020-06-02 09:34:37 +08:00
}
</script>