| | |
| | | <u-icon name="/static/icon/nav-04.png" width="90rpx" height="90rpx"></u-icon>
|
| | | <text class="f-26 mt-20">租客上报</text>
|
| | | </u-grid-item> -->
|
| | | <u-grid-item @click.native="navTo()" v-for="(i,k) in liveList" :key="k">
|
| | | <u-icon :name="i.source" width="90rpx" height="90rpx"></u-icon>
|
| | | <u-grid-item @click.native="navigatorPage(i.path)" v-for="(i,k) in liveList" :key="k">
|
| | | <u-icon :name="i.pictureImg" width="90rpx" height="90rpx"></u-icon>
|
| | | <text class="f-26 mt-20">{{i.name}}</text>
|
| | | </u-grid-item>
|
| | |
|
| | | </u-grid>
|
| | |
|
| | | <view class="section flex j-c-s-b mt-40">
|
| | | <view class="section-item" v-for="i in navList">
|
| | | <view class="section-item" v-for="(i,k) in navList" :key="k">
|
| | | <image class="section-item-bg" :src="i.bgImg" mode="aspectFill"></image>
|
| | | <view class="item-box">
|
| | | <view class="f-28">{{i.title}}</view>
|
| | |
| | | </view>
|
| | | <view class="flex flex-wrap">
|
| | | <view class="cell bgc-main flex a-i-c" v-for="(item, index) in houseDataList.slice(0, 6)"
|
| | | @click.native="pushPage(item)">
|
| | | @click.native="pushPage(item)" :key="index">
|
| | | <u-icon name="/static/icon/floor.png" width="32rpx" height="32rpx"></u-icon>
|
| | | <text class="cell-text f-26 c-ff">{{item.title}}</text>
|
| | | </view>
|
| | |
| | |
|
| | | navigatorPage(path) {
|
| | | if (path) {
|
| | | this.$u.func.globalNavigator(path, "navTo")
|
| | | if (path == '/subPackage/bs/views/zhsb' && this.curHouseCode === '') {
|
| | | uni.showToast({
|
| | | title: "请选择地址",
|
| | | icon: "error"
|
| | | })
|
| | | return
|
| | | }
|
| | | this.$u.func.globalNavigator(`${path}?houseCode=${this.curHouseCode}`, "navTo")
|
| | | }
|
| | | },
|
| | |
|