diff --git a/src/pages/processCenter/pages/creatProcess/bzqdfb/step1-1.vue b/src/pages/processCenter/pages/creatProcess/bzqdfb/step1-1.vue index 161d06192..ab09a65c8 100644 --- a/src/pages/processCenter/pages/creatProcess/bzqdfb/step1-1.vue +++ b/src/pages/processCenter/pages/creatProcess/bzqdfb/step1-1.vue @@ -1064,6 +1064,7 @@ export default { //保存事件 handleSave() { this.saveLoading = true; + this.listForm.fileName = this.fileInfoList let _formData = new FormData(); _formData.append("id", this.bpnId || ""); _formData.append("createUser", this.$store.getters.userInfo.userId); @@ -1089,6 +1090,7 @@ export default { this.$message.warning("标准不能为空"); } else { this.listForm.commentText = this.commentText + this.listForm.fileName = this.fileInfoList var json = Object.assign(this.listForm, this.roleForm); this.$refs["qdfbForm"].validate((valid) => { if (valid) { @@ -1126,14 +1128,11 @@ export default { }, // 删除上传的文件 delFileInfo(file, fileList) { - let middle = []; - let files = []; - fileList.forEach(item => { - middle.push(item.name); - files.push(item.response.data.id); - }); - this.fileListName = middle; - this.fileIds = files; + this.fileInfoList.forEach((item, index) => { + if (item.name === file.name || item.id === file.id ) { + this.fileInfoList.splice(index,1) + } + }) }, fileUpload() { this.fileMadel = true; @@ -1141,24 +1140,7 @@ export default { // 上传文件成功回调 uploadBackSuccess(res, file, fileList) { if (res.ok) { - let middle = []; - fileList.forEach(item => { - middle.push(item.name); - }); - this.fileListName = middle; - this.fileIds.push(file.response.data.id); - // this.listForm.fileName = this.fileListName.join(','); - // this.listForm.fileId = this.fileIds.join(','); - // if (this.listForm.fileName === null || this.listForm.fileName === undefined) { - // this.listForm.fileName = this.fileListName.join(","); - // } else { - // this.listForm.fileName = this.listForm.fileName + "," + this.fileListName.join(","); - // } - // if (this.listForm.fileId === null || this.listForm.fileId === undefined) { - // this.listForm.fileId = this.fileIds.join(","); - // } else { - // this.listForm.fileId = this.listForm.fileId + "," + this.fileIds.join(","); - // } + this.fileInfoList.push(res.data) this.$message.success("上传成功"); } else { this.$message.error(res.message); @@ -1290,26 +1272,39 @@ export default { //选择清单确定事件 OkDrawer() { if (this.selectedList.length === 1) { - let deposit = new Map(); - this.sarAccessListDatas.forEach(item => { - deposit.set(item.id, item); - }); - let bringData = []; - for (let i = 0; i < this.selectedList.length; i++) { - bringData.push(deposit.get(this.selectedList[i])); + this.listForm.standId = this.selectedList[0].id; + this.listForm.listName = this.selectedList[0].detailedListName; + this.listForm.descriptionList = this.selectedList[0].remark; + // 将查询出的文件名字和id组合成数组 + if(this.selectedList[0].fileName !== null) { + let textName = this.selectedList[0].fileName.split(',').map(item => { + return { + name: item + } + }) + let textId = this.selectedList[0].fileIds.split(',').map(item => { + return { + id: item + } + }) + textName.forEach(item => { + this.$set(item, 'id', '') + }) + for (let i = 0; i< textName.length; i++) { + textName[i].id = textId[i].id + } + this.fileInfoList = textName + } else { + this.fileInfoList = [] } - this.listForm.standId = bringData[0].id; - this.listForm.listName = bringData[0].detailedListName; - this.listForm.descriptionList = bringData[0].remark; - this.listForm.fileId = bringData[0].fileIds; - this.listForm.fileName = bringData[0].fileName; this.ListModel = false; + this.$http.get("sarLawsAttrDetailedList/sar-laws-attr-detailed-list/selectLawsById", - { id: bringData[0].id, page: this.page, Size: this.pageSize }, { + { id: this.selectedList[0].id, page: this.page, Size: this.pageSize }, { _this: this }, res => { - if (res.data.records == null) { - res.data.records = []; + if (res.data === null) { + this.dataList = []; } this.dataList = res.data.records; this.dataList.forEach(item => { @@ -1321,7 +1316,7 @@ export default { this.$set(item, "ZCCSSRQ", item.zccssrqgj); } }) - this.listForm.dataList = res.data; + this.listForm.dataList = res.data.records; let formId = []; this.dataList.map(item => { formId.push(item.id); @@ -1339,7 +1334,7 @@ export default { selectListChange(data) { this.selectedList = []; for (let i = 0; i < data.length; i++) { - this.selectedList.push(data[i].id); + this.selectedList.push(data[0]); } }, //标准表格选择框改变 diff --git a/src/pages/processCenter/pages/creatProcess/bzqdfb/step1-3.vue b/src/pages/processCenter/pages/creatProcess/bzqdfb/step1-3.vue index 29e3b1b73..3c0173b7e 100644 --- a/src/pages/processCenter/pages/creatProcess/bzqdfb/step1-3.vue +++ b/src/pages/processCenter/pages/creatProcess/bzqdfb/step1-3.vue @@ -37,26 +37,21 @@ > - - {{ item.name }} - - - - - - 暂无数据 - + + + 点击上传 + + @@ -479,7 +474,7 @@ export default { this.dataList = mes.form.dataList; this.commentText = mes.commentText; this.prcNum = mes.prcNum - this.fileIds = mes.form.fileId; + this.fileInfoList = mes.form.fileName; this.getFileInfo(); this.processTable(); }); @@ -652,13 +647,16 @@ export default { }, // 删除上传的文件 delFileInfo (file, fileList) { - this.fileInfoList = fileList + this.fileInfoList.forEach((item, index) => { + if (item.name === file.name || item.id === file.id ) { + this.fileInfoList.splice(index,1) + } + }) }, // 上传文件成功回调 uploadBackSuccess (res, file, fileList) { if (res.ok) { - this.fileInfoList = fileList - this.fileInfoList[this.fileInfoList.length - 1].id = res.data.id + this.fileInfoList.push(res.data) this.$message.success('上传成功') } else { this.$message.error(res.message) @@ -666,8 +664,38 @@ export default { } }, //上传之前的钩子 - beforeUpload () { - + //上传之前的钩子 + beforeUpload (file) { + var filename = file.name; + // this.listForm.fileName = this.listForm.fileName + ',' + file.name + var index1 = filename.lastIndexOf("."); + var index2 = filename.length; + var fileSuffix = filename.substring(index1, index2); + //把后缀转大写 + if (fileSuffix !== undefined && fileSuffix !== null) { + fileSuffix = fileSuffix.toUpperCase(); + } + // 判断上传文件格式 + if (fileSuffix === ".PDF" || fileSuffix === ".DOC" || fileSuffix === ".DOCX" || fileSuffix === ".PPT" + || fileSuffix === ".PPTX" || fileSuffix === ".XLS" || fileSuffix === ".XLSX" + || fileSuffix === ".PNG" || fileSuffix === ".JPG" || fileSuffix === ".JPEG") { + return true; + } else { + this.$message.error("文件" + file.name + "格式不正确,请上传pdf、doc、docx、ppt、pptx、xls、xlsx、png、jpg、jpeg等文件"); + return false; + } + // 判断文件上传大小 + if (file.size / 1024 / 1024 > 300) { + this.$message.warning("文件" + file.name + "大小不能超过300M"); + return false; + } + return true; + }, + handleOnPreview(file) { + let attId = file.id + if (attId != null && attId !== "") { + window.location.href = "/api/att/attFile/downloadFileForSar?fileId=" + attId; + } }, //保存事件 handleSave() { diff --git a/src/pages/processCenter/pages/creatProcess/bzqdfb/step1.vue b/src/pages/processCenter/pages/creatProcess/bzqdfb/step1.vue index 29e7e318c..1ff1baf56 100644 --- a/src/pages/processCenter/pages/creatProcess/bzqdfb/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/bzqdfb/step1.vue @@ -50,23 +50,20 @@ - - {{ listForm.fileName }} - - - 点击上传 - - - + + + 点击上传 + + @@ -108,7 +105,8 @@ label="标准号"> {{ scope.row.standSortShow }} {{ scope.row.standNumber + @click="handlePreview(scope.row)">{{ scope.row.standSortShow }} {{ + scope.row.standNumber }}-{{ scope.row.standYear }} {{ scope.row.standSortShow }} {{ scope.row.standNumber }} @@ -211,20 +209,20 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -324,7 +322,8 @@ > {{ - scope.row.detailedListName }} + scope.row.detailedListName + }} {{ scope.row.detailedListVision + v-if="scope.row.detailedListVision != null && scope.row.detailedListVision !== ''">{{ + scope.row.detailedListVision }} @@ -391,7 +391,8 @@ > {{ - scope.row.detailedListName }} + scope.row.detailedListName + }} {{ scope.row.detailedListVision + v-if="scope.row.detailedListVision != null && scope.row.detailedListVision !== ''">{{ + scope.row.detailedListVision }} @@ -419,9 +421,9 @@ label="更新时间" sortable align="center"> - - {{ scope.row.updateTime ? $moment(scope.row.updateTime).format("YYYY-MM-DD") : "" }} - + + {{ scope.row.updateTime ? $moment(scope.row.updateTime).format("YYYY-MM-DD") : "" }} + {{ - scope.row.detailedListName }} + scope.row.detailedListName + }} {{ scope.row.detailedListVision + v-if="scope.row.detailedListVision != null && scope.row.detailedListVision !== ''">{{ + scope.row.detailedListVision }} @@ -593,7 +597,8 @@ scope.row.standNumber }}-{{ scope.row.standYear }} {{ - scope.row.standSortShow }} + scope.row.standSortShow + }} {{ scope.row.standNumber }} @@ -705,7 +710,7 @@ import ProcessHeader from "../../components/ProcessHeader"; import ProcessFooter from "../../components/ProcessFooter"; import ProcessTitle from "../../components/ProcessTitle"; -import { saveTaskFirst } from "api/process"; +import {saveTaskFirst} from "api/process"; import seeDatalis from "@/pages/localTool/standContrast/pages/seeDatalis"; export default { @@ -755,21 +760,21 @@ export default { }, formRules: { listType: [ - { required: true, message: "请选择清单类型", trigger: "change" } + {required: true, message: "请选择清单类型", trigger: "change"} ], listName: [ - { required: true, message: "请填写清单名称", trigger: "change" } + {required: true, message: "请填写清单名称", trigger: "change"} ] }, roleFormRules: { dockUserName: [ - { required: true, message: "请选择会签责任人", trigger: "change" } + {required: true, message: "请选择会签责任人", trigger: "change"} ], ministerUserName: [ - { required: true, message: "请选择修订责任人", trigger: "change" } + {required: true, message: "请选择修订责任人", trigger: "change"} ], directorUserName: [ - { required: true, message: "请选择审批责任人", trigger: "change" } + {required: true, message: "请选择审批责任人", trigger: "change"} ] }, dataList: [],//清单里的标准数据 @@ -913,14 +918,14 @@ export default { _this: this }, res => { this.sarAccessListDatas = res.data.records; - this.sarAccessListDatas.forEach(item =>{ + this.sarAccessListDatas.forEach(item => { // 适用车型转换 if (item.carType !== null) { let k = (item.carType || "").split(',') for (let i in this.energyKindOptions) { - for (let m = 0; m< k.length; m++) { + for (let m = 0; m < k.length; m++) { if (this.energyKindOptions[i].value === k[m]) { - k[m] = this.energyKindOptions[i].label + k[m] = this.energyKindOptions[i].label } item.carType = k.join(',') } @@ -984,12 +989,12 @@ export default { }, res => { this.standardData = res.data.list; this.standardData.forEach(item => { - if(item.attrInfoMap === null){ - this.$set(item, "ZCCSSRQ", ''); - this.$set(item, "XCXSSRQ", ''); - }else{ - this.$set(item, "ZCCSSRQ", item.attrInfoMap.ZCCSSRQ); - this.$set(item, "XCXSSRQ", item.attrInfoMap.XCXSSRQ); + if (item.attrInfoMap === null) { + this.$set(item, "ZCCSSRQ", ''); + this.$set(item, "XCXSSRQ", ''); + } else { + this.$set(item, "ZCCSSRQ", item.attrInfoMap.ZCCSSRQ); + this.$set(item, "XCXSSRQ", item.attrInfoMap.XCXSSRQ); } }) this.totalNo = res.data.count; @@ -1036,6 +1041,7 @@ export default { //保存事件 handleSave() { this.saveLoading = true; + this.listForm.fileName = this.fileInfoList let _formData = new FormData(); _formData.append("id", this.bpnId || ""); _formData.append("createUser", this.$store.getters.userInfo.userId); @@ -1061,13 +1067,14 @@ export default { this.$message.warning("标准不能为空"); } else { this.listForm.commentText = this.commentText + this.listForm.fileName = this.fileInfoList var json = Object.assign(this.listForm, this.roleForm); this.$refs["qdfbForm"].validate((valid) => { if (valid) { this.$refs["Form"].validate((valid) => { if (valid) { this.isSubmit = true - this.$http.get("lawss/activiti/startProcess", { type: "4" }, { + this.$http.get("lawss/activiti/startProcess", {type: "4"}, { _this: this }, res => { if (res.ok) { @@ -1098,14 +1105,11 @@ export default { }, // 删除上传的文件 delFileInfo(file, fileList) { - let middle = []; - let files = []; - fileList.forEach(item => { - middle.push(item.name); - files.push(item.response.data.id); - }); - this.fileListName = middle; - this.fileIds = files; + this.fileInfoList.forEach((item, index) => { + if (item.name === file.name || item.id === file.id ) { + this.fileInfoList.splice(index,1) + } + }) }, fileUpload() { this.fileMadel = true; @@ -1113,24 +1117,7 @@ export default { // 上传文件成功回调 uploadBackSuccess(res, file, fileList) { if (res.ok) { - let middle = []; - fileList.forEach(item => { - middle.push(item.name); - }); - this.fileListName = middle; - this.fileIds.push(file.response.data.id); - // this.listForm.fileName = this.fileListName.join(','); - // this.listForm.fileId = this.fileIds.join(','); - if (this.listForm.fileName === null || this.listForm.fileName === undefined || this.listForm.fileName === '') { - this.listForm.fileName = this.fileListName.join(","); - } else { - this.listForm.fileName = this.listForm.fileName + "," + this.fileListName.join(","); - } - if (this.listForm.fileId === null || this.listForm.fileId === undefined || this.listForm.fileName === '') { - this.listForm.fileId = this.fileIds.join(","); - } else { - this.listForm.fileId = this.listForm.fileId + "," + this.fileIds.join(","); - } + this.fileInfoList.push(res.data) this.$message.success("上传成功"); } else { this.$message.error(res.message); @@ -1262,30 +1249,39 @@ export default { //选择清单确定事件 OkDrawer() { if (this.selectedList.length === 1) { - let deposit = new Map(); - this.sarAccessListDatas.forEach(item => { - deposit.set(item.id, item); - }); - let bringData = []; - for (let i = 0; i < this.selectedList.length; i++) { - bringData.push(deposit.get(this.selectedList[i])); - } - this.listForm.standId = bringData[0].id; - this.listForm.listName = bringData[0].detailedListName; - this.listForm.descriptionList = bringData[0].remark; - this.listForm.fileId = bringData[0].fileIds; - if(bringData[0].fileName === null ){ - this.listForm.fileName = '' + this.listForm.standId = this.selectedList[0].id; + this.listForm.listName = this.selectedList[0].detailedListName; + this.listForm.descriptionList = this.selectedList[0].remark; + // 将查询出的文件名字和id组合成数组 + if(this.selectedList[0].fileName !== null) { + let textName = this.selectedList[0].fileName.split(',').map(item => { + return { + name: item + } + }) + let textId = this.selectedList[0].fileIds.split(',').map(item => { + return { + id: item + } + }) + textName.forEach(item => { + this.$set(item, 'id', '') + }) + for (let i = 0; i< textName.length; i++) { + textName[i].id = textId[i].id + } + this.fileInfoList = textName } else { - this.listForm.fileName = bringData[0].fileName; + this.fileInfoList = [] } this.ListModel = false; + this.$http.get("sarLawsAttrDetailedList/sar-laws-attr-detailed-list/selectLawsById", - { id: bringData[0].id, page: this.page, Size: this.pageSize }, { + { id: this.selectedList[0].id, page: this.page, Size: this.pageSize }, { _this: this }, res => { - if (res.data.records == null) { - res.data.records = []; + if (res.data === null) { + this.dataList = []; } this.dataList = res.data.records; this.dataList.forEach(item => { @@ -1315,7 +1311,7 @@ export default { selectListChange(data) { this.selectedList = []; for (let i = 0; i < data.length; i++) { - this.selectedList.push(data[i].id); + this.selectedList.push(data[0]); } }, //标准表格选择框改变 @@ -1349,7 +1345,6 @@ export default { }); }, pageChange(page) { - console.log(page); this.page = page; this.selectionList(); }, diff --git a/src/pages/processCenter/pages/creatProcess/bzqdfb/step2.vue b/src/pages/processCenter/pages/creatProcess/bzqdfb/step2.vue index e53ece967..83d65f7c4 100644 --- a/src/pages/processCenter/pages/creatProcess/bzqdfb/step2.vue +++ b/src/pages/processCenter/pages/creatProcess/bzqdfb/step2.vue @@ -315,7 +315,6 @@ export default { taskIds: this.taskIds, pId: this.pId }).then(res => { - console.log(res.mesg); if (res) { const processForm = JSON.parse(res.mesg); this.getFormFieldList(processForm); @@ -330,15 +329,16 @@ export default { getFormFieldList(item) { this.$nextTick(() => { this.listForm = JSON.parse(JSON.stringify(item)); - console.log(this.listForm.fileName); this.listForm.prcNum = this.prcNum; this.listForm.prcName = this.prcName; this.listForm["id"] = item.id; this.dataList = item.dataList; this.listForm.jlUserId = item.jlUserId; this.listForm.zrUserId = item.zrUserId; - this.fileIds = item.fileId; - this.getFileInfo(); + item.fileName.forEach(itemId => { + this.fileIds = itemId.id + this.getFileInfo(); + }); }); }, // 请求上传的文件信息 diff --git a/src/pages/processCenter/pages/creatProcess/bzqdfb/step3.vue b/src/pages/processCenter/pages/creatProcess/bzqdfb/step3.vue index 04d2e535d..b6bb64a81 100644 --- a/src/pages/processCenter/pages/creatProcess/bzqdfb/step3.vue +++ b/src/pages/processCenter/pages/creatProcess/bzqdfb/step3.vue @@ -52,26 +52,21 @@ > - - {{ item.name }} - - - - - - 暂无数据 - + + + 点击上传 + + @@ -611,7 +606,7 @@ export default { } }, // 请求上传的文件信息 - getFileInfo() { + /* getFileInfo() { this.$http.get("att/attFile/getMultiFileInfos", { fileIds: this.fileIds }, { @@ -630,7 +625,7 @@ export default { }); }, e => { }); - }, + },*/ /** * @Description: 点击下载 */ @@ -655,13 +650,16 @@ export default { }, // 删除上传的文件 delFileInfo (file, fileList) { - this.fileInfoList = fileList + this.fileInfoList.forEach((item, index) => { + if (item.name === file.name || item.id === file.id ) { + this.fileInfoList.splice(index,1) + } + }) }, // 上传文件成功回调 uploadBackSuccess (res, file, fileList) { if (res.ok) { - this.fileInfoList = fileList - this.fileInfoList[this.fileInfoList.length - 1].id = res.data.id + this.fileInfoList.push(res.data) this.$message.success('上传成功') } else { this.$message.error(res.message) @@ -669,8 +667,37 @@ export default { } }, //上传之前的钩子 - beforeUpload () { - + beforeUpload (file) { + var filename = file.name; + // this.listForm.fileName = this.listForm.fileName + ',' + file.name + var index1 = filename.lastIndexOf("."); + var index2 = filename.length; + var fileSuffix = filename.substring(index1, index2); + //把后缀转大写 + if (fileSuffix !== undefined && fileSuffix !== null) { + fileSuffix = fileSuffix.toUpperCase(); + } + // 判断上传文件格式 + if (fileSuffix === ".PDF" || fileSuffix === ".DOC" || fileSuffix === ".DOCX" || fileSuffix === ".PPT" + || fileSuffix === ".PPTX" || fileSuffix === ".XLS" || fileSuffix === ".XLSX" + || fileSuffix === ".PNG" || fileSuffix === ".JPG" || fileSuffix === ".JPEG") { + return true; + } else { + this.$message.error("文件" + file.name + "格式不正确,请上传pdf、doc、docx、ppt、pptx、xls、xlsx、png、jpg、jpeg等文件"); + return false; + } + // 判断文件上传大小 + if (file.size / 1024 / 1024 > 300) { + this.$message.warning("文件" + file.name + "大小不能超过300M"); + return false; + } + return true; + }, + handleOnPreview(file) { + let attId = file.id + if (attId != null && attId !== "") { + window.location.href = "/api/att/attFile/downloadFileForSar?fileId=" + attId; + } }, getData() { return new Promise((resolve, reject) => { @@ -701,14 +728,12 @@ export default { this.listForm.applyUpdUserId = item.applyUpdUserId this.listForm.jlUserId = item.jlUserId this.listForm.zrUserId = item.zrUserId - this.fileIds = item.fileId; - this.getFileInfo(); + this.fileInfoList = item.fileName } else { this.listForm = item.form this.dataList = item.form.dataList this.listForm.dataList = item.form.dataList - this.fileIds = item.form.fileId; - this.getFileInfo(); + this.fileInfoList = item.form.fileName } }) }, diff --git a/src/pages/processCenter/pages/creatProcess/bzqdfb/step4.vue b/src/pages/processCenter/pages/creatProcess/bzqdfb/step4.vue index f1966e1a7..ca068a8c6 100644 --- a/src/pages/processCenter/pages/creatProcess/bzqdfb/step4.vue +++ b/src/pages/processCenter/pages/creatProcess/bzqdfb/step4.vue @@ -375,13 +375,15 @@ export default { this.listForm.prcName = this.prcName; this.listForm["id"] = item.id; this.listForm.dataList = item.dataList; + console.log(item.dataList) this.dataList = item.dataList; this.listForm.applyUpdUserId = item.applyUpdUserId; this.listForm.jlUserId = item.jlUserId; this.listForm.zrUserId = item.zrUserId; - this.fileIds = item.fileId; - console.log(this.fileIds); - this.getFileInfo(); + item.fileName.forEach(itemId => { + this.fileIds = itemId.id + this.getFileInfo(); + }) }); }, // 请求上传的文件信息 diff --git a/src/pages/processCenter/pages/creatProcess/wfhxzg/step4.vue b/src/pages/processCenter/pages/creatProcess/wfhxzg/step4.vue index 0bce9bc75..ffb4d7f5c 100644 --- a/src/pages/processCenter/pages/creatProcess/wfhxzg/step4.vue +++ b/src/pages/processCenter/pages/creatProcess/wfhxzg/step4.vue @@ -385,7 +385,6 @@ export default { this.fileData = fileList this.fileTextList.forEach((item, index) => { if (item.name === file.name || item.id === file.id ) { - console.log() this.fileTextList.splice(index,1) } })
{{ item.name }} - - -
- {{ listForm.fileName }} - - - 点击上传 - - -