diff --git a/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue b/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue
index 26b867eb0..49f49a182 100644
--- a/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue
+++ b/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue
@@ -87,7 +87,9 @@
+ :projectId='this.$route.query.parentId ? this.$route.query.parentId : this.$route.query.id'>
+
+
@@ -100,7 +102,9 @@
+ :projectId='this.$route.query.parentId ? this.$route.query.parentId : this.$route.query.id'>
+
+
@@ -237,8 +241,8 @@
//处理接收到的消息
handler: function(res) {
let that = this
- if (res.data == '1'){
- this.getlist()
+ if (res.data == '1') {
+ this.getlist()
}
}
}
@@ -255,8 +259,8 @@
// localStorage.setItem('paramsManifest', JSON.stringify(item))
let newUrl = _this.$router.resolve({
path: '/ParameterItemCollection',
- query: item
- // projectName:this.$route.query.projectName
+ query: item
+ // projectName:this.$route.query.projectName
})
window.open(newUrl.href, '_blank')
} else {
@@ -402,7 +406,7 @@
},
getlist() {
let query = {
- projectId: this.$route.query.id,
+ projectId: this.$route.query.parentId ? this.$route.query.parentId : this.$route.query.id,
pageSize: this.pageSize,
pageNo: this.pageNo,
...this.queryParam
@@ -561,13 +565,14 @@
text-justify: inter-ideograph;
word-break: break-all
}
+
::v-deep .ant-table-row:first-child {
- background: #fff!important;
+ background: #fff !important;
opacity: 0.95;
}
::v-deep .ant-table-body {
- background: transparent!important;
+ background: transparent !important;
}