WechatOwnerService/pages/repair/repairList.vue
2022-11-26 02:16:09 +08:00

142 lines
3.4 KiB
Vue
Executable File

<template>
<view class="user-container">
<view v-for="(item, idx) in tableData" :key="idx" class="notice" :data-item="item" @tap="gotoDetail">
<view class="title">
<view>{{item.repairName}}</view>
<view>{{item.tel}}</view>
</view>
<view class="main">
<view>
<view class="text">报修类型: {{item.repairTypeName}}</view>
<view class="text">状<text decode="true">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</text>态: {{item.stateName}}</view>
<view class="text">预约时间: {{item.appointmentTime}}</view>
</view>
<view>
<button class="button" size="mini" type="default" @tap.native.stop="gotoDetail" :data-item="item">查看</button>
</view>
</view>
</view>
</view>
</template>
<script>
/** index.js **/
import context from '../../lib/java110/Java110Context.js';
const constant = context.constant; //获取app实例
//获取app实例
const app = getApp().globalData;
export default {
data() {
return {
tableData: [],
page: 1,
totalPage: 0,
loading: false
};
},
components: {},
props: {},
onLoad: function() {
context.onLoad(options);
this.getTable(1);
},
onShow: function() {
let that = this;
},
onPullDownRefresh: function() {
// 上拉刷新
if (!this.loading) {
this.getTable(1, true).then(() => {
// 处理完成后,终止下拉刷新
wx.stopPullDownRefresh();
});
}
},
onReachBottom: function() {
// 下拉触底,先判断是否有请求正在进行中
// 以及检查当前请求页数是不是小于数据总页数,如符合条件,则发送请求
if (!this.loading && this.page < this.totalPage) {
this.getTable(this.page + 1);
}
},
methods: {
getTable: function(page, override) {
let that = this;
this.loading = true;
return this.request({
"roomId": "752019100758260005",
"communityId": "7020181217000001",
"page": page,
"row": 10
}).then(res => {
that.tableData = override ? res.data.ownerRepairs : this.tableData.concat(res.data.ownerRepairs);
that.totalPage = res.data.records;
that.page = page;
that.loading = false;
});
},
gotoDetail: function(e) {
wx.navigateTo({
url: "/pages/repair/detail/detail?item=" + JSON.stringify(e.currentTarget.dataset.item)
});
},
//封装请求
request: function(data) {
return new Promise((resolve, reject) => {
wx.request({
url: constant.url.listOwnerRepairs,
header: context.getHeaders(),
method: "GET",
data: data,
success: function(res) {
if (res.statusCode == 200) {
resolve(res);
}
}
});
});
}
}
};
</script>
<style>
.user-container {
padding: 25rpx 10rpx;
background-color: #F0F0F0;
/*border: 1px solid black;*/
}
.notice {
margin: 10rpx 7rpx;
padding: 25rpx;
background-color: #ffffff;
border-radius: 7rpx;
/* display: flex;
justify-content: space-between;
align-items: flex-end; */
}
.title {
border-bottom: 1rpx solid #dedede;
font-weight: 700;
font-size: 34rpx;
color: #5f5e5e;
display: flex;
justify-content: space-between;
}
.text{
padding: 4rpx 0;
font-size: 30rpx;
}
.main{
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.button{
/* width: 160rpx; */
/* font-size: 30rpx; */
}
</style>