|
@@ -1,27 +1,37 @@
|
|
|
<template>
|
|
|
<oa-scroll
|
|
|
customClass="appMessage-container scroll-height"
|
|
|
- :refresherLoad="false"
|
|
|
- :refresherEnabled="false"
|
|
|
- :refresherEnabledTitle="false"
|
|
|
+ :pageSize="state.size"
|
|
|
+ :total="state.total"
|
|
|
+ :refresherLoad="true"
|
|
|
+ :refresherEnabled="true"
|
|
|
:refresherDefaultStyle="'none'"
|
|
|
:refresherThreshold="44"
|
|
|
+ :lowerThreshold="44"
|
|
|
:refresherBackground="'#f5f6f7'"
|
|
|
+ @load="load"
|
|
|
+ @refresh="refresh"
|
|
|
:data-theme="'theme-' + proxy.$settingStore.themeColor.name"
|
|
|
>
|
|
|
<template #default>
|
|
|
- <view class="content-area">
|
|
|
- <u-empty v-if="noticeList.length <= 0 && state.loading" text="暂无数据" mode="data" icon="http://cdn.uviewui.com/uview/empty/data.png"> </u-empty>
|
|
|
- <view :id="index == noticeList.length - 1 ? 'bottomInfo' : ''" v-for="(all, index) in noticeList" :key="index" v-show="noticeList.length > 0" @click="goContentDetails(all)">
|
|
|
- <view class="content-area-center radius bg-white list-cell list-cell-arrow">
|
|
|
- <view class="">
|
|
|
- <!-- <image class="content-area-center-image-bg" :src="all.img" /> -->
|
|
|
- <view class="content-area-center-title font16">{{ all.infoTitle }}</view>
|
|
|
- <view class="content-area-center-time font14">{{ all.createTime.substring(5, 10) }} {{ all.createTime.substring(11, 16) }}</view>
|
|
|
- </view>
|
|
|
- <view class="content-area-center-cont font14">{{ all.infoContent }}</view>
|
|
|
- <view class="content-area-center-status font12" :style="{ color: all.readFlag == 0 ? 'rgb(20, 158, 255)' : '#ccc' }">{{ all.readFlag == 0 ? "未读" : "已读" }}</view>
|
|
|
+ <u-loading-page :loading="state.loading" fontSize="16" style="z-index: 99"></u-loading-page>
|
|
|
+
|
|
|
+ <view class="content-area" v-for="(group, date) in proxy.$common.groupedItems(state.noticeList, 'createTime')" :key="date">
|
|
|
+ <view class="content-area-time font14">{{ proxy.$common.jktTimes(date, "否") }}</view>
|
|
|
+ <view
|
|
|
+ class="content-area-center flex bg-white list-cell list-cell-arrow"
|
|
|
+ :id="ind == noticeList.length - 1 ? 'bottomInfo' : ''"
|
|
|
+ v-for="(el, ind) in group"
|
|
|
+ :key="ind"
|
|
|
+ v-show="noticeList.length > 0"
|
|
|
+ @click="goContentDetails(el)"
|
|
|
+ >
|
|
|
+ <view style="width: 100%; max-width: 100%">
|
|
|
+ <view class="content-area-center-title font16">{{ el.infoTitle }}</view>
|
|
|
+ <view class="content-area-center-cont font14">{{ el.infoContent }}</view>
|
|
|
</view>
|
|
|
+ <view class="content-area-center-badge"><u-badge :isDot="el.readFlag == 0 ? true : false" type="error"></u-badge></view>
|
|
|
+ <view class="content-area-center-time font14">{{ proxy.$common.jktTimes(el.createTime.replace("T", " ")) }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</template>
|
|
@@ -41,17 +51,16 @@ import { getMceList, updateMceReceiveStatus } from "@/api/mine/info.js";
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
/*----------------------------------变量声明-----------------------------------*/
|
|
|
const state = reactive({
|
|
|
- loading: false,
|
|
|
- infoType: undefined, //消息类型
|
|
|
-
|
|
|
scrollIntoView: "",
|
|
|
- tabsCurrent: 0,
|
|
|
-
|
|
|
- allInfoList: [],
|
|
|
+ loading: false,
|
|
|
noticeList: [],
|
|
|
+ size: 10,
|
|
|
+ current: 1,
|
|
|
+ total: 0,
|
|
|
+ options: {},
|
|
|
});
|
|
|
|
|
|
-const { scrollIntoView, tabsCurrent, noticeList } = toRefs(state);
|
|
|
+const { scrollIntoView, noticeList } = toRefs(state);
|
|
|
|
|
|
/**
|
|
|
* @跳转相应类型系统
|
|
@@ -76,40 +85,58 @@ function goContentDetails(e) {
|
|
|
* @api接口调用
|
|
|
*/
|
|
|
function infoListApi(options) {
|
|
|
- proxy.$modal.loading("加载中");
|
|
|
-
|
|
|
uni.setNavigationBarTitle({
|
|
|
title: options?.typeName ? options?.typeName : "消息列表",
|
|
|
});
|
|
|
|
|
|
+ state.loading = true;
|
|
|
getMceList({
|
|
|
+ size: state.size,
|
|
|
+ current: state.current,
|
|
|
infoType: options?.type,
|
|
|
- }).then((requset) => {
|
|
|
- let data = requset.data.records;
|
|
|
- if (requset.status === "SUCCESS") {
|
|
|
- state.noticeList = data;
|
|
|
- state.loading = true;
|
|
|
- }
|
|
|
- setTimeout(() => {
|
|
|
- scrollIntoView.value = "bottomInfo";
|
|
|
- }, 0);
|
|
|
-
|
|
|
- setTimeout(() => {
|
|
|
- proxy.$modal.closeLoading();
|
|
|
- }, 100);
|
|
|
-
|
|
|
- if ("id" in options) {
|
|
|
- state.noticeList.forEach((e) => {
|
|
|
- if (e.id == options.id) {
|
|
|
- goContentDetails(e);
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- });
|
|
|
+ })
|
|
|
+ .then((requset) => {
|
|
|
+ if (requset.status === "SUCCESS") {
|
|
|
+ state.noticeList = requset.data.records;
|
|
|
+ state.total = requset.data.total;
|
|
|
+ state.loading = false;
|
|
|
+ }
|
|
|
+ setTimeout(() => {
|
|
|
+ scrollIntoView.value = "bottomInfo";
|
|
|
+ }, 0);
|
|
|
+
|
|
|
+ if ("id" in options) {
|
|
|
+ state.noticeList.forEach((e) => {
|
|
|
+ if (e.id == options.id) {
|
|
|
+ goContentDetails(e);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ state.loading = false;
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * @scrollView加载数据
|
|
|
+ */
|
|
|
+function load() {
|
|
|
+ state.size += 10;
|
|
|
+ infoListApi(state.options);
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * @scrollView刷新数据
|
|
|
+ */
|
|
|
+function refresh() {
|
|
|
+ state.size = 10;
|
|
|
+ infoListApi(state.options);
|
|
|
}
|
|
|
|
|
|
onLoad((options) => {
|
|
|
- infoListApi(options);
|
|
|
+ state.options = options;
|
|
|
+ infoListApi(state.options);
|
|
|
});
|
|
|
|
|
|
onReady(() => {});
|
|
@@ -132,61 +159,52 @@ onNavigationBarButtonTap((e) => {
|
|
|
opacity: 1 !important;
|
|
|
}
|
|
|
|
|
|
-.appMessage-container {
|
|
|
- padding-bottom: 1px;
|
|
|
+.content-area {
|
|
|
+ padding: 0 10px;
|
|
|
+
|
|
|
+ &-time {
|
|
|
+ padding: 10px;
|
|
|
+ text-align: left;
|
|
|
+ color: #000000;
|
|
|
+ font-weight: 600;
|
|
|
+ }
|
|
|
|
|
|
- .content-area {
|
|
|
- > div {
|
|
|
- vertical-align: middle;
|
|
|
+ &-center {
|
|
|
+ margin: 0;
|
|
|
+ padding: 15px;
|
|
|
+ overflow: hidden;
|
|
|
+ border-bottom: 1px solid #eaeef1;
|
|
|
+
|
|
|
+ &:nth-child(2) {
|
|
|
+ border-radius: 10px 10px 0 0;
|
|
|
}
|
|
|
- &-center {
|
|
|
- margin: 14px 10px -2px;
|
|
|
- width: calc(100% - 20px);
|
|
|
- padding: 10px;
|
|
|
- overflow: hidden;
|
|
|
- position: relative;
|
|
|
- &-image-bg {
|
|
|
- width: 40px;
|
|
|
- height: 40px;
|
|
|
- display: inline-block;
|
|
|
- vertical-align: middle;
|
|
|
- }
|
|
|
- &-title {
|
|
|
- color: #000;
|
|
|
- display: inline-block;
|
|
|
- vertical-align: middle;
|
|
|
- white-space: nowrap; /* 确保文本在一行内显示 */
|
|
|
- overflow: hidden; /* 隐藏超出容器的内容 */
|
|
|
- text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
|
- width: 70%; /* 定义容器宽度 */
|
|
|
- }
|
|
|
- &-time {
|
|
|
- color: #909399;
|
|
|
- float: right;
|
|
|
- margin-right: 14px;
|
|
|
- }
|
|
|
- &-cont {
|
|
|
- color: #ccc;
|
|
|
- margin-top: 16px;
|
|
|
- white-space: nowrap; /* 确保文本在一行内显示 */
|
|
|
- overflow: hidden; /* 隐藏超出容器的内容 */
|
|
|
- text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
|
- width: 100%; /* 定义容器宽度 */
|
|
|
- }
|
|
|
- &-status {
|
|
|
- margin-top: 16px;
|
|
|
- text-align: right;
|
|
|
- width: 100%;
|
|
|
- }
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ border-radius: 0 0 10px 10px;
|
|
|
+ border-bottom: 0px solid #eaeef1;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-avatar {
|
|
|
+ margin: auto 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-title {
|
|
|
+ margin: 0 0 10px 0;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #000000;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-cont {
|
|
|
+ color: #666666;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-badge {
|
|
|
+ margin: auto 10px auto 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-time {
|
|
|
+ margin: auto 15px auto 0;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-.list-cell::after {
|
|
|
- position: absolute;
|
|
|
-}
|
|
|
-.list-cell-arrow::before {
|
|
|
- position: absolute;
|
|
|
- top: 18px;
|
|
|
- right: 10px;
|
|
|
-}
|
|
|
</style>
|