|
@@ -7,20 +7,29 @@
|
|
|
</view>
|
|
|
</template>
|
|
|
</u-navbar>
|
|
|
- <switchSlot :form="form" :form-data="formData" :activeColor="proxy.$settingStore.themeColor.color" disabledColor="#999999" @onClick="handlePopup" @resetClick="resetSwitch"></switchSlot>
|
|
|
+
|
|
|
+ <switchSlot
|
|
|
+ :form="form"
|
|
|
+ :form-data="formData"
|
|
|
+ :activeColor="proxy.$settingStore.themeColor.color"
|
|
|
+ disabledColor="#999999"
|
|
|
+ @changeSheet="changeSheet"
|
|
|
+ @reset="resetSwitch()"
|
|
|
+ @handleInit="init()"
|
|
|
+ ></switchSlot>
|
|
|
</u-sticky>
|
|
|
|
|
|
<oa-scroll
|
|
|
customClass="record-container scroll-height"
|
|
|
- :pageSize="pageSize"
|
|
|
- :total="total"
|
|
|
+ :pageSize="form.pageSize"
|
|
|
+ :total="form.total"
|
|
|
:isSticky="true"
|
|
|
:customStyle="{
|
|
|
//#ifdef APP-PLUS || MP-WEIXIN
|
|
|
- height: `calc(100vh - (88px + ${proxy.$settingStore.StatusBarHeight}))`,
|
|
|
+ height: `calc(100vh - (94px + ${proxy.$settingStore.StatusBarHeight}))`,
|
|
|
//#endif
|
|
|
//#ifdef H5
|
|
|
- height: `calc(100vh - (88px))`,
|
|
|
+ height: `calc(100vh - (94px))`,
|
|
|
//#endif
|
|
|
}"
|
|
|
:refresherLoad="true"
|
|
@@ -34,39 +43,24 @@
|
|
|
:data-theme="'theme-' + proxy.$settingStore.themeColor.name"
|
|
|
>
|
|
|
<template #default>
|
|
|
- <u-loading-page :loading="state.loading" fontSize="16" style="z-index: 99"></u-loading-page>
|
|
|
-
|
|
|
- <view class="content-area" v-for="(el, index) in reportListNewData" :key="index">
|
|
|
- <view class="content-area-time font14" v-if="!el.id">{{ proxy.$time.jktTimes(el.submitDate, "否") }}</view>
|
|
|
- <view class="content-area-center bg-white" v-else style="margin: 0 10px 10px; border-radius: 10px">
|
|
|
- <view class="content-area-top menu-item" style="float: right; padding: 10px 0px">
|
|
|
- <view class="content-area-top-time"> </view>
|
|
|
- <u-icon class="content-area-top-icon" name="more-dot-fill" size="20" color="#000" @click="moreClick(el)"></u-icon>
|
|
|
- </view>
|
|
|
- <view class="flex mb10" @click="goContentDetails(el)">
|
|
|
- <img :src="el.avatar" class="content-area-center-avatarImg mr10" v-if="el.avatar" />
|
|
|
- <u-avatar
|
|
|
- v-if="!el.avatar"
|
|
|
- class="content-area-center-avatar mr10"
|
|
|
- :text="el.createBy.length > 2 ? el.createBy.slice(1, 3) : el.createBy"
|
|
|
- shape="square"
|
|
|
- size="35"
|
|
|
- fontSize="10"
|
|
|
- color="#ffffff"
|
|
|
- :bgColor="proxy.$settingStore.themeColor.color"
|
|
|
- ></u-avatar>
|
|
|
- <view>
|
|
|
- <view class="content-area-center-title font14 mb5">{{ el.createBy }}的日报</view>
|
|
|
- <view class="content-area-center-time font12">{{ proxy.$time.jktTimes(el.submitDate.replace("T", " ")) }}</view>
|
|
|
- </view>
|
|
|
+ <u-loading-page :loading="loading" fontSize="16" style="z-index: 99"></u-loading-page>
|
|
|
+
|
|
|
+ <view class="content-area" v-for="(group, date) in proxy.$common.groupedItems(dataList, 'createTime')" :key="date">
|
|
|
+ <view class="content-area-time font14">{{ proxy.$time.jktTimes(date, "否") }}</view>
|
|
|
+ <view class="content-area-center bg-white radius mb10 mlr10" v-for="(el, ind) in group" :key="ind">
|
|
|
+ <view class="flex mb10">
|
|
|
+ <view class="content-area-center-title font14 mr-auto">方惠圣预约的会议</view>
|
|
|
+ <!-- <u-icon class="" name="more-dot-fill" size="20" color="#000" @click="moreClick(el)"></u-icon> -->
|
|
|
</view>
|
|
|
- <view class="mb5" @click="goContentDetails(el)">
|
|
|
- <u-text :text="el.contentText.length >= 100 ? el.contentText.slice(0, 100) + '···' : el.contentText" color="#666666" size="14"></u-text>
|
|
|
+ <view class="mb5">
|
|
|
+ <view>会议室:{{ el.roomName }}</view>
|
|
|
+ <view>发起人:{{ el.createBy }}</view>
|
|
|
+ <view>参会时间:{{ el.startDate.split("T")[1] }} - {{ el.endDate.split("T")[1] }} </view>
|
|
|
</view>
|
|
|
- <view class="flex" v-if="el.createBy != useStore.nickName" @click="goContentDetails(el)">
|
|
|
- <u-tag class="mr10" type="info" text="已读" size="mini" plain v-if="el.readFlag === 1" style="margin: 0 auto"></u-tag>
|
|
|
- <u-tag class="mr10" type="error" text="未读" size="mini" plain v-if="el.readFlag === 0" style="margin: 0 auto"></u-tag>
|
|
|
- <u-text text="全文" :color="proxy.$settingStore.themeColor.color" size="14"></u-text>
|
|
|
+ <u-divider v-if="el.meetingStatus == 0"></u-divider>
|
|
|
+ <view class="flex">
|
|
|
+ <view class="pb5 mlr-auto text-center" style="width: 100%" @click="handleButton('meeting-release', el)" v-if="el.meetingStatus == 0">释放会议室</view>
|
|
|
+ <!-- <view class="pb5 mlr-auto text-center" style="width: 100%" @click="handleButton('meeting-details', el)">会议详情</view> -->
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -79,135 +73,121 @@
|
|
|
import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
|
|
|
import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
|
|
|
/*----------------------------------接口引入-----------------------------------*/
|
|
|
-import { projectApi } from "@/api/business/project.js";
|
|
|
+import { myApi, recordApi } from "@/api/business/meeting.js";
|
|
|
/*----------------------------------组件引入-----------------------------------*/
|
|
|
import switchSlot from "../components/switchSlot.vue";
|
|
|
/*----------------------------------store引入-----------------------------------*/
|
|
|
import { useStores, commonStores } from "@/store/modules/index";
|
|
|
/*----------------------------------公共方法引入-----------------------------------*/
|
|
|
/*----------------------------------公共变量-----------------------------------*/
|
|
|
-const { proxy } = getCurrentInstance();
|
|
|
const useStore = useStores();
|
|
|
+const { proxy } = getCurrentInstance();
|
|
|
+const { meeting_type, meeting_status } = proxy.useDict("meeting_type", "meeting_status");
|
|
|
/*----------------------------------变量声明-----------------------------------*/
|
|
|
const state = reactive({
|
|
|
- tabsList: [
|
|
|
- { name: "我收到的", value: 2 },
|
|
|
- { name: "我发出的", value: 3 },
|
|
|
- { name: "我负责的", value: 1 },
|
|
|
- ],
|
|
|
- tabsCurrent: 0,
|
|
|
-
|
|
|
loading: false,
|
|
|
- reportListNewData: [],
|
|
|
- pageSize: 20,
|
|
|
- current: 1,
|
|
|
- total: 0,
|
|
|
- modalShow: false,
|
|
|
- modalType: "",
|
|
|
- modalEvent: {},
|
|
|
-
|
|
|
- popup: {
|
|
|
- show: false, //弹窗显示
|
|
|
- content: "", //提示信息
|
|
|
- },
|
|
|
- modal: {
|
|
|
- type: "", //操作类型
|
|
|
- show: false, //弹窗显示
|
|
|
- content: "", //提示信息
|
|
|
+ dataList: [],
|
|
|
+ form: {
|
|
|
+ pageSize: 10,
|
|
|
+ current: 1,
|
|
|
+ total: 0,
|
|
|
+ meetingMode: undefined,
|
|
|
+ meetingStatus: undefined,
|
|
|
},
|
|
|
- eventList: {}, //数据存储
|
|
|
-
|
|
|
- reportData: {},
|
|
|
- tip: {
|
|
|
- type: undefined, //弹框类型
|
|
|
- content: "", //提示信息
|
|
|
- data: {}, //带入数据
|
|
|
- operation: undefined, //操作类型
|
|
|
- },
|
|
|
- timedList: [],
|
|
|
- tree: [],
|
|
|
+ formData: [
|
|
|
+ {
|
|
|
+ type: "select",
|
|
|
+ prop: "meetingMode",
|
|
|
+ label: "会议类型",
|
|
|
+ fontSize: "16",
|
|
|
+ data: [],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "select",
|
|
|
+ prop: "meetingStatus",
|
|
|
+ label: "会议状态",
|
|
|
+ fontSize: "16",
|
|
|
+ data: [],
|
|
|
+ },
|
|
|
+ ],
|
|
|
});
|
|
|
|
|
|
-const { tabsList, tabsCurrent, reportListNewData, pageSize, current, total, popup, eventList, modal, timedList, tree } = toRefs(state);
|
|
|
+const { loading, dataList, form, formData, sheet } = toRefs(state);
|
|
|
|
|
|
/**
|
|
|
* @初始化
|
|
|
*/
|
|
|
function init() {
|
|
|
- let arrayList = [];
|
|
|
- projectApi()
|
|
|
- .ReportRecord({
|
|
|
- // startDate: "2024-07-10",
|
|
|
- // endDate: "2024-07-10",
|
|
|
- pageNum: state.current,
|
|
|
- pageSize: state.pageSize,
|
|
|
- projectAscription: state.tabsList[state.tabsCurrent].value,
|
|
|
+ myApi()
|
|
|
+ .Select({
|
|
|
+ current: state.form.current,
|
|
|
+ size: state.form.pageSize,
|
|
|
+ meetingMode: proxy.$common.mapping("value", "label", state.form.meetingMode, meeting_type.value),
|
|
|
+ meetingStatus: proxy.$common.mapping("value", "label", state.form.meetingStatus, meeting_status.value),
|
|
|
})
|
|
|
.then((requset) => {
|
|
|
- requset.data.records.forEach((el) => {
|
|
|
- el.contentText = "";
|
|
|
- el.workContents.forEach((cl) => {
|
|
|
- el.contentText += `${cl.projectName} ${cl.workTime}h \n ${cl.workContent} \n`;
|
|
|
+ state.form.total = requset.data.total;
|
|
|
+ state.dataList = requset.data.records;
|
|
|
+
|
|
|
+ state.formData[0].data = [];
|
|
|
+ state.formData[1].data = [];
|
|
|
+ meeting_type.value.forEach((e) => {
|
|
|
+ state.formData[0].data.push({
|
|
|
+ name: e.label,
|
|
|
+ type: "",
|
|
|
+ prop: state.formData[0].prop,
|
|
|
+ value: e.value,
|
|
|
});
|
|
|
});
|
|
|
- state.total = requset.data.total;
|
|
|
- state.loading = false;
|
|
|
-
|
|
|
- var reportListData = requset.data.records;
|
|
|
- var groupBySubmitTime = reportListData.reduce((acc, current) => {
|
|
|
- const existIndex = acc.findIndex((item) => item.submitDate.slice(0, 10) === current.submitDate.slice(0, 10));
|
|
|
- if (existIndex === -1) {
|
|
|
- acc.push({ submitDate: current.submitDate, items: [current] });
|
|
|
- } else {
|
|
|
- acc[existIndex].items.push(current);
|
|
|
- }
|
|
|
- return acc;
|
|
|
- }, []);
|
|
|
-
|
|
|
- groupBySubmitTime.forEach(function (item, index) {
|
|
|
- item.items.unshift({ submitDate: item.submitDate });
|
|
|
- item.items.forEach(function (aa) {
|
|
|
- arrayList.push(aa);
|
|
|
+ meeting_status.value.forEach((e) => {
|
|
|
+ state.formData[1].data.push({
|
|
|
+ name: e.label,
|
|
|
+ type: "",
|
|
|
+ prop: state.formData[1].prop,
|
|
|
+ value: e.value,
|
|
|
});
|
|
|
});
|
|
|
-
|
|
|
- state.reportListNewData = arrayList;
|
|
|
- })
|
|
|
- .catch((err) => {
|
|
|
- state.loading = false;
|
|
|
- });
|
|
|
- projectApi()
|
|
|
- .TimedReports({})
|
|
|
- .then((requset) => {
|
|
|
- state.timedList = requset.data;
|
|
|
})
|
|
|
.catch((err) => {});
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * @跳转详情
|
|
|
- */
|
|
|
-function goContentDetails(e) {
|
|
|
- if (state.tabsCurrent == 0 && e.readFlag != 1) {
|
|
|
- projectApi()
|
|
|
- .ReportRecordReadFlag({ reportId: e.id })
|
|
|
+/** 操作按钮 */
|
|
|
+function handleButton(type, event) {
|
|
|
+ if (type === "meeting-release") {
|
|
|
+ recordApi()
|
|
|
+ .Cancel(event.meetingId)
|
|
|
.then((res) => {
|
|
|
- if (res.status == "SUCCESS") {
|
|
|
- proxy.$tab.navigateTo(`/pages/business/common/projectMange/record/details?reportId=${e.id}`);
|
|
|
- } else {
|
|
|
- proxy.$modal.msgError("读取异常");
|
|
|
- }
|
|
|
+ proxy.$modal.msg("会议取消");
|
|
|
+ init();
|
|
|
});
|
|
|
- } else {
|
|
|
- proxy.$tab.navigateTo(`/pages/business/common/projectMange/record/details?reportId=${e.id}`);
|
|
|
+ } else if (type === "meeting-details") {
|
|
|
+ // proxy.$tab.navigateTo(`/pages/business/meeting/detailed/index?roomId=${event.roomId}`).then(() => {});
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+/** 操作菜单 */
|
|
|
+function changeSheet(e) {
|
|
|
+ state.form[e.prop] = e.name;
|
|
|
+ init();
|
|
|
+}
|
|
|
+
|
|
|
+/** 操作重置 */
|
|
|
+function resetSwitch() {
|
|
|
+ state.form = {
|
|
|
+ pageSize: 10,
|
|
|
+ current: 1,
|
|
|
+ total: 0,
|
|
|
+ meetingMode: undefined,
|
|
|
+ meetingStatus: undefined,
|
|
|
+ };
|
|
|
+ init();
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* @scrollView加载数据
|
|
|
*/
|
|
|
function load() {
|
|
|
- state.pageSize += 10;
|
|
|
+ state.form.pageSize += 10;
|
|
|
init();
|
|
|
}
|
|
|
|
|
@@ -215,36 +195,22 @@ function load() {
|
|
|
* @scrollView刷新数据
|
|
|
*/
|
|
|
function refresh() {
|
|
|
- state.pageSize = 20;
|
|
|
- init();
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * @tabs点击事件
|
|
|
- */
|
|
|
-function tabsClick(e) {
|
|
|
- state.tabsCurrent = e.index;
|
|
|
+ state.form.pageSize = 20;
|
|
|
init();
|
|
|
}
|
|
|
|
|
|
onReady(() => {});
|
|
|
|
|
|
onShow(() => {
|
|
|
- state.popup.show = false;
|
|
|
//调用系统主题颜色
|
|
|
proxy.$settingStore.systemThemeColor([1]);
|
|
|
});
|
|
|
|
|
|
onLoad((options) => {
|
|
|
init();
|
|
|
- uni.$on("projectMange_record", function (value) {
|
|
|
- init();
|
|
|
- });
|
|
|
});
|
|
|
|
|
|
-onUnload(() => {
|
|
|
- uni.$off("projectMange_record"); //将值删除监听器
|
|
|
-});
|
|
|
+onUnload(() => {});
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
@@ -282,13 +248,4 @@ onUnload(() => {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
-.pp {
|
|
|
- text-align: left;
|
|
|
-}
|
|
|
-</style>
|
|
|
-<style>
|
|
|
-.pp .u-modal__content {
|
|
|
- justify-content: left !important;
|
|
|
-}
|
|
|
</style>
|