工作端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

76 lines
1.6 KiB

<!-- 报事上报 -->
<template>
<scroll-view class="content" scroll-y="true">
<view class="conItem">
<view class="conItem-title">房源</view>
<view class="conItem-cont">
<view class="conItem-cont-item" v-for="(item, index) in fyList" :key="index">
<image :src="item.image" class="itemImg"></image>
<text class="itemText">房子</text>
</view>
</view>
</view>
</scroll-view>
</template>
<script>
export default {
data () {
return {
fyList: [
{ image: '/static/img/看房.png', text: '看房确认' },
{ image: '/static/img/退房检查.png', text: '退房检查' },
{ image: '/static/img/释放.png', text: '释放房源检查' },
{ image: '/static/img/预约.png', text: '预约看房' },
{ image: '/static/img/强制清退.png', text: '强制清退' },
],
}
},
onLoad () {
},
methods: {
handleBsClick (item) {
uni.navigateTo({
url: '/pages/tabBar/bsPage/bsRecord'
})
}
}
}
</script>
<style lang="scss" scoped>
.content {
width: 100%;
height: 100vh;
}
.conItem {
left: 11rpx;
top: 98rpx;
width: calc(100% - 40rpx);
border-radius: 10rpx;
margin-left: 20rpx;
background-color: rgba(255, 255, 255, 1);
box-shadow: 2rpx 2rpx 4rpx rgba(0, 0, 0, 0.2);
margin-bottom: 20rpx;
padding: 20rpx;
box-sizing: border-box;
}
.conItem-title {
color: rgb(64, 64, 64);
font-size: 30rpx;
text-align: left;
}
.conItem-cont {
display: flex;
flex-direction: row;
justify-content: flex-start;
flex-wrap: wrap;
margin-top: 20rpx;
}
</style>