mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-06-12 10:00:57 +08:00
123 lines
2.9 KiB
Vue
123 lines
2.9 KiB
Vue
<template>
|
|
<view>
|
|
<view class="margin-top" v-if="renovationRecordList.length > 0">
|
|
<view class="cu-list menu-avatar " v-for="(item,index) in renovationRecordList" :key="index" @tap="_showDetail(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.remark}}
|
|
</view>
|
|
<view class="text-gray text-sm flex">
|
|
<view class="text-cut">
|
|
操作人员:{{item.staffName}}
|
|
</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 {queryRoomRenovationRecord} from '../../api/roomRenovation/roomRenovationApi.js'
|
|
export default {
|
|
data() {
|
|
return {
|
|
renovationInfo: [],
|
|
communityId: '',
|
|
renovationRecordList: [],
|
|
page: 1,
|
|
}
|
|
},
|
|
components: {
|
|
noDataPage
|
|
},
|
|
onLoad: function(options) {
|
|
let _that = this;
|
|
_that.renovationInfo = JSON.parse(options.apply);
|
|
console.log(_that.renovationInfo);
|
|
this.loadApply();
|
|
},
|
|
onShow: function(){
|
|
// this.page = 1;
|
|
// this.renovationRecordList = [];
|
|
// this.communityId = this.java110Context.getCurrentCommunity().communityId;
|
|
// this.loadApply();
|
|
},
|
|
methods: {
|
|
/**
|
|
* 加载数据
|
|
*/
|
|
loadApply: function(){
|
|
let _that = this;
|
|
let _objData = {
|
|
page: this.page,
|
|
row: 10,
|
|
communityId: this.renovationInfo.communityId,
|
|
rId: this.renovationInfo.rId,
|
|
roomName: this.renovationInfo.roomName,
|
|
roomId: this.renovationInfo.roomId
|
|
};
|
|
queryRoomRenovationRecord(_objData)
|
|
.then(function(res){
|
|
console.log(res);
|
|
if(res.length <= 0){
|
|
uni.showToast({
|
|
title: '已全部加载'
|
|
})
|
|
return;
|
|
}
|
|
_that.renovationRecordList = _that.renovationRecordList.concat(res)
|
|
_that.page ++;
|
|
})
|
|
},
|
|
|
|
/**
|
|
* 跳转详情页
|
|
*/
|
|
_showDetail: function(_item){
|
|
_item.communityId = this.renovationInfo.communityId;
|
|
uni.navigateTo({
|
|
url: '/pages/myRoomRenovationRecordDetail/myRoomRenovationRecordDetail?apply=' + JSON.stringify(_item)
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.record-add{
|
|
position: fixed;
|
|
right: 10rpx;
|
|
bottom: 50rpx;
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
}
|
|
.record-add img{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.load-more{
|
|
width: 80%;
|
|
margin: 30rpx auto;
|
|
height: 90rpx;
|
|
line-height: 90rpx;
|
|
text-align: center;
|
|
color: #007AFF;
|
|
font-size: 32rpx;
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|