-
+
-
法规清单确认打扫房间十大科技孵化开具收费电视
-
2021-10-13
-
-
-
-
-

-
-
-
-
-

-
-
-
-
-

-
-
-
-
-

-
-
-
-
-

-
-
-
-
-

-
-
法规清单确认
-
2021-10-13
+
{{item.name}}
+
{{item.time}}
@@ -196,8 +148,9 @@
queryById: 'project/projectLibraryBase/queryById',
add: 'project/projectLibraryBase/add',
edit: 'project/projectLibraryBase/edit',
- queryByprojectId:'project/projectTaskPlanning/queryByprojectId',
- }
+ queryByProjectId: 'project/projectTaskPlanning/queryByProjectId'
+ },
+ regulatoryCertificationTaskPlanList: []
}
},
mounted() {
@@ -215,12 +168,12 @@
}
})
},
- getSetting(){
- getAction(this.url.queryByprojectId, { id: this.$route.query.id }).then((res) => {
+ getSetting() {
+ getAction(this.url.queryByProjectId, { projectId: this.$route.query.id }).then((res) => {
if (res.success) {
- console.log(res)
+ this.regulatoryCertificationTaskPlanList = res.result || []
} else {
-
+ this.regulatoryCertificationTaskPlanList = []
}
})
},
@@ -258,9 +211,9 @@
addModelList() {
this.getForm()
},
- settingClick(){
- this.$refs.settingListRef.edit()
- },
+ settingClick() {
+ this.$refs.settingListRef.edit()
+ }
}
}
From ba765005961bbb5604cc77bdb729611fba0fc770 Mon Sep 17 00:00:00 2001
From: zhn <947514737@qq.com>
Date: Thu, 21 Apr 2022 17:44:13 +0800
Subject: [PATCH 10/17] =?UTF-8?q?=E5=AF=BC=E5=85=A5=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../dummy/controller/DummyInventoryInfoEOController.java | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/dummy/controller/DummyInventoryInfoEOController.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/dummy/controller/DummyInventoryInfoEOController.java
index 9e90000cb..22b8a4293 100644
--- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/dummy/controller/DummyInventoryInfoEOController.java
+++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/dummy/controller/DummyInventoryInfoEOController.java
@@ -200,11 +200,7 @@ public class DummyInventoryInfoEOController extends JeroController
importData(@RequestParam(value = "file", required = false) MultipartFile file,
DummyInventoryInfoEO dummyInventoryInfoEO) {
- try {
- dummyInventoryInfoEOService.importData(file,dummyInventoryInfoEO);
- } catch (Exception e) {
- return Result.error("导入失败");
- }
+ dummyInventoryInfoEOService.importData(file,dummyInventoryInfoEO);
return Result.OK("导入成功");
}
From 122ecc6ffaffc264cba38909b1dfa79890b45bc7 Mon Sep 17 00:00:00 2001
From: qq787203167 <787203167@qq.com>
Date: Thu, 21 Apr 2022 17:49:48 +0800
Subject: [PATCH 11/17] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=BC=E5=85=A5?=
=?UTF-8?q?=E7=9A=84=E9=BB=98=E8=AE=A4=E6=98=BE=E7=A4=BA=E6=96=87=E4=BB=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
jero-web/src/components/ImportFile/index.vue | 12 ++++++++----
jero-web/src/views/documentManage/library/index.vue | 2 +-
.../virtualList/components/virtualListDetails.vue | 7 +++++--
.../projectManagement/components/ProjectDetails.vue | 9 +++++++--
.../components/TaskParameterCollection.vue | 5 ++++-
.../components/listOfRegulations.vue | 5 ++++-
.../components/listOfRelevantPersonnel.vue | 9 +++++----
.../projectManagement/components/settingList.vue | 12 ++----------
8 files changed, 36 insertions(+), 25 deletions(-)
diff --git a/jero-web/src/components/ImportFile/index.vue b/jero-web/src/components/ImportFile/index.vue
index 6dff278bb..fb7d3cd1d 100644
--- a/jero-web/src/components/ImportFile/index.vue
+++ b/jero-web/src/components/ImportFile/index.vue
@@ -4,8 +4,8 @@
class="upload-text"
:multiple="false" :headers="tokenHeader"
:action="importUrl+'?cut='+cut"
- @change="handleImportZip"
- accept=".zip">
+ @change="handleImport"
+ :accept="accept">
{{$t('import')}}
@@ -28,7 +28,11 @@
isTrue:{
type: Boolean,
default: false
- }
+ },
+ accept:{
+ type: String,
+ default: ''
+ },
},
data() {
return {
@@ -47,7 +51,7 @@
}
},
methods: {
- handleImportZip(info) {
+ handleImport(info) {
this.spinning = true
if (info.file.status !== 'uploading') {
console.log(info.file, info.fileList)
diff --git a/jero-web/src/views/documentManage/library/index.vue b/jero-web/src/views/documentManage/library/index.vue
index 5bda5e60b..c6e4c4b0d 100644
--- a/jero-web/src/views/documentManage/library/index.vue
+++ b/jero-web/src/views/documentManage/library/index.vue
@@ -25,7 +25,7 @@
{{$t('templateDownload')}}
-
+
diff --git a/jero-web/src/views/documentTools/virtualList/components/virtualListDetails.vue b/jero-web/src/views/documentTools/virtualList/components/virtualListDetails.vue
index 986ad9608..399543c6b 100644
--- a/jero-web/src/views/documentTools/virtualList/components/virtualListDetails.vue
+++ b/jero-web/src/views/documentTools/virtualList/components/virtualListDetails.vue
@@ -88,7 +88,7 @@
{{$t('DocumentStandard')}}
-
+
@@ -304,7 +304,7 @@
title: this.$t('correspondingStandard'),
align: 'center',
ellipsis: true,
- dataIndex: 'correspondingStandard_dictText'
+ dataIndex: 'correspondingStandardName'
},
{
title: this.$t('zoneOfApplication'),
@@ -622,6 +622,9 @@
}
})
},
+ getPersonnelList(){
+ this.getList()
+ },
batSettingList() {
this.getList()
},
diff --git a/jero-web/src/views/projectManagement/components/ProjectDetails.vue b/jero-web/src/views/projectManagement/components/ProjectDetails.vue
index 9e7013fde..421540153 100644
--- a/jero-web/src/views/projectManagement/components/ProjectDetails.vue
+++ b/jero-web/src/views/projectManagement/components/ProjectDetails.vue
@@ -123,7 +123,7 @@
-
+
@@ -148,7 +148,9 @@
queryById: 'project/projectLibraryBase/queryById',
add: 'project/projectLibraryBase/add',
edit: 'project/projectLibraryBase/edit',
- queryByProjectId: 'project/projectTaskPlanning/queryByProjectId'
+ queryByProjectId: 'project/projectTaskPlanning/queryByProjectId',
+ addSettingUrl:'project/projectTaskPlanning/add',
+ editSettingUrl:'project/projectTaskPlanning/edit',
},
regulatoryCertificationTaskPlanList: []
}
@@ -177,6 +179,9 @@
}
})
},
+ settingListForm(){
+ this.getSetting()
+ },
mainEcharts() {
var myChart = echarts.init(document.getElementById('main'))
myChart.setOption({
diff --git a/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue b/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue
index 57b5574e0..3c61dbeb6 100644
--- a/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue
+++ b/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue
@@ -29,7 +29,7 @@
{{$t('templateDownload')}}
@@ -145,6 +145,9 @@
},
handleDel(){
+ },
+ getPersonnelList(){
+
},
},
}
diff --git a/jero-web/src/views/projectManagement/components/listOfRegulations.vue b/jero-web/src/views/projectManagement/components/listOfRegulations.vue
index 01754cf33..e363f6ae0 100644
--- a/jero-web/src/views/projectManagement/components/listOfRegulations.vue
+++ b/jero-web/src/views/projectManagement/components/listOfRegulations.vue
@@ -65,7 +65,7 @@