mirror of
https://gitee.com/java110/PropertyApp.git
synced 2026-06-12 10:00:57 +08:00
96 lines
2.3 KiB
Vue
96 lines
2.3 KiB
Vue
<template>
|
|
<view>
|
|
<view class="margin-top" v-if="renovationRoomList.length > 0">
|
|
<view class="cu-list menu-avatar " v-for="(item,index) in renovationRoomList" :key="index" @tap="_toApplyRoomDetail(item)">
|
|
<view class="cu-item arrow">
|
|
<view class="content content-left">
|
|
<view class="text-grey">
|
|
<text class="cuIcon-notification text-cut text-green margin-right-xs"></text>
|
|
{{item.stateName}}-{{item.roomName}}
|
|
</view>
|
|
<view class="text-gray text-sm flex">
|
|
<view class="text-cut">
|
|
申请人:{{item.personName}}-{{item.personTel}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="action">
|
|
<view class="text-grey text-xs">
|
|
<text class="lg text-gray cuIcon-right margin-left-xs"></text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="load-more" @click="loadApply()">加载更多</view>
|
|
</view>
|
|
<view v-else>
|
|
<no-data-page></no-data-page>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import noDataPage from '@/components/no-data-page/no-data-page.vue'
|
|
import {queryRoomRenovation} from '../../api/renovation/renovation.js'
|
|
import {getCurrentCommunity} from '../../api/community/community.js'
|
|
export default {
|
|
data() {
|
|
return {
|
|
communityId: '',
|
|
renovationRoomList: [],
|
|
page: 1,
|
|
}
|
|
},
|
|
components: {
|
|
noDataPage
|
|
},
|
|
onLoad: function(options) {
|
|
this.java110Context.onLoad();
|
|
},
|
|
onShow: function(){
|
|
this.page = 1;
|
|
this.renovationRoomList = [];
|
|
this.communityId = getCurrentCommunity().communityId;
|
|
this.loadApply();
|
|
},
|
|
methods: {
|
|
/**
|
|
* 加载数据
|
|
*/
|
|
loadApply: function(){
|
|
let _that = this;
|
|
let _objData = {
|
|
page: this.page,
|
|
row: 10,
|
|
communityId: this.communityId
|
|
};
|
|
queryRoomRenovation(this,_objData)
|
|
.then(function(res){
|
|
console.log(res);
|
|
if(res.length <= 0){
|
|
uni.showToast({
|
|
title: '已全部加载'
|
|
})
|
|
return;
|
|
}
|
|
_that.renovationRoomList = _that.renovationRoomList.concat(res)
|
|
_that.page ++;
|
|
})
|
|
},
|
|
|
|
/**
|
|
* 跳转详情页
|
|
*/
|
|
_toApplyRoomDetail: function(_item){
|
|
uni.navigateTo({
|
|
url: '/pages/roomRenovationDetail/roomRenovationDetail?apply=' + JSON.stringify(_item)
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|