index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. <template>
  2. <u-sticky class="shadow-default" bgColor="#fff" style="top: 0">
  3. <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" title="工作报告" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff">
  4. <template #left>
  5. <view class="u-navbar__content__left__item">
  6. <u-icon name="arrow-left" size="20" color="#000"></u-icon>
  7. </view>
  8. </template>
  9. </u-navbar>
  10. <u-tabs
  11. :list="tabsList"
  12. :current="tabsCurrent"
  13. @click="tabsClick"
  14. lineColor="#333"
  15. :activeStyle="{ color: '#333', fontSize: '14px' }"
  16. :inactiveStyle="{ color: '#909399', fontSize: '14px' }"
  17. :scrollable="false"
  18. ></u-tabs>
  19. </u-sticky>
  20. <oa-scroll
  21. customClass="record-container scroll-height"
  22. :pageSize="pageSize"
  23. :total="total"
  24. :isSticky="true"
  25. :customStyle="{
  26. //#ifdef APP-PLUS || MP-WEIXIN
  27. height: `calc(100vh - (138px + ${proxy.$settingStore.StatusBarHeight}))`,
  28. //#endif
  29. //#ifdef H5
  30. height: `calc(100vh - (138px))`,
  31. //#endif
  32. }"
  33. :refresherLoad="true"
  34. :refresherEnabled="true"
  35. :refresherDefaultStyle="'none'"
  36. :refresherThreshold="44"
  37. :lowerThreshold="44"
  38. :refresherBackground="'#f5f6f7'"
  39. @load="load"
  40. @refresh="refresh"
  41. :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
  42. >
  43. <template #default>
  44. <view v-if="timedList.length > 0" @click="goTimingPage()" class="list-cell list-cell-arrow" style="margin: 20px 0; color: rgb(20, 158, 255); background-color: rgba(20, 158, 255, 0.1)">
  45. <view style="width: calc(100% - 51px); display: flex; padding-right: 10px">
  46. <u-icon name="info-circle" color="#2979ff" size="18" style="margin-right: 5px"></u-icon>
  47. <view v-if="timedList.length == 1">您有1条定时日志将于{{ timedList[0].timingTime.slice(0, 16) }}发布</view>
  48. <view v-else>您有{{ timedList.length }}条定时日志将于指定时间发布</view>
  49. </view>
  50. </view>
  51. <u-loading-page :loading="state.loading" fontSize="16" style="z-index: 99"></u-loading-page>
  52. <view class="content-area" v-for="(group, date) in proxy.$common.groupedItems(state.dataList, 'submitDate')" :key="date">
  53. <view class="content-area-time font14">{{ proxy.$time.jktTimes(date, "否") }}</view>
  54. <view class="content-area-center bg-white" v-for="(el, ind) in group" :key="ind">
  55. <view class="content-area-top menu-item" style="float: right; padding: 10px 0px">
  56. <view class="content-area-top-time"> </view>
  57. <u-icon class="content-area-top-icon" name="more-dot-fill" size="20" color="#000" @click="moreClick(el)"></u-icon>
  58. </view>
  59. <view class="flex mb10" @click="goContentDetails(el)">
  60. <img :src="el.avatar" class="content-area-center-avatarImg mr10" v-if="el.avatar" />
  61. <u-avatar
  62. v-if="!el.avatar"
  63. class="content-area-center-avatar mr10"
  64. :text="el.createBy.length > 2 ? el.createBy.slice(1, 3) : el.createBy"
  65. shape="square"
  66. size="35"
  67. fontSize="10"
  68. color="#ffffff"
  69. :bgColor="proxy.$settingStore.themeColor.color"
  70. ></u-avatar>
  71. <view>
  72. <view class="content-area-center-title font14 mb5">{{ el.createBy }}的日报</view>
  73. <view class="content-area-center-time font12">{{ proxy.$time.jktTimes(el.submitDate.replace("T", " ")) }}</view>
  74. </view>
  75. </view>
  76. <view class="mb5" @click="goContentDetails(el)">
  77. <u-text :text="el.contentText.length >= 100 ? el.contentText.slice(0, 100) + '···' : el.contentText" color="#666666" size="14"></u-text>
  78. </view>
  79. <view class="flex" v-if="el.createBy != useStore.nickName" @click="goContentDetails(el)">
  80. <u-tag class="mr10" type="info" text="已读" size="mini" plain v-if="el.readFlag === 1" style="margin: 0 auto"></u-tag>
  81. <u-tag class="mr10" type="error" text="未读" size="mini" plain v-if="el.readFlag === 0" style="margin: 0 auto"></u-tag>
  82. <u-text text="全文" :color="proxy.$settingStore.themeColor.color" size="14"></u-text>
  83. </view>
  84. </view>
  85. </view>
  86. </template>
  87. </oa-scroll>
  88. <oa-tabbar :tabbarValue="0" :tabbarList="proxy.$constData.projectTabbar" :isSwitchTab="false"></oa-tabbar>
  89. <u-popup :show="popup.show" mode="bottom" bgColor="#fff" :round="10" @close="popup.show = false">
  90. <view
  91. :style="{
  92. borderTopLeftRadius: '10px',
  93. borderTopRightRadius: '10px',
  94. overflow: 'hidden',
  95. }"
  96. >
  97. <u-button
  98. v-if="state.tabsCurrent == 1"
  99. class="custom-style"
  100. type="info"
  101. size="normal"
  102. text="编辑"
  103. :customStyle="{
  104. height: '50px',
  105. color: '#3c9cff',
  106. borderWidth: 0,
  107. borderRadius: 0,
  108. borderBottomWidth: '1px',
  109. }"
  110. @click="handleSubmit('update', eventList)"
  111. ></u-button>
  112. <u-button
  113. class="custom-style"
  114. type="info"
  115. size="normal"
  116. text="一键复制"
  117. :customStyle="{
  118. height: '50px',
  119. color: '#3c9cff',
  120. borderWidth: 0,
  121. borderRadius: 0,
  122. borderBottomWidth: '1px',
  123. }"
  124. @click="handleSubmit('copy', eventList)"
  125. ></u-button>
  126. <u-button
  127. v-if="state.tabsCurrent == 1"
  128. class="custom-style"
  129. type="info"
  130. size="normal"
  131. text="删除"
  132. :customStyle="{
  133. height: '50px',
  134. color: '#f56c6c',
  135. borderWidth: 0,
  136. borderRadius: 0,
  137. borderBottomWidth: '3px',
  138. }"
  139. @click="handleModal('delete', `确认删除“ ${eventList.createBy} ” 的“ ${eventList.reportDate} ” 的日报?`)"
  140. ></u-button>
  141. <u-button
  142. class="custom-style"
  143. type="info"
  144. size="normal"
  145. text="取消"
  146. :customStyle="{
  147. height: '50px',
  148. color: '#3c9cff',
  149. border: 'none',
  150. borderRadius: 0,
  151. }"
  152. @click="popup.show = false"
  153. ></u-button>
  154. </view>
  155. </u-popup>
  156. <uni-popup ref="alertDialog" type="dialog">
  157. <uni-popup-dialog :type="state.tip.type" cancelText="取消" confirmText="确定" title="操作提醒" :content="state.tip.content" @confirm="dialogConfirm" @close="dialogClose"></uni-popup-dialog>
  158. </uni-popup>
  159. <u-modal
  160. :show="modal.show"
  161. title="操作提醒"
  162. :content="modal.content"
  163. :showCancelButton="true"
  164. :closeOnClickOverlay="true"
  165. @confirm="handleSubmit(state.modal.type, eventList)"
  166. @cancel="modal.show = false"
  167. @close="modal.show = false"
  168. ></u-modal>
  169. </template>
  170. <script setup>
  171. /*----------------------------------依赖引入-----------------------------------*/
  172. import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  173. import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
  174. /*----------------------------------接口引入-----------------------------------*/
  175. import { projectApi } from "@/api/business/project.js";
  176. /*----------------------------------组件引入-----------------------------------*/
  177. /*----------------------------------store引入-----------------------------------*/
  178. import { useStores, commonStores } from "@/store/modules/index";
  179. /*----------------------------------公共方法引入-----------------------------------*/
  180. /*----------------------------------公共变量-----------------------------------*/
  181. const { proxy } = getCurrentInstance();
  182. const useStore = useStores();
  183. /*----------------------------------变量声明-----------------------------------*/
  184. const state = reactive({
  185. tabsList: [
  186. { name: "我收到的", value: 2 },
  187. { name: "我发出的", value: 3 },
  188. { name: "我负责的", value: 1 },
  189. ],
  190. tabsCurrent: 0,
  191. loading: false,
  192. dataList: [],
  193. pageSize: 20,
  194. current: 1,
  195. total: 0,
  196. modalShow: false,
  197. modalType: "",
  198. modalEvent: {},
  199. popup: {
  200. show: false, //弹窗显示
  201. content: "", //提示信息
  202. },
  203. modal: {
  204. type: "", //操作类型
  205. show: false, //弹窗显示
  206. content: "", //提示信息
  207. },
  208. eventList: {}, //数据存储
  209. reportData: {},
  210. tip: {
  211. type: undefined, //弹框类型
  212. content: "", //提示信息
  213. data: {}, //带入数据
  214. operation: undefined, //操作类型
  215. },
  216. timedList: [],
  217. tree: [],
  218. });
  219. const { tabsList, tabsCurrent, dataList, pageSize, current, total, popup, eventList, modal, timedList, tree } = toRefs(state);
  220. /**
  221. * 操作弹框提醒
  222. * @param type 弹框类型
  223. * @param content 提示内容
  224. * @param item 带入数据
  225. * @param operation 操作类型
  226. */
  227. function tips(type, content, item, operation) {
  228. state.tip.type = type;
  229. state.tip.content = content;
  230. state.tip.data = item;
  231. state.tip.operation = operation;
  232. proxy.$refs.alertDialog.open();
  233. }
  234. /**弹框确定操作 */
  235. function dialogConfirm() {
  236. if (state.tip.operation == "delete") {
  237. handleSubmit("delete", state.tip.data);
  238. }
  239. if (state.tip.operation == "exit") {
  240. handleSubmit("exit", state.tip.data);
  241. }
  242. if (state.tip.operation == "copy") {
  243. handleSubmit("copy", state.tip.data);
  244. }
  245. }
  246. /**
  247. * @初始化
  248. */
  249. function init() {
  250. projectApi()
  251. .ReportRecord({
  252. // startDate: "2024-07-10",
  253. // endDate: "2024-07-10",
  254. pageNum: state.current,
  255. pageSize: state.pageSize,
  256. projectAscription: state.tabsList[state.tabsCurrent].value,
  257. })
  258. .then((requset) => {
  259. requset.data.records.forEach((el) => {
  260. el.contentText = "";
  261. el.workContents.forEach((cl) => {
  262. el.contentText += `${cl.projectName} ${cl.workTime}h \n ${cl.workContent} \n`;
  263. });
  264. });
  265. state.dataList = requset.data.records;
  266. state.total = requset.data.total;
  267. state.loading = false;
  268. console.log(state.dataList);
  269. })
  270. .catch((err) => {
  271. state.loading = false;
  272. });
  273. projectApi()
  274. .TimedReports({})
  275. .then((requset) => {
  276. state.timedList = requset.data;
  277. })
  278. .catch((err) => {});
  279. }
  280. /**
  281. * @跳转详情
  282. */
  283. function goContentDetails(e) {
  284. if (state.tabsCurrent == 0 && e.readFlag != 1) {
  285. projectApi()
  286. .ReportRecordReadFlag({ reportId: e.id })
  287. .then((res) => {
  288. if (res.status == "SUCCESS") {
  289. proxy.$tab.navigateTo(`/pages/business/common/projectMange/record/details?reportId=${e.id}`);
  290. } else {
  291. proxy.$modal.msgError("读取异常");
  292. }
  293. });
  294. } else {
  295. proxy.$tab.navigateTo(`/pages/business/common/projectMange/record/details?reportId=${e.id}`);
  296. }
  297. }
  298. /**
  299. * @scrollView加载数据
  300. */
  301. function load() {
  302. state.pageSize += 10;
  303. init();
  304. }
  305. /**
  306. * @scrollView刷新数据
  307. */
  308. function refresh() {
  309. state.pageSize = 20;
  310. init();
  311. }
  312. /**
  313. * @tabs点击事件
  314. */
  315. function tabsClick(e) {
  316. state.tabsCurrent = e.index;
  317. init();
  318. }
  319. // 定时日志页面
  320. function goTimingPage() {
  321. proxy.$tab.navigateTo(`/pages/business/common/projectMange/record/timingLog`);
  322. // proxy.$tab.navigateTo(`/pages/business/common/projectMange/report/timingLog`);
  323. }
  324. /** 更多按钮点击事件 */
  325. function moreClick(event) {
  326. state.popup.show = true;
  327. state.eventList = event;
  328. }
  329. function handleModal(type, content) {
  330. state.modal.show = true;
  331. state.modal.type = type;
  332. state.modal.content = content;
  333. }
  334. /** 编辑、删除日报*/
  335. function handleSubmit(type, item) {
  336. if (type === "update") {
  337. proxy.$tab.navigateTo(`/pages/business/common/projectMange/write/insert?templateId=1&id=${item.id}`);
  338. state.modal.show = false;
  339. } else if (type === "copy") {
  340. var workLongString = "";
  341. item.workContents.forEach((item) => {
  342. workLongString += item.projectName + ":" + item.workTime + "h\n" + item.workContent + "\n";
  343. });
  344. item.ccTo1 = item.ccTo.split(",").map(function (value, index) {
  345. return Number(value);
  346. });
  347. /** 查询树结构用户列表 回显抄送人*/
  348. item.tomorrowPlan = item.tomorrowPlan ? item.tomorrowPlan : "-";
  349. item.coordinateWork = item.coordinateWork ? item.coordinateWork : "-";
  350. // 触发方法
  351. proxy.$common.uniCopy({
  352. content: workLongString + "\n" + "明日计划:\n" + item.tomorrowPlan + "\n" + "工作协调:\n" + item.coordinateWork,
  353. success: (res) => {
  354. uni.showToast({
  355. title: res,
  356. icon: "none",
  357. });
  358. },
  359. error: (e) => {
  360. uni.showToast({
  361. title: e,
  362. icon: "none",
  363. duration: 3000,
  364. });
  365. },
  366. });
  367. state.popup.show = false;
  368. } else if (type === "delete") {
  369. projectApi()
  370. .ReportDelete(item.id)
  371. .then(() => {
  372. proxy.$modal.msg("日报删除成功!");
  373. state.modal.show = false;
  374. state.popup.show = false;
  375. init();
  376. })
  377. .catch((errors) => {
  378. proxy.$modal.msg(errors);
  379. });
  380. }
  381. state.modalShow = false;
  382. }
  383. onReady(() => {});
  384. onShow(() => {
  385. state.popup.show = false;
  386. //调用系统主题颜色
  387. proxy.$settingStore.systemThemeColor([1]);
  388. });
  389. onLoad((options) => {
  390. init();
  391. uni.$on("projectMange_record", function (value) {
  392. init();
  393. });
  394. });
  395. onUnload(() => {
  396. uni.$off("projectMange_record"); //将值删除监听器
  397. });
  398. </script>
  399. <style lang="scss" scoped>
  400. .content-area {
  401. &-time {
  402. padding: 10px;
  403. text-align: left;
  404. color: #000000;
  405. font-weight: 600;
  406. }
  407. &-center {
  408. margin: 0;
  409. padding: 15px;
  410. overflow: hidden;
  411. border-bottom: 1px solid #eaeef1;
  412. &:last-child {
  413. border-bottom: 0px solid #eaeef1;
  414. }
  415. &-avatar {
  416. margin: auto 0;
  417. }
  418. &-avatarImg {
  419. width: 35px;
  420. height: 35px;
  421. border-radius: 4px;
  422. }
  423. &-title {
  424. margin: 0 0 15px 0;
  425. font-weight: 600;
  426. color: #000000;
  427. }
  428. }
  429. }
  430. .pp {
  431. text-align: left;
  432. }
  433. </style>
  434. <style>
  435. .pp .u-modal__content {
  436. justify-content: left !important;
  437. }
  438. </style>