工作端小程序
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.

87 lines
1.7 KiB

<!-- 报事记录 -->
<template>
<scroll-view class="content" scroll-y="true">
<view class="conItem">
<view class="conItemTitle">
<image src="/static/img/维修列表里.png" class="titleImg"></image>
<text class="titleName">龙海路乐业社区5号楼1单元805 南卧1</text>
</view>
<view class="conItemCon">
</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;
background-color: rgba(248, 248, 248, 1);
}
.conItem {
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;
}
.conItemTitle {
display: flex;
width: 100%;
margin-bottom: 20rpx;
}
.titleImg {
width: 38rpx;
height: 38rpx;
}
.titleName {
color: rgba(0, 0, 0, 1);
font-size: 28rpx;
text-align: left;
margin-left: 10rpx;
}
.conItemCon {
display: flex;
width: 100%;
border-radius: 10rpx;
background-color: rgba(249, 249, 249, 1);
height: 100rpx;
}
</style>