From 9461caf2a459a7ed1eb16f8f439c02cfbcf1930b Mon Sep 17 00:00:00 2001
From: zhouwenxuan <1175765986@qq.com>
Date: Wed, 02 Aug 2023 15:06:08 +0800
Subject: [PATCH] 新增功能
---
pages/tabBar/response/response.vue | 99 +++++++++++++++++++++++++++++++++++++++----------
1 files changed, 79 insertions(+), 20 deletions(-)
diff --git a/pages/tabBar/response/response.vue b/pages/tabBar/response/response.vue
index d7bc11e..76b1f6a 100644
--- a/pages/tabBar/response/response.vue
+++ b/pages/tabBar/response/response.vue
@@ -6,11 +6,16 @@
<view class="statusBar" :style="{ paddingTop: statusBarHeight + 'px' }"></view>
<!-- 真正的导航栏内容 -->
<view class="navBar">
- <view class="barText"></view>
+ <view class="barText">叫应记录</view>
</view>
</view>
+ <div v-if="loading" style='display: flex;justify-content: center;position: absolute;width:100%;top: 40%;left: 0'>
+ <u-loading-icon></u-loading-icon>
+ </div>
<!-- 页面内容 -->
- <view class="responseList" v-if="responseList.length > 0">
+<!-- <view class="responseList" v-if="responseList.length > 0">-->
+ <scroll-view :scroll-top="scrollTop" scroll-y="true" class="responseList" @scrolltoupper="upper" v-if="responseList.length > 0"
+ @scrolltolower="lower" @scroll="scroll" lower-threshold="50">
<view v-for="(item, index) in responseList" :key="index" class="itemContent">
<view class="timeLeft">
<text>{{item.time}}</text>
@@ -21,7 +26,9 @@
<text style="color: rgb(76, 197, 248);" @click="toDetail(item)">[查看信息详情]</text>
</view>
</view>
- </view>
+ </scroll-view>
+<!-- </view>-->
+
<view v-else>
<u-empty
mode="data"
@@ -44,8 +51,11 @@
return {
data: {
pageIndex: 1,
- pageSize: 1000
+ pageSize: 10
},
+ total: 0,
+ scrollTop: 0,
+ loading: false,
// 状态栏高度
statusBarHeight: 0,
responseList: [],
@@ -53,6 +63,7 @@
}
},
onShow () {
+ this.data.pageIndex = 1
this.getResponseList();
},
onLoad() {
@@ -62,10 +73,16 @@
},
methods: {
getResponseList() {
+ this.loading = true
getResponse(this.data).then(res => {
- console.log("res",res);
if (res.code === 100) {
- this.responseList = res.data ? res.data : [];
+ let list = res.data ? res.data : [];
+ if (res.pageIndex != 1) {
+ this.responseList = this.responseList.concat(list)
+ } else {
+ this.responseList = list;
+ }
+ this.total = res.total
if (this.responseList.length > 0) {
this.responseList.forEach((item, index) => {
this.responseList[index].time = item.responseTime.substring(0,10);
@@ -74,13 +91,16 @@
})
}
}else {
+ uni.$u.toast(res.msg)
this.responseList = [];
}
+ this.loading = false
}).catch(err=>{})
},
toDetail(item) {
console.log("de",item)
getDetail({id: item.id}).then(res => {
+ console.log("response",res)
if(res.code == 100) {
uni.navigateTo({
url: `/pages/tabBar/notice/detail?data=` + encodeURIComponent(JSON.stringify(res.data))
@@ -96,18 +116,44 @@
this.getResponseList();
}, 1000);
},
+
+ upper: function(e) {
+ // console.log(e)
+ },
+ lower: function(e) {
+ if (this.data.pageIndex * this.data.pageSize >= this.total){
+ uni.$u.toast('已加载全部数据')
+ return
+ }
+ //并且让页码+1,调用获取数据的方法获取第二页数据
+ this.data.pageIndex++
+ //此处调用自己获取数据列表的方法
+ this.getResponseList()
+ },
+ scroll: function(e) {
+ // console.log(e)
+ },
}
}
</script>
<style>
.navBarBox .navBar {
- background-color:lightgrey;
- height: 15px;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
+ background-color:#fff;
+ height: 50px;
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
+ box-shadow: 0 3px 12px rgba(0,0,0,0.05);
+}
+.barText{
+ /* margin-left: 20px; */
+ text-align: center;
+ width: 85%;
+ font-size: 16px;
+ /* text-align: center; */
+ font-weight: 600;
}
.fix{
position: sticky;
@@ -121,22 +167,35 @@
background-color:lightgrey;
}
.responseList{
- display: flex;
- flex-direction: column;
- padding: 20px 15px;
+ display: flex;
+ flex-direction: column;
+ width: calc(100% - 24px);
+ height: calc(100vh - 124px);
+ margin: 12px 12px 0;
+ background: #fff;
+ border-radius: 5px;
+ box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}
.itemContent{
- display: flex;
- border-bottom: 1px lightgrey solid;
- margin-top: 15px;
+ display: flex;
+ align-items: center;
+ font-size: 16px;
+ color: #333;
+ margin-top: 15px;
+ padding: 0 12px;
+ border-bottom: 1px solid #ebebeb;
+
+ &:last-of-type{
+ border-bottom: none;
+ }
}
.timeLeft{
- border-radius: 13px;
+ border-radius: 5px;
padding: 15px 15px;
background-color: rgb(174, 228, 255) ;
display: flex;
flex-direction: column;
- align-items: center;
+ align-items: flex-start;
justify-content: center;
margin-bottom: 15px;
}
--
Gitblit v1.9.2