123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569 |
- <template>
- <view class="content-area">
- <view class="content-area-title font12 mtb5 plr10" v-if="!state.form.id">{{state.form.id}}实时保存,保存时间 {{ saveTime }}</view>
- <view class="content-area-item p10 bg-white">
- <view class="font14 weight mb10 required">工作内容</view>
- <u-collapse v-if="form.workContents.length > 0" :accordion="true">
- <u-collapse-item :title="item.projectName + ' ' + (item.workTime ? item.workTime + 'h' : '0h')" :name="item.projectId" v-for="(item, index) in form.workContents" :key="index">
- <u-input
- v-model="item.workTime"
- placeholder="请输入工作耗时"
- placeholderStyle="color:#909399;font-size:12px"
- suffixIcon="h"
- suffixIconStyle="color:#909399;font-size:12px;width:10px"
- border="none"
- type="digit"
- style="padding: 0px; margin: 10px 0"
- @change="realTimeSaving()"
- />
- <u-textarea
- v-model="item.workContent"
- placeholder="请输入工作内容"
- placeholderStyle="color:#909399;font-size:12px"
- confirmType="return"
- :autoHeight="true"
- :maxlength="-1"
- :height="'100%'"
- border="none"
- style="padding: 0px; margin: 10px 0"
- @change="realTimeSaving()"
- ></u-textarea>
- </u-collapse-item>
- </u-collapse>
- <u-button class="mt20" type="primary" style="width: 100px; height: 25px" @click="insertProjects()" shape="circle" icon="plus" size="mini"> 添加项目 </u-button>
- </view>
- <view class="content-area-item mt10 p10 bg-white">
- <view class="font14 weight mb10">明日计划</view>
- <u-textarea
- v-model="form.tomorrowPlan"
- placeholder="请输入"
- placeholderStyle="color:#909399;font-size:12px"
- confirmType="return"
- :autoHeight="true"
- :maxlength="-1"
- :height="'100%'"
- border="none"
- style="padding: 0px"
- @change="realTimeSaving()"
- ></u-textarea>
- </view>
- <view class="content-area-item mt10 p10 bg-white">
- <view class="font14 weight mb10">工作协调</view>
- <u-textarea
- v-model="form.coordinateWork"
- placeholder="请输入"
- placeholderStyle="color:#909399;font-size:12px"
- confirmType="return"
- :autoHeight="true"
- :maxlength="-1"
- :height="'100%'"
- border="none"
- style="padding: 0px"
- @change="realTimeSaving()"
- ></u-textarea>
- </view>
- <view class="content-area-item mt10 p10 bg-white">
- <view class="font14 weight mb10">图片上传</view>
- <oa-upload :uploadCount="5" :uploadList="state.form.reportImage" :uploadListSrc="'url'" @uploadSuccessChange="uploadSuccessChange" @uploadDeleteChange="uploadDeleteChange"></oa-upload>
- </view>
- <view class="content-area-item mt10 p10 bg-white">
- <view class="font14 weight mb10">附件上传</view>
- <uni-file-picker limit="100"
- @select='selectUpload'
- :auto-upload='false'
- 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,'
- file-mediatype="all"
- >
- <u-button class="mt20" type="primary" style="width: 100px; height: 25px" icon="plus" size="mini" shape="circle"> 点击上传 </u-button>
- </uni-file-picker>
- <!-- 文件列表回显 -->
- <br>
- <view v-for="(file, index) in state.form.reportFile" :key="index" style="border-bottom:1px solid #eee;margin:6px;padding:6px;font-size:12px">
- <uni-link :href="file.url" text="file.url">{{file.name}}</uni-link>
- <uni-icons type="closeempty" size="12" style="float:right" @click="delectFile(file)"></uni-icons>
- </view>
- </view>
-
- <view class="content-area-item mt10 p10 bg-white">
- <view class="font14 weight mb10">抄送到人</view>
- <avatarList :userList="userList" @deleteUsers="deleteUsers" />
- <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>
- </view>
- <view class="content-area-item mt10 p10 bg-white">
- <view class="flex">
- <view class="font14 weight">同步钉钉</view>
- <u-switch
- style="margin-left: auto"
- :modelValue="form.sendDingTalk == 0 ? false : true"
- :ctiveColor="proxy.$settingStore.themeColor.color"
- size="20"
- :disabled="form.reportStatus == 1"
- @change="(event) => switchChage(event, 'sendDingTalk')"
- asyncChange
- ></u-switch>
- </view>
- <view class="flex"> </view>
- </view>
- <view class="content-area-item mt10 p10 bg-white" v-if="form.reportStatus != 1">
- <view class="flex">
- <view class="font14 weight">定时发送</view>
- <u-switch
- style="margin-left: auto"
- :modelValue="form.isRegularlySend == 0 ? false : true"
- :ctiveColor="proxy.$settingStore.themeColor.color"
- size="20"
- @change="(event) => switchChage(event, 'isRegularlySend')"
- asyncChange
- ></u-switch>
- </view>
- <view class="flex" v-if="form.isRegularlySend == 0 ? false : true" @click="timeShow = true">
- <u-input
- v-model="form.timingTime"
- placeholder="请选择时间"
- placeholderStyle="color:#909399;font-size:12px"
- suffixIcon="arrow-right"
- suffixIconStyle="color:#909399;font-size:12px;width:10px"
- border="none"
- style="padding: 0px; margin: 10px 0"
- @change="realTimeSaving()"
- disabledColor="transparent"
- disabled
- />
- </view>
- </view>
- </view>
- <view class="app-button">
- <view class="app-button-padding"></view>
- <view class="app-button-fixed">
- <!-- {{ form }} -->
- <u-button class="app-buttom" type="primary" @click="handleSubmit('提交')" shape="circle"> {{ form.isRegularlySend == 1 &&form.reportStatus!=1 ? "保 存" : "确 定" }} </u-button>
- </view>
- </view>
- <u-datetime-picker :show="timeShow" v-model="timeValue" mode="datetime" :closeOnClickOverlay="true" @cancel="timeShow = false" @confirm="timeConfirm"></u-datetime-picker>
- <u-modal :show="modalShow" title="" :confirmText="'确定'" :cancelText="'取消'" :zoom="false" :showCancelButton="true" @confirm="modalConfirm" @cancel="modalShow = false">
- <view class="slot-content" style="max-height: 45vh;overflow:auto">
-
- <view v-if="projectsList.length > 0">
-
- <u-checkbox-group v-model="projectsCheck" placement="row" :size="14" style="max-height: 100%; overflow: auto">
- <view class="checkbox-group-title">最近使用</view>
- <block v-for="(item, index) in projectsList">
- <u-checkbox v-if="item.submissions>0"
- :customStyle="{ marginBottom: '8px', width: '50%' }"
- :label="item.projectName+' ('+item.submissions+'次)'"
- :name="item.id"
- :activeColor="proxy.$settingStore.themeColor.color"
- >
- </u-checkbox>
- </block>
- <u-line class="u-line" color="info" style="margin:10px 0"></u-line>
- <view class="checkbox-group-title">其他</view>
-
- <block v-for="(item, index) in projectsList">
- <u-checkbox v-if="!item.submissions"
- :customStyle="{ marginBottom: '8px', width: '50%' }"
- :label="item.projectName"
- :name="item.id"
- :activeColor="proxy.$settingStore.themeColor.color"
- >
- </u-checkbox>
-
-
-
-
- </block>
-
- </u-checkbox-group>
-
- <!-- <u-checkbox-group v-else v-model="projectsCheck" placement="row" :size="14" style="max-height: 100%; overflow: auto">
- <u-checkbox
- :customStyle="{ marginBottom: '8px', width: '50%' }"
- v-for="(item, index) in projectsList"
- :key="index"
- :label="item.projectName"
- :name="item.id"
- :activeColor="proxy.$settingStore.themeColor.color"
- >
- </u-checkbox>
- </u-checkbox-group> -->
- </view>
-
- <view v-else>请联系项目管理人员给您分配项目后重试!</view>
- </view>
- </u-modal>
- </template>
- <script setup>
- /*----------------------------------依赖引入-----------------------------------*/
- import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
- import { ref, reactive, computed, getCurrentInstance, toRefs, inject, watchEffect, watch } from "vue";
- /*----------------------------------接口引入-----------------------------------*/
- import { projectApi } from "@/api/business/project.js";
- import { dUserList } from "@/api/system/user.js";
- /*----------------------------------组件引入-----------------------------------*/
- import avatarList from "../../components/avatarList.vue";
- /*----------------------------------store引入-----------------------------------*/
- import { systemStores } from "@/store/modules/index";
- /*----------------------------------公共方法引入-----------------------------------*/
- import { storageSystem } from "@/utils/storage"; // 公共方法引用
- /*----------------------------------公共变量-----------------------------------*/
- const { proxy } = getCurrentInstance();
- const systemStore = systemStores();
- const props = defineProps({
- projectList: {
- type: Object,
- default: {},
- },
- });
- /*----------------------------------变量声明-----------------------------------*/
- const modal = reactive({
- timeShow: false,
- timeValue: Number(new Date()),
- modalShow: false,
- });
- const state = reactive({
- form: {
- reportDate: null,
- tomorrowPlan: "",
- ccTo: "",
- coordinateWork: null,
- workContents: [],
- sendDingTalk: 1,
- isRegularlySend: 0,
- timingTime: null,
- reportImage: [],
- reportFile: [],
- },
- projectsCheck: [],
- projectsList: [],
- userList: [],
- userDate: [],
- saveTime: "",
- });
- const { timeShow, timeValue, modalShow } = toRefs(modal);
- const { form, projectsCheck, projectsList, userList, userDate, saveTime,reportFile } = toRefs(state);
- /**
- * @初始化
- */
- function init() {
- dUserList().then((res) => {
- state.userDate = res.data;
- });
- }
- /** 时间选择器确定按钮点击事件 */
- function timeConfirm(e) {
- state.form.timingTime = proxy.$time.getFormatterDate(e.value);
- modal.timeShow = false;
- }
- /** 开关按钮change事件 */
- function switchChage(e, key) {
- state.form[key] = e == true ? 1 : 0;
- if (key === "isRegularlySend") {
- state.form.timingTime = null;
- }
- realTimeSaving();
- }
- /** 添加人员按钮事件 */
- function insertUsers() {
- //将人员选中数据传入store中
- systemStore.mallList.activeUserList = state.userList;
-
- proxy.$tab.navigateTo(`/pages/business/common/projectMange/mall/index?number=200&type=3`);
- }
- /** 删除人员按钮事件 */
- function deleteUsers(index) {
- if (state.form.reportStatus == 1) {
- console.log("已发送不可修改抄送人");
- return;
- }
- state.userList.splice(index, 1);
- realTimeSaving();
- }
- /** 添加项目按钮事件 */
- function insertProjects() {
- modal.modalShow = true;
- projectApi()
- .ProjectsSelect()
- .then((requset) => {
- state.projectsList = requset.data;
- });
- }
- /** 实时保存填写数据 */
- function realTimeSaving() {
- if(!state.form.id){
- state.saveTime = proxy.$time.formatterDate(new Date(), "hh:mm");
- storageSystem.set("project", state);
- }
- }
- /** 弹窗确定 */
- function modalConfirm() {
- var newWorkContents = JSON.parse(JSON.stringify(state.form.workContents));
- state.form.workContents = [];
- state.projectsCheck.forEach((e) => {
- state.form.workContents.push({
- projectId: e,
- projectName: proxy.$common.mapping("projectName", "id", e, state.projectsList),
- workTime: "",
- workContent: "",
- });
- });
- newWorkContents.forEach((e) => {
- state.form.workContents.forEach((f) => {
- if (e.projectId == f.projectId) {
- f.workTime = e.workTime;
- f.workContent = e.workContent;
- }
- });
- });
- modal.modalShow = false;
- // realTimeSaving();
- }
- /**
- * @图片上传成功回调
- */
- function uploadSuccessChange(e) {
- state.form.reportImage.push({
- name: e.name,
- url: e.url,
- })
- realTimeSaving()
- }
- /**
- * @图片删除回调
- */
- function uploadDeleteChange(e) {
- state.form.reportImage = e;
- realTimeSaving()
- }
- /**
- * @文件上传
- */
- function delectFile(param){
- state.form.reportFile = state.form.reportFile.filter(function (item) {
- return item.name!=param.name;
- });
- realTimeSaving()
- }
- /**
- * @文件删除
- */
- function selectUpload(e) {
- console.log('上传:', e)
- e.tempFilePaths.forEach((item,index) => {
- uni.uploadFile({
- url: 'http://172.16.120.165:801/dev-api/service-file/upload',
- filePath: item,
- name: 'file',
- success: (uploadFileRes) => {
- state.form.reportFile.push(JSON.parse(uploadFileRes.data).data)
- realTimeSaving()
- },
- fail: (err) => {
- console.log(err);
- }
- })
- })
- }
- // function delectUpload(e){
- // console.log(e)
- // }
- // function uploadSuccess(e) {
- // console.log('上传成功', e)
- // }
- // function uploadFail(e) {
- // console.log('上传失败:', e)
- // }
- /** 提交 */
- function handleSubmit() {
- state.form.sendDingTalk == true ? 1 : 0;
- state.form.id = state.form.id ? Number(state.form.id) : "";
- state.form.ccTo = state.userList.map((obj) => `${obj.id}`).join(",");
- state.form.reportDate = proxy.$time.formatterDate(new Date(), "yyyy-MM-dd");
- state.form.workContents.forEach((e) => {
- e.workTime = Number(e.workTime);
- });
- state.form.reportImage=JSON.stringify(state.form.reportImage);
- state.form.reportFile=JSON.stringify(state.form.reportFile);
- projectApi()
- .ReportInsert(state.form)
- .then((requset) => {
- proxy.$tab.redirectTo("/pages/business/common/projectMange/record/index"); //返回到需要执行方法的页面
- // state.form.workContents = [];
- // state.form.tomorrowPlan = "";
- // state.form.coordinateWork = null;
- // state.form.isRegularlySend = 0;
- // state.form.timingTime = null;
- // state.form.reportImage=[];
- // state.form.reportFile=[];
- // storageSystem.set("project", state);
- }).catch((err) => {
- state.form.reportImage=JSON.parse(state.form.reportImage)
- state.form.reportFile=JSON.parse(state.form.reportFile)
- });;
- }
- watch(
- () => props.projectList,
- (val) => {
- state.userList = [];
- state.projectsCheck = [];
- state.projectsList = [];
- state.form.reportImage = [];
- state.form.reportFile = [];
-
- Object.keys(props.projectList).forEach((key) => {
- state.form[key] = props.projectList[key];
- });
-
- state.form.reportImage=state.form.reportImage?JSON.parse(state.form.reportImage):[];
- state.form.reportFile=state.form.reportFile?JSON.parse(state.form.reportFile):[];
- state.form.workContents.forEach((e) => {
- state.projectsCheck.push(e.projectId);
- });
- var ccTo = state.form.ccTo.length > 0 ? state.form.ccTo.split(",").map((num) => Number(num)) : [];
- // setTimeout(function () {
- state.userDate.forEach((e) => {
- if (ccTo.includes(e.userId)) {
- state.userList.push({
- address: e.address,
- avatar: e.avatar,
- deptId: e.deptId,
- email: e.email,
- id: e.userId,
- label: e.nickName,
- nickName: e.nickName,
- phonenumber: e.phonenumber,
- post: e.post,
- sex: e.sex,
- userId: e.userId,
- userName: e.userName,
- });
- }
- });
- // }, 300);
- if(!state.form.id){
- storageSystem.set("project", state);
- }
- }
- );
- onReady(() => {});
- onShow(() => {
- init();
- //循环将缓存数据遍历
- if(!state.form.id){
- var storages = storageSystem.get("project");
- Object.keys(storages).forEach((key) => {
- state[key] = storages[key];
- });
- }
-
-
- // 监听组件返回数据
- uni.$on("UserMall", function (value) {
- state.userList = value;
- if(!state.form.id){
- realTimeSaving();
- }
-
- });
- });
- onLoad((options) => {
- if (options.id) {
- state.form.id = options.id;
- } else {
- state.form.id = "";
- }
- });
- onUnload(() => {
- uni.$off("UserMall"); //将值删除监听器
- });
- </script>
- <style lang="scss" >
- :deep(.uni-file-picker__lists, .is-text-box){
- display:none!important;
- opacity:0!important;
- height:0!important;
- }
- </style>
- <style lang="scss" scoped>
- .checkbox-group-title{
- display:block;width:100%;
- font-size:16px;
- font-weight:bold;
- note-color: #909399;
- margin-bottom:10px;
- }
- :deep() {
- .u-cell__body {
- color: #000000;
- font-size: 12px;
- padding: 10px 0px !important;
- }
- .u-collapse-item__content {
- overflow: auto;
- }
- .u-collapse-item__content__text {
- padding: 0;
- }
- .u-cell__left-icon-wrap {
- margin: 0;
- }
- }
- .content-area {
- &-title {
- text-align: right;
- color: #909399;
- }
- }
- </style>
|