template1.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  1. <template>
  2. <view class="content-area">
  3. <view class="content-area-title font12 mtb5 plr10" v-if="!state.form.id">{{state.form.id}}实时保存,保存时间 {{ saveTime }}</view>
  4. <view class="content-area-item p10 bg-white">
  5. <view class="font14 weight mb10 required">工作内容</view>
  6. <u-collapse v-if="form.workContents.length > 0" :accordion="true">
  7. <u-collapse-item :title="item.projectName + ' ' + (item.workTime ? item.workTime + 'h' : '0h')" :name="item.projectId" v-for="(item, index) in form.workContents" :key="index">
  8. <u-input
  9. v-model="item.workTime"
  10. placeholder="请输入工作耗时"
  11. placeholderStyle="color:#909399;font-size:12px"
  12. suffixIcon="h"
  13. suffixIconStyle="color:#909399;font-size:12px;width:10px"
  14. border="none"
  15. type="digit"
  16. style="padding: 0px; margin: 10px 0"
  17. @change="realTimeSaving()"
  18. />
  19. <u-textarea
  20. v-model="item.workContent"
  21. placeholder="请输入工作内容"
  22. placeholderStyle="color:#909399;font-size:12px"
  23. confirmType="return"
  24. :autoHeight="true"
  25. :maxlength="-1"
  26. :height="'100%'"
  27. border="none"
  28. style="padding: 0px; margin: 10px 0"
  29. @change="realTimeSaving()"
  30. ></u-textarea>
  31. </u-collapse-item>
  32. </u-collapse>
  33. <u-button class="mt20" type="primary" style="width: 100px; height: 25px" @click="insertProjects()" shape="circle" icon="plus" size="mini"> 添加项目 </u-button>
  34. </view>
  35. <view class="content-area-item mt10 p10 bg-white">
  36. <view class="font14 weight mb10">明日计划</view>
  37. <u-textarea
  38. v-model="form.tomorrowPlan"
  39. placeholder="请输入"
  40. placeholderStyle="color:#909399;font-size:12px"
  41. confirmType="return"
  42. :autoHeight="true"
  43. :maxlength="-1"
  44. :height="'100%'"
  45. border="none"
  46. style="padding: 0px"
  47. @change="realTimeSaving()"
  48. ></u-textarea>
  49. </view>
  50. <view class="content-area-item mt10 p10 bg-white">
  51. <view class="font14 weight mb10">工作协调</view>
  52. <u-textarea
  53. v-model="form.coordinateWork"
  54. placeholder="请输入"
  55. placeholderStyle="color:#909399;font-size:12px"
  56. confirmType="return"
  57. :autoHeight="true"
  58. :maxlength="-1"
  59. :height="'100%'"
  60. border="none"
  61. style="padding: 0px"
  62. @change="realTimeSaving()"
  63. ></u-textarea>
  64. </view>
  65. <view class="content-area-item mt10 p10 bg-white">
  66. <view class="font14 weight mb10">图片上传</view>
  67. <oa-upload :uploadCount="5" :uploadList="state.form.reportImage" :uploadListSrc="'url'" @uploadSuccessChange="uploadSuccessChange" @uploadDeleteChange="uploadDeleteChange"></oa-upload>
  68. </view>
  69. <view class="content-area-item mt10 p10 bg-white">
  70. <view class="font14 weight mb10">附件上传</view>
  71. <uni-file-picker limit="100"
  72. @select='selectUpload'
  73. :auto-upload='false'
  74. file-extname='png,git,pdf,docx,doc,xls,xlsx,ppt,pptx,txt,zip,rar,7z,gz,bz2,tar,tgz,tbz,txz,apk,ipa,mp3,mp4,avi,flv,rmvb,wmv,mkv,mov,wma,aac,m4a,amr,ogg,flac,wav,amr,ape,m4r,aac,ac3,dts,m4b,m4p,m4v,mp2,mpe,mpeg,mpg,mpv,ogv,rm,swf,vob,wmv,3gp,3g2,asf,asx,avi,flv,m2ts,m4v,mkv,mov,mp4,mpg,mpeg,rm,swf,vob,wmv,3gp,3g2,asf,asx,avi,'
  75. file-mediatype="all"
  76. >
  77. <u-button class="mt20" type="primary" style="width: 100px; height: 25px" icon="plus" size="mini" shape="circle"> 点击上传 </u-button>
  78. </uni-file-picker>
  79. <!-- 文件列表回显 -->
  80. <br>
  81. <view v-for="(file, index) in state.form.reportFile" :key="index" style="border-bottom:1px solid #eee;margin:6px;padding:6px;font-size:12px">
  82. <uni-link :href="file.url" text="file.url">{{file.name}}</uni-link>
  83. <uni-icons type="closeempty" size="12" style="float:right" @click="delectFile(file)"></uni-icons>
  84. </view>
  85. </view>
  86. <view class="content-area-item mt10 p10 bg-white">
  87. <view class="font14 weight mb10">抄送到人</view>
  88. <avatarList :userList="userList" @deleteUsers="deleteUsers" />
  89. <u-button class="mt20" type="primary" style="width: 100px; height: 25px" @click="insertUsers()" shape="circle" icon="plus" size="mini" :disabled="form.reportStatus == 1"> 选择人员 </u-button>
  90. </view>
  91. <view class="content-area-item mt10 p10 bg-white">
  92. <view class="flex">
  93. <view class="font14 weight">同步钉钉</view>
  94. <u-switch
  95. style="margin-left: auto"
  96. :modelValue="form.sendDingTalk == 0 ? false : true"
  97. :ctiveColor="proxy.$settingStore.themeColor.color"
  98. size="20"
  99. :disabled="form.reportStatus == 1"
  100. @change="(event) => switchChage(event, 'sendDingTalk')"
  101. asyncChange
  102. ></u-switch>
  103. </view>
  104. <view class="flex"> </view>
  105. </view>
  106. <view class="content-area-item mt10 p10 bg-white" v-if="form.reportStatus != 1">
  107. <view class="flex">
  108. <view class="font14 weight">定时发送</view>
  109. <u-switch
  110. style="margin-left: auto"
  111. :modelValue="form.isRegularlySend == 0 ? false : true"
  112. :ctiveColor="proxy.$settingStore.themeColor.color"
  113. size="20"
  114. @change="(event) => switchChage(event, 'isRegularlySend')"
  115. asyncChange
  116. ></u-switch>
  117. </view>
  118. <view class="flex" v-if="form.isRegularlySend == 0 ? false : true" @click="timeShow = true">
  119. <u-input
  120. v-model="form.timingTime"
  121. placeholder="请选择时间"
  122. placeholderStyle="color:#909399;font-size:12px"
  123. suffixIcon="arrow-right"
  124. suffixIconStyle="color:#909399;font-size:12px;width:10px"
  125. border="none"
  126. style="padding: 0px; margin: 10px 0"
  127. @change="realTimeSaving()"
  128. disabledColor="transparent"
  129. disabled
  130. />
  131. </view>
  132. </view>
  133. </view>
  134. <view class="app-button">
  135. <view class="app-button-padding"></view>
  136. <view class="app-button-fixed">
  137. <!-- {{ form }} -->
  138. <u-button class="app-buttom" type="primary" @click="handleSubmit('提交')" shape="circle"> {{ form.isRegularlySend == 1 &&form.reportStatus!=1 ? "保 存" : "确 定" }} </u-button>
  139. </view>
  140. </view>
  141. <u-datetime-picker :show="timeShow" v-model="timeValue" mode="datetime" :closeOnClickOverlay="true" @cancel="timeShow = false" @confirm="timeConfirm"></u-datetime-picker>
  142. <u-modal :show="modalShow" title="" :confirmText="'确定'" :cancelText="'取消'" :zoom="false" :showCancelButton="true" @confirm="modalConfirm" @cancel="modalShow = false">
  143. <view class="slot-content" style="max-height: 45vh;overflow:auto">
  144. <view v-if="projectsList.length > 0">
  145. <u-checkbox-group v-model="projectsCheck" placement="row" :size="14" style="max-height: 100%; overflow: auto">
  146. <view class="checkbox-group-title">最近使用</view>
  147. <block v-for="(item, index) in projectsList">
  148. <u-checkbox v-if="item.submissions>0"
  149. :customStyle="{ marginBottom: '8px', width: '50%' }"
  150. :label="item.projectName+' ('+item.submissions+'次)'"
  151. :name="item.id"
  152. :activeColor="proxy.$settingStore.themeColor.color"
  153. >
  154. </u-checkbox>
  155. </block>
  156. <u-line class="u-line" color="info" style="margin:10px 0"></u-line>
  157. <view class="checkbox-group-title">其他</view>
  158. <block v-for="(item, index) in projectsList">
  159. <u-checkbox v-if="!item.submissions"
  160. :customStyle="{ marginBottom: '8px', width: '50%' }"
  161. :label="item.projectName"
  162. :name="item.id"
  163. :activeColor="proxy.$settingStore.themeColor.color"
  164. >
  165. </u-checkbox>
  166. </block>
  167. </u-checkbox-group>
  168. <!-- <u-checkbox-group v-else v-model="projectsCheck" placement="row" :size="14" style="max-height: 100%; overflow: auto">
  169. <u-checkbox
  170. :customStyle="{ marginBottom: '8px', width: '50%' }"
  171. v-for="(item, index) in projectsList"
  172. :key="index"
  173. :label="item.projectName"
  174. :name="item.id"
  175. :activeColor="proxy.$settingStore.themeColor.color"
  176. >
  177. </u-checkbox>
  178. </u-checkbox-group> -->
  179. </view>
  180. <view v-else>请联系项目管理人员给您分配项目后重试!</view>
  181. </view>
  182. </u-modal>
  183. </template>
  184. <script setup>
  185. /*----------------------------------依赖引入-----------------------------------*/
  186. import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  187. import { ref, reactive, computed, getCurrentInstance, toRefs, inject, watchEffect, watch } from "vue";
  188. /*----------------------------------接口引入-----------------------------------*/
  189. import { projectApi } from "@/api/business/project.js";
  190. import { dUserList } from "@/api/system/user.js";
  191. /*----------------------------------组件引入-----------------------------------*/
  192. import avatarList from "../../components/avatarList.vue";
  193. /*----------------------------------store引入-----------------------------------*/
  194. import { systemStores } from "@/store/modules/index";
  195. /*----------------------------------公共方法引入-----------------------------------*/
  196. import { storageSystem } from "@/utils/storage"; // 公共方法引用
  197. /*----------------------------------公共变量-----------------------------------*/
  198. const { proxy } = getCurrentInstance();
  199. const systemStore = systemStores();
  200. const props = defineProps({
  201. projectList: {
  202. type: Object,
  203. default: {},
  204. },
  205. });
  206. /*----------------------------------变量声明-----------------------------------*/
  207. const modal = reactive({
  208. timeShow: false,
  209. timeValue: Number(new Date()),
  210. modalShow: false,
  211. });
  212. const state = reactive({
  213. form: {
  214. reportDate: null,
  215. tomorrowPlan: "",
  216. ccTo: "",
  217. coordinateWork: null,
  218. workContents: [],
  219. sendDingTalk: 1,
  220. isRegularlySend: 0,
  221. timingTime: null,
  222. reportImage: [],
  223. reportFile: [],
  224. },
  225. projectsCheck: [],
  226. projectsList: [],
  227. userList: [],
  228. userDate: [],
  229. saveTime: "",
  230. });
  231. const { timeShow, timeValue, modalShow } = toRefs(modal);
  232. const { form, projectsCheck, projectsList, userList, userDate, saveTime,reportFile } = toRefs(state);
  233. /**
  234. * @初始化
  235. */
  236. function init() {
  237. dUserList().then((res) => {
  238. state.userDate = res.data;
  239. });
  240. }
  241. /** 时间选择器确定按钮点击事件 */
  242. function timeConfirm(e) {
  243. state.form.timingTime = proxy.$time.getFormatterDate(e.value);
  244. modal.timeShow = false;
  245. }
  246. /** 开关按钮change事件 */
  247. function switchChage(e, key) {
  248. state.form[key] = e == true ? 1 : 0;
  249. if (key === "isRegularlySend") {
  250. state.form.timingTime = null;
  251. }
  252. realTimeSaving();
  253. }
  254. /** 添加人员按钮事件 */
  255. function insertUsers() {
  256. //将人员选中数据传入store中
  257. systemStore.mallList.activeUserList = state.userList;
  258. proxy.$tab.navigateTo(`/pages/business/common/projectMange/mall/index?number=200&type=3`);
  259. }
  260. /** 删除人员按钮事件 */
  261. function deleteUsers(index) {
  262. if (state.form.reportStatus == 1) {
  263. console.log("已发送不可修改抄送人");
  264. return;
  265. }
  266. state.userList.splice(index, 1);
  267. realTimeSaving();
  268. }
  269. /** 添加项目按钮事件 */
  270. function insertProjects() {
  271. modal.modalShow = true;
  272. projectApi()
  273. .ProjectsSelect()
  274. .then((requset) => {
  275. state.projectsList = requset.data;
  276. });
  277. }
  278. /** 实时保存填写数据 */
  279. function realTimeSaving() {
  280. if(!state.form.id){
  281. state.saveTime = proxy.$time.formatterDate(new Date(), "hh:mm");
  282. storageSystem.set("project", state);
  283. }
  284. }
  285. /** 弹窗确定 */
  286. function modalConfirm() {
  287. var newWorkContents = JSON.parse(JSON.stringify(state.form.workContents));
  288. state.form.workContents = [];
  289. state.projectsCheck.forEach((e) => {
  290. state.form.workContents.push({
  291. projectId: e,
  292. projectName: proxy.$common.mapping("projectName", "id", e, state.projectsList),
  293. workTime: "",
  294. workContent: "",
  295. });
  296. });
  297. newWorkContents.forEach((e) => {
  298. state.form.workContents.forEach((f) => {
  299. if (e.projectId == f.projectId) {
  300. f.workTime = e.workTime;
  301. f.workContent = e.workContent;
  302. }
  303. });
  304. });
  305. modal.modalShow = false;
  306. // realTimeSaving();
  307. }
  308. /**
  309. * @图片上传成功回调
  310. */
  311. function uploadSuccessChange(e) {
  312. state.form.reportImage.push({
  313. name: e.name,
  314. url: e.url,
  315. })
  316. realTimeSaving()
  317. }
  318. /**
  319. * @图片删除回调
  320. */
  321. function uploadDeleteChange(e) {
  322. state.form.reportImage = e;
  323. realTimeSaving()
  324. }
  325. /**
  326. * @文件上传
  327. */
  328. function delectFile(param){
  329. state.form.reportFile = state.form.reportFile.filter(function (item) {
  330. return item.name!=param.name;
  331. });
  332. realTimeSaving()
  333. }
  334. /**
  335. * @文件删除
  336. */
  337. function selectUpload(e) {
  338. console.log('上传:', e)
  339. e.tempFilePaths.forEach((item,index) => {
  340. uni.uploadFile({
  341. url: 'http://172.16.120.165:801/dev-api/service-file/upload',
  342. filePath: item,
  343. name: 'file',
  344. success: (uploadFileRes) => {
  345. state.form.reportFile.push(JSON.parse(uploadFileRes.data).data)
  346. realTimeSaving()
  347. },
  348. fail: (err) => {
  349. console.log(err);
  350. }
  351. })
  352. })
  353. }
  354. // function delectUpload(e){
  355. // console.log(e)
  356. // }
  357. // function uploadSuccess(e) {
  358. // console.log('上传成功', e)
  359. // }
  360. // function uploadFail(e) {
  361. // console.log('上传失败:', e)
  362. // }
  363. /** 提交 */
  364. function handleSubmit() {
  365. state.form.sendDingTalk == true ? 1 : 0;
  366. state.form.id = state.form.id ? Number(state.form.id) : "";
  367. state.form.ccTo = state.userList.map((obj) => `${obj.id}`).join(",");
  368. state.form.reportDate = proxy.$time.formatterDate(new Date(), "yyyy-MM-dd");
  369. state.form.workContents.forEach((e) => {
  370. e.workTime = Number(e.workTime);
  371. });
  372. state.form.reportImage=JSON.stringify(state.form.reportImage);
  373. state.form.reportFile=JSON.stringify(state.form.reportFile);
  374. projectApi()
  375. .ReportInsert(state.form)
  376. .then((requset) => {
  377. proxy.$tab.redirectTo("/pages/business/common/projectMange/record/index"); //返回到需要执行方法的页面
  378. // state.form.workContents = [];
  379. // state.form.tomorrowPlan = "";
  380. // state.form.coordinateWork = null;
  381. // state.form.isRegularlySend = 0;
  382. // state.form.timingTime = null;
  383. // state.form.reportImage=[];
  384. // state.form.reportFile=[];
  385. // storageSystem.set("project", state);
  386. }).catch((err) => {
  387. state.form.reportImage=JSON.parse(state.form.reportImage)
  388. state.form.reportFile=JSON.parse(state.form.reportFile)
  389. });;
  390. }
  391. watch(
  392. () => props.projectList,
  393. (val) => {
  394. state.userList = [];
  395. state.projectsCheck = [];
  396. state.projectsList = [];
  397. state.form.reportImage = [];
  398. state.form.reportFile = [];
  399. Object.keys(props.projectList).forEach((key) => {
  400. state.form[key] = props.projectList[key];
  401. });
  402. state.form.reportImage=state.form.reportImage?JSON.parse(state.form.reportImage):[];
  403. state.form.reportFile=state.form.reportFile?JSON.parse(state.form.reportFile):[];
  404. state.form.workContents.forEach((e) => {
  405. state.projectsCheck.push(e.projectId);
  406. });
  407. var ccTo = state.form.ccTo.length > 0 ? state.form.ccTo.split(",").map((num) => Number(num)) : [];
  408. // setTimeout(function () {
  409. state.userDate.forEach((e) => {
  410. if (ccTo.includes(e.userId)) {
  411. state.userList.push({
  412. address: e.address,
  413. avatar: e.avatar,
  414. deptId: e.deptId,
  415. email: e.email,
  416. id: e.userId,
  417. label: e.nickName,
  418. nickName: e.nickName,
  419. phonenumber: e.phonenumber,
  420. post: e.post,
  421. sex: e.sex,
  422. userId: e.userId,
  423. userName: e.userName,
  424. });
  425. }
  426. });
  427. // }, 300);
  428. if(!state.form.id){
  429. storageSystem.set("project", state);
  430. }
  431. }
  432. );
  433. onReady(() => {});
  434. onShow(() => {
  435. init();
  436. //循环将缓存数据遍历
  437. if(!state.form.id){
  438. var storages = storageSystem.get("project");
  439. Object.keys(storages).forEach((key) => {
  440. state[key] = storages[key];
  441. });
  442. }
  443. // 监听组件返回数据
  444. uni.$on("UserMall", function (value) {
  445. state.userList = value;
  446. if(!state.form.id){
  447. realTimeSaving();
  448. }
  449. });
  450. });
  451. onLoad((options) => {
  452. if (options.id) {
  453. state.form.id = options.id;
  454. } else {
  455. state.form.id = "";
  456. }
  457. });
  458. onUnload(() => {
  459. uni.$off("UserMall"); //将值删除监听器
  460. });
  461. </script>
  462. <style lang="scss" >
  463. :deep(.uni-file-picker__lists, .is-text-box){
  464. display:none!important;
  465. opacity:0!important;
  466. height:0!important;
  467. }
  468. </style>
  469. <style lang="scss" scoped>
  470. .checkbox-group-title{
  471. display:block;width:100%;
  472. font-size:16px;
  473. font-weight:bold;
  474. note-color: #909399;
  475. margin-bottom:10px;
  476. }
  477. :deep() {
  478. .u-cell__body {
  479. color: #000000;
  480. font-size: 12px;
  481. padding: 10px 0px !important;
  482. }
  483. .u-collapse-item__content {
  484. overflow: auto;
  485. }
  486. .u-collapse-item__content__text {
  487. padding: 0;
  488. }
  489. .u-cell__left-icon-wrap {
  490. margin: 0;
  491. }
  492. }
  493. .content-area {
  494. &-title {
  495. text-align: right;
  496. color: #909399;
  497. }
  498. }
  499. </style>