|
|
|
@ -399,7 +399,8 @@ export default { |
|
|
|
|
this.$router.push({ |
|
|
|
|
path: '/src/views/functionx/FunctionxList', |
|
|
|
|
query: { |
|
|
|
|
moduleid: record.id |
|
|
|
|
moduleid: record.id, |
|
|
|
|
project:this.$route.query.project |
|
|
|
|
} |
|
|
|
|
// query: {id: '123456'} |
|
|
|
|
}) |
|
|
|
@ -407,7 +408,7 @@ export default { |
|
|
|
|
tablexManage(record) { |
|
|
|
|
this.$router.push({ |
|
|
|
|
path: '/src/views/tablex/TablexList', |
|
|
|
|
query: {moduleid: record.id} |
|
|
|
|
query: {moduleid: record.id,project:this.$route.query.project} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
initDictConfig() { |
|
|
|
@ -439,7 +440,7 @@ export default { |
|
|
|
|
}, |
|
|
|
|
loadParameter() { |
|
|
|
|
if (this.loadRouteType === false) { |
|
|
|
|
this.projectIdx = this.$route.query.moduleid; |
|
|
|
|
this.projectIdx = this.$route.query.project; |
|
|
|
|
// console.log('aaaaaaaaa',this.projectIdx) |
|
|
|
|
// console.log("***********想看看") |
|
|
|
|
this.loadRouteType = true; |
|
|
|
@ -486,7 +487,7 @@ export default { |
|
|
|
|
param.pageNo = this.ipagination.current; |
|
|
|
|
param.pageSize = this.ipagination.pageSize; |
|
|
|
|
//param.id=this.id; |
|
|
|
|
param.projectId = this.$route.query.moduleid; |
|
|
|
|
param.projectId = this.$route.query.project; |
|
|
|
|
// console.log('paaaaaaaaaaaaaaaaaaaaa') |
|
|
|
|
return filterObj(param); |
|
|
|
|
}, |
|
|
|
|