-
-
- 标准征求意见流程
- 申请人发起流程
-
-
-
-
-
-
- 基础信息
-
-
-
-
-
-
- 选择标准
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 选择附件
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 流程发起人
-
-
-
-
-
-
-
-
-
-
- 责任部门对接人
-
-
-
-
-
-
-
-
-
-
-
- 标准法规部部长
-
-
-
-
-
-
-
-
-
-
- 技术管理中心主任
-
-
-
-
-
-
-
-
-
-
- 工程研究总院院长
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ 标准征求意见流程
+ 申请人发起流程
+
+
+
+
+
+
+ 基础信息
+
+
+
+
+
+
+ 选择标准
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 选择附件
+
+
+
+
+
+
+ {{ item.fileName }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 流程发起人
+
+
+
+
+
+
+
+
+
+
+ 责任部门对接人
+
+
+
+
+
+
+
+
+
+
+
+ 标准法规部部长
+
+
+
+
+
+
+
+
+
+
+ 技术管理中心主任
+
+
+
+
+
+
+
+
+
+
+ 工程研究总院院长
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/processCenter/pages/creatProcess/bzzqyj/step1.vue b/src/pages/processCenter/pages/creatProcess/bzzqyj/step1.vue
index bf5ddd7f1..dd9019148 100644
--- a/src/pages/processCenter/pages/creatProcess/bzzqyj/step1.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzzqyj/step1.vue
@@ -334,6 +334,7 @@ export default {
standType: '',
standId: '',
fjList: [],
+ fjListName: '',
fjListId: ''
},
formRules: {
@@ -438,7 +439,11 @@ export default {
this.fzlistModel = true
},
handleSelection2 (data) {
- this.addFjList = data
+ if(data.length > 5) {
+ this.$message.warning('最多选择5条附件')
+ } else {
+ this.addFjList = data
+ }
},
closeDrawer2 () {
this.fzlistModel = false
@@ -447,11 +452,14 @@ export default {
enterDrawer2 () {
this.fzlistModel = false
this.form.fjList = this.addFjList
- let idList
- this.addFjList.forEach( item => {
- idList += item.id + ','
+ let idList = []
+ let nameList = []
+ this.addFjList.forEach(item => {
+ idList.push(item.id)
+ nameList.push(item.fileName)
})
- this.form.fjListId = idList
+ this.form.fjListName = nameList.join(',')
+ this.form.fjListId = idList.join(',')
},
// 点击查看
handlePreview (item) {
@@ -633,6 +641,8 @@ export default {
if (res.ok) {
var json = Object.assign(this.form, this.roleForm)
json.commentText = this.commentText
+ json.filesId = this.addFjList
+ json.filesName = this.form.fjListName
this.$http.post('lawss/activiti/completeTask', {
json: JSON.stringify(json),
taskId: res.data,
diff --git a/src/pages/regulatoryRepository/standardForComments/pags/consultationDetails.vue b/src/pages/regulatoryRepository/standardForComments/pags/consultationDetails.vue
index 37267af2f..9f421b5d9 100644
--- a/src/pages/regulatoryRepository/standardForComments/pags/consultationDetails.vue
+++ b/src/pages/regulatoryRepository/standardForComments/pags/consultationDetails.vue
@@ -1,480 +1,537 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
{{ this.$route.query.item.cid }}
-
-
-
-
+
+
+
+
{{ this.$route.query.item.cname || '-' }}
-
-
-
- {{ this.$route.query.item.startTime || '-' }}
-
-
-
- {{ this.$route.query.item.startTime + ' ~ ' + this.$route.query.item.endTime}}
- -
-
-
-
-
- 添加
- 导出
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 编辑
- 删除
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
数据加载中……
+
+
+
+
+
+ {{ file.name }}
+
+
+ -
+
+
+
+ {{ this.$route.query.item.startTime || '-' }}
+
+
+
+ {{ this.$route.query.item.startTime + ' ~ ' + this.$route.query.item.endTime }}
+ -
+
+
+
+
+
+ 添加
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 编辑
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 数据加载中……
+
From 756406ae30ba15338bc49e19559a07d5b602235a Mon Sep 17 00:00:00 2001
From: "Mr.Z" <709235321@qq.com>
Date: Thu, 9 Sep 2021 18:59:59 +0800
Subject: [PATCH 3/3] =?UTF-8?q?=E5=88=86=E8=A7=A3=E5=8D=95=E6=96=B0?=
=?UTF-8?q?=E8=BD=A6=E5=9E=8B=E5=AE=9E=E6=96=BD=E6=97=A5=E6=9C=9F=E6=9F=A5?=
=?UTF-8?q?=E7=9C=8B=E4=B8=8D=E5=9B=9E=E6=98=BE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/pages/details/otherStandardDetails/index.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pages/details/otherStandardDetails/index.vue b/src/pages/details/otherStandardDetails/index.vue
index 632631e7c..35a773a73 100644
--- a/src/pages/details/otherStandardDetails/index.vue
+++ b/src/pages/details/otherStandardDetails/index.vue
@@ -836,7 +836,7 @@
{{
- standShowItemEO.xcxssrq ? $moment(standShowItemEO.xcxssrq).format('YYYY-MM-DD') : ''
+ standShowItemEO.xcxssrq ? $moment(standShowItemEO.xccssrq).format('YYYY-MM-DD') : ''
}}