|
@@ -1,10 +1,26 @@
|
|
|
<template>
|
|
|
<u-sticky class="shadow-default" bgColor="#fff" style="top: 0">
|
|
|
- <u-tabs :list="tabsList" :current="tabsCurrent" @click="tabsClick" lineColor="#333" :activeStyle="{ color: '#333' }" :inactiveStyle="{ color: '#909399' }" :scrollable="false"></u-tabs>
|
|
|
+ <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" title="报告记录" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff">
|
|
|
+ <template #left>
|
|
|
+ <view class="u-navbar__content__left__item">
|
|
|
+ <u-icon name="arrow-left" size="19" color="#000"></u-icon>
|
|
|
+ </view>
|
|
|
+ </template>
|
|
|
+ </u-navbar>
|
|
|
+
|
|
|
+ <u-tabs
|
|
|
+ :list="tabsList"
|
|
|
+ :current="tabsCurrent"
|
|
|
+ @click="tabsClick"
|
|
|
+ lineColor="#333"
|
|
|
+ :activeStyle="{ color: '#333', fontSize: '14px' }"
|
|
|
+ :inactiveStyle="{ color: '#909399', fontSize: '14px' }"
|
|
|
+ :scrollable="false"
|
|
|
+ ></u-tabs>
|
|
|
</u-sticky>
|
|
|
|
|
|
<oa-scroll
|
|
|
- customClass="repairManage-container scroll-height"
|
|
|
+ customClass="record-container scroll-height"
|
|
|
:pageSize="pageSize"
|
|
|
:total="total"
|
|
|
:isSticky="true"
|
|
@@ -19,21 +35,27 @@
|
|
|
:data-theme="'theme-' + proxy.$settingStore.themeColor.name"
|
|
|
>
|
|
|
<template #default>
|
|
|
- <view class="menu-list m0">
|
|
|
- <view class="list-cell list-cell-arrow" style="color: #666666; line-height: 25px" v-for="(base, index) in dataList" :key="index" @click="handleToDetails(base)">
|
|
|
- <view class="content-area-top menu-item">
|
|
|
- <view class="content-area-top-time">
|
|
|
- {{ base.repairStatus == 1 ? (base.createTime ? base.createTime.replace("T", " ") : "") : base.handleTime ? base.handleTime.replace("T", " ") : "" }}
|
|
|
+ <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.dataList, 'createTime')" :key="date">
|
|
|
+ <view class="content-area-time font12">{{ proxy.$common.jktTimes(date, "否") }}</view>
|
|
|
+ <view class="content-area-center radius bg-white" v-for="(el, ind) in group" :key="ind" @click="goContentDetails(el)">
|
|
|
+ <view class="flex mb10">
|
|
|
+ <u-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="#149eff"
|
|
|
+ ></u-avatar>
|
|
|
+ <view>
|
|
|
+ <view class="content-area-center-title font14 mb5">{{ el.createBy }}的日报</view>
|
|
|
+ <view class="content-area-center-time font12">{{ proxy.$common.jktTimes(el.createTime.replace("T", " ")) }}</view>
|
|
|
</view>
|
|
|
- <view class="content-area-top-status" v-if="base.repairStatus == 1" style="background-color: #23dedc"> 受理中 </view>
|
|
|
- <view class="content-area-top-status" v-if="base.repairStatus == 2" style="background-color: #16bf00"> 处理完成 </view>
|
|
|
</view>
|
|
|
- <view class="content-area-row_wrap menu-item">
|
|
|
- <view class="content-area-row_wrap-view"> 项目名称:{{ base.projectName }} </view>
|
|
|
- <view class="content-area-row_wrap-view"> 报修人:{{ base.reflectName }} </view>
|
|
|
- <view class="content-area-row_wrap-view"> 报修人电话:{{ base.reflectPhone }} </view>
|
|
|
- <view class="content-area-row_wrap-view"> 报修内容:{{ base.repairContent }} </view>
|
|
|
- <view class="content-area-row_wrap-view"> 报修地址:{{ base.projectAddress }} </view>
|
|
|
+ <view>
|
|
|
+ <u-text :text="el.contentText.slice(0, 100) + '···'" color="#666666" size="14"></u-text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -46,23 +68,22 @@
|
|
|
import { onLoad, onShow, onReady, onHide, onLaunch, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
|
|
|
import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
|
|
|
/*----------------------------------接口引入-----------------------------------*/
|
|
|
-import { page } from "@/api/business/fireIot/repairManage.js";
|
|
|
+import { projectApi } from "@/api/business/project.js";
|
|
|
/*----------------------------------组件引入-----------------------------------*/
|
|
|
/*----------------------------------store引入-----------------------------------*/
|
|
|
-import { useStores, commonStores } from "@/store/modules/index";
|
|
|
/*----------------------------------公共方法引入-----------------------------------*/
|
|
|
/*----------------------------------公共变量-----------------------------------*/
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
-const commonStore = commonStores(); //全局公共Store
|
|
|
/*----------------------------------变量声明-----------------------------------*/
|
|
|
const state = reactive({
|
|
|
tabsList: [
|
|
|
- { name: "我收到的", value: "" },
|
|
|
- { name: "我发出的", value: 1 },
|
|
|
- { name: "我负责的", value: 2 },
|
|
|
+ { name: "我收到的", value: 2 },
|
|
|
+ { name: "我发出的", value: 3 },
|
|
|
+ { name: "我负责的", value: 1 },
|
|
|
],
|
|
|
- tabsCurrent: 1,
|
|
|
+ tabsCurrent: 0,
|
|
|
|
|
|
+ loading: false,
|
|
|
dataList: [],
|
|
|
pageSize: 20,
|
|
|
current: 1,
|
|
@@ -72,34 +93,38 @@ const state = reactive({
|
|
|
const { tabsList, tabsCurrent, dataList, pageSize, current, total } = toRefs(state);
|
|
|
|
|
|
/**
|
|
|
- * @页面初始化
|
|
|
+ * @初始化
|
|
|
*/
|
|
|
function init() {
|
|
|
- selectListApi();
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * @列表查询
|
|
|
- * @api接口查询
|
|
|
- */
|
|
|
-function selectListApi() {
|
|
|
- page({
|
|
|
- repairStatus: state.tabsList[state.tabsCurrent].value,
|
|
|
- current: state.current,
|
|
|
- size: state.pageSize,
|
|
|
- }).then((requset) => {
|
|
|
- if (requset.status === "SUCCESS") {
|
|
|
- state.dataList = requset.data.records;
|
|
|
+ projectApi()
|
|
|
+ .Record({
|
|
|
+ // startDate: "2024-07-10",
|
|
|
+ // endDate: "2024-07-10",
|
|
|
+ pageNum: state.current,
|
|
|
+ pageSize: state.pageSize,
|
|
|
+ projectAscription: state.tabsList[state.tabsCurrent].value,
|
|
|
+ })
|
|
|
+ .then((requset) => {
|
|
|
+ requset.data.records.forEach((el) => {
|
|
|
+ el.contentText = "";
|
|
|
+ el.workContents.forEach((cl) => {
|
|
|
+ el.contentText += `${cl.projectName} ${cl.workTime}h \n ${cl.workContent}`;
|
|
|
+ });
|
|
|
+ state.dataList.push(el);
|
|
|
+ });
|
|
|
state.total = requset.data.total;
|
|
|
- }
|
|
|
- });
|
|
|
+ state.loading = false;
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ state.loading = false;
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * @跳转详情事件
|
|
|
+ * @跳转详情
|
|
|
*/
|
|
|
-function handleToDetails(e) {
|
|
|
- proxy.$tab.navigateTo(`/pages/business/fireIot/repairManage/repairDetails?repairCode=${e.repairCode}`);
|
|
|
+function goContentDetails(e) {
|
|
|
+ proxy.$tab.navigateTo(`/pages/business/common/projectMange/record/details?reportId=${e.id}&createBy=${e.createBy}`);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -122,6 +147,7 @@ function refresh() {
|
|
|
* @tabs点击事件
|
|
|
*/
|
|
|
function tabsClick(e) {
|
|
|
+ state.dataList = [];
|
|
|
state.tabsCurrent = e.index;
|
|
|
init();
|
|
|
}
|
|
@@ -139,51 +165,31 @@ onLoad((options) => {
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
-.repairManage-container {
|
|
|
- .content-area {
|
|
|
- &-top {
|
|
|
- padding-right: 10px;
|
|
|
- font-size: 16px;
|
|
|
- font-weight: 600;
|
|
|
- color: #000000;
|
|
|
+.content-area {
|
|
|
+ &-time {
|
|
|
+ padding: 10px 0;
|
|
|
+ text-align: center;
|
|
|
+ color: #909399;
|
|
|
+ }
|
|
|
|
|
|
- &-time {
|
|
|
- max-width: 70%;
|
|
|
- margin: auto 0;
|
|
|
- font-size: 14px;
|
|
|
- color: rgb(102, 102, 102);
|
|
|
- }
|
|
|
-
|
|
|
- &-name {
|
|
|
- max-width: 70%;
|
|
|
- color: #000;
|
|
|
- }
|
|
|
-
|
|
|
- &-status {
|
|
|
- max-width: 30%;
|
|
|
- margin: auto 0 auto auto;
|
|
|
- font-size: 12px;
|
|
|
- color: #ffffff;
|
|
|
- padding: 0 5px;
|
|
|
- border-radius: 20px;
|
|
|
- line-height: 20px;
|
|
|
- }
|
|
|
+ &-center {
|
|
|
+ margin: 0;
|
|
|
+ padding: 15px;
|
|
|
+ overflow: hidden;
|
|
|
+ border-bottom: 1px solid #eaeef1;
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ border-bottom: 0px solid #eaeef1;
|
|
|
}
|
|
|
|
|
|
- &-row_wrap {
|
|
|
- padding-right: 10px;
|
|
|
- font-size: 13px;
|
|
|
- flex-flow: row wrap;
|
|
|
-
|
|
|
- &-view {
|
|
|
- display: flex;
|
|
|
- min-width: 50%;
|
|
|
- > .iconfont {
|
|
|
- font-size: 14px;
|
|
|
- color: #909399;
|
|
|
- margin-left: 5px;
|
|
|
- }
|
|
|
- }
|
|
|
+ &-avatar {
|
|
|
+ margin: auto 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-title {
|
|
|
+ margin: 0 0 15px 0;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #000000;
|
|
|
}
|
|
|
}
|
|
|
}
|