9 changed files with 213 additions and 9 deletions
@ -0,0 +1,86 @@ |
|||||
|
<!-- 报事记录 --> |
||||
|
<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> |
@ -0,0 +1,76 @@ |
|||||
|
<!-- 报事上报 --> |
||||
|
<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> |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue