index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  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 - 132px)',
  28. //#endif
  29. //#ifdef H5
  30. height: 'calc(100vh - 132px)',
  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,.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. <!-- <u-icon class="content-area-top-icon" name="edit-pen" size="20" color="rgb(20, 158, 255)" @click="handleSubmit('update',el)" v-if="state.tabsCurrent ==1" style="display:inline-block;margin-right:30px;"></u-icon> -->
  59. <!-- <u-icon class="content-area-top-icon" name="trash" size="20" color="red" @click="tips('error',`确认删除时间为 '${el.submitDate}' 的日报吗?`,el,'delete')" v-if="state.tabsCurrent ==1" style="display:inline-block;"></u-icon> -->
  60. </view>
  61. <view class="flex mb10" @click="goContentDetails(el)">
  62. <u-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"
  158. @close="dialogClose"></uni-popup-dialog>
  159. </uni-popup>
  160. <u-modal
  161. :show="modal.show"
  162. title="操作提醒"
  163. :content="modal.content"
  164. :showCancelButton="true"
  165. :closeOnClickOverlay="true"
  166. @confirm="handleSubmit(state.modal.type, eventList)"
  167. @cancel="modal.show = false"
  168. @close="modal.show = false"
  169. ></u-modal>
  170. </template>
  171. <script setup>
  172. /*----------------------------------依赖引入-----------------------------------*/
  173. import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  174. import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
  175. /*----------------------------------接口引入-----------------------------------*/
  176. import { projectApi } from "@/api/business/project.js";
  177. /*----------------------------------组件引入-----------------------------------*/
  178. /*----------------------------------store引入-----------------------------------*/
  179. import { useStores, commonStores } from "@/store/modules/index";
  180. /*----------------------------------公共方法引入-----------------------------------*/
  181. /*----------------------------------公共变量-----------------------------------*/
  182. const { proxy } = getCurrentInstance();
  183. const useStore = useStores();
  184. /*----------------------------------变量声明-----------------------------------*/
  185. const state = reactive({
  186. tabsList: [
  187. { name: "我收到的", value: 2 },
  188. { name: "我发出的", value: 3 },
  189. { name: "我负责的", value: 1 },
  190. ],
  191. tabsCurrent: 0,
  192. loading: false,
  193. dataList: [],
  194. pageSize: 20,
  195. current: 1,
  196. total: 0,
  197. modalShow: false,
  198. modalType: "",
  199. modalEvent: {},
  200. popup: {
  201. show: false, //弹窗显示
  202. content: "", //提示信息
  203. },
  204. modal: {
  205. type: "", //操作类型
  206. show: false, //弹窗显示
  207. content: "", //提示信息
  208. },
  209. eventList: {}, //数据存储
  210. reportData:{},
  211. tip:{
  212. type:undefined,//弹框类型
  213. content:"",//提示信息
  214. data:{},//带入数据
  215. operation:undefined,//操作类型
  216. },
  217. timedList:[],
  218. tree:[]
  219. });
  220. const { tabsList, tabsCurrent, dataList, pageSize, current, total,popup,eventList,modal,timedList,tree} = toRefs(state);
  221. /**
  222. * 操作弹框提醒
  223. * @param type 弹框类型
  224. * @param content 提示内容
  225. * @param item 带入数据
  226. * @param operation 操作类型
  227. */
  228. function tips(type,content,item,operation){
  229. state.tip.type=type
  230. state.tip.content=content
  231. state.tip.data=item
  232. state.tip.operation=operation
  233. proxy.$refs.alertDialog.open()
  234. }
  235. /**弹框确定操作 */
  236. function dialogConfirm(){
  237. if(state.tip.operation =='delete'){
  238. handleSubmit('delete',state.tip.data)
  239. }
  240. if(state.tip.operation=='exit'){
  241. handleSubmit('exit',state.tip.data)
  242. }
  243. if(state.tip.operation=='copy'){
  244. handleSubmit('copy',state.tip.data)
  245. }
  246. }
  247. /**
  248. * @初始化
  249. */
  250. function init() {
  251. projectApi()
  252. .ReportRecord({
  253. // startDate: "2024-07-10",
  254. // endDate: "2024-07-10",
  255. pageNum: state.current,
  256. pageSize: state.pageSize,
  257. projectAscription: state.tabsList[state.tabsCurrent].value,
  258. })
  259. .then((requset) => {
  260. requset.data.records.forEach((el) => {
  261. el.contentText = "";
  262. el.workContents.forEach((cl) => {
  263. el.contentText += `${cl.projectName} ${cl.workTime}h \n ${cl.workContent}`;
  264. });
  265. });
  266. state.dataList = requset.data.records;
  267. state.total = requset.data.total;
  268. state.loading = false;
  269. console.log(state.dataList )
  270. })
  271. .catch((err) => {
  272. state.loading = false;
  273. });
  274. projectApi()
  275. .TimedReports({
  276. }).then((requset) => {
  277. state.timedList = requset.data;
  278. })
  279. .catch((err) => {
  280. })
  281. }
  282. /**
  283. * @跳转详情
  284. */
  285. function goContentDetails(e) {
  286. proxy.$tab.navigateTo(`/pages/business/common/projectMange/record/details?reportId=${e.id}`);
  287. }
  288. /**
  289. * @scrollView加载数据
  290. */
  291. function load() {
  292. state.pageSize += 10;
  293. init();
  294. }
  295. /**
  296. * @scrollView刷新数据
  297. */
  298. function refresh() {
  299. state.pageSize = 20;
  300. init();
  301. }
  302. /**
  303. * @tabs点击事件
  304. */
  305. function tabsClick(e) {
  306. state.tabsCurrent = e.index;
  307. init();
  308. }
  309. // 定时日志页面
  310. function goTimingPage(){
  311. proxy.$tab.navigateTo(`/pages/business/common/projectMange/record/timingLog`);
  312. // proxy.$tab.navigateTo(`/pages/business/common/projectMange/report/timingLog`);
  313. }
  314. /** 更多按钮点击事件 */
  315. function moreClick(event) {
  316. state.popup.show = true;
  317. state.eventList = event;
  318. }
  319. function handleModal(type, content) {
  320. state.modal.show = true;
  321. state.modal.type = type;
  322. state.modal.content = content;
  323. }
  324. /** 编辑、删除日报*/
  325. function handleSubmit(type,item) {
  326. if (type === "update") {
  327. proxy.$tab.navigateTo(`/pages/business/common/projectMange/write/insert?templateId=1&id=${item.id}`);
  328. state.modal.show = false;
  329. }else if (type === "copy") {
  330. var workLongString=''
  331. item.workContents.forEach((item) => {
  332. workLongString+=item.projectName+':'+item.workTime+ "h\n"+item.workContent+ "\n"
  333. })
  334. item.ccTo1 = item.ccTo.split(",").map(function (value, index) {
  335. return Number(value);
  336. });
  337. /** 查询树结构用户列表 回显抄送人*/
  338. item.tomorrowPlan=item.tomorrowPlan?item.tomorrowPlan:'-';
  339. item.coordinateWork=item.coordinateWork?item.coordinateWork:'-'
  340. // 触发方法
  341. proxy.$common.uniCopy({
  342. content: workLongString+ "\n" +
  343. "明日计划:\n" + item.tomorrowPlan + "\n" +
  344. "工作协调:\n" + item.coordinateWork,
  345. success: (res) => {
  346. uni.showToast({
  347. title: res,
  348. icon: "none",
  349. });
  350. },
  351. error: (e) => {
  352. uni.showToast({
  353. title: e,
  354. icon: "none",
  355. duration: 3000,
  356. });
  357. },
  358. });
  359. state.popup.show = false;
  360. } else if (type === "delete") {
  361. projectApi()
  362. .ReportDelete(item.id)
  363. .then(() => {
  364. proxy.$modal.msg("日报删除成功!");
  365. state.modal.show = false;
  366. state.popup.show = false;
  367. init();
  368. })
  369. .catch((errors) => {
  370. proxy.$modal.msg(errors);
  371. });
  372. }
  373. state.modalShow = false;
  374. }
  375. onReady(() => {});
  376. onShow(() => {
  377. state.popup.show = false;
  378. //调用系统主题颜色
  379. proxy.$settingStore.systemThemeColor([1]);
  380. });
  381. onLoad((options) => {
  382. init();
  383. uni.$on("projectMange_record", function (value) {
  384. init();
  385. });
  386. });
  387. onUnload(() => {
  388. uni.$off("projectMange_record"); //将值删除监听器
  389. });
  390. </script>
  391. <style lang="scss" scoped>
  392. .content-area {
  393. &-time {
  394. padding: 10px;
  395. text-align: left;
  396. color: #000000;
  397. font-weight: 600;
  398. }
  399. &-center {
  400. margin: 0;
  401. padding: 15px;
  402. overflow: hidden;
  403. border-bottom: 1px solid #eaeef1;
  404. &:last-child {
  405. border-bottom: 0px solid #eaeef1;
  406. }
  407. &-avatar {
  408. margin: auto 0;
  409. }
  410. &-title {
  411. margin: 0 0 15px 0;
  412. font-weight: 600;
  413. color: #000000;
  414. }
  415. }
  416. }
  417. .pp{
  418. text-align: left;
  419. }
  420. </style>
  421. <style>
  422. .pp .u-modal__content{
  423. justify-content: left !important
  424. }
  425. </style>