|
|
@@ -385,10 +385,10 @@ export default {
|
|
|
},
|
|
|
onLoad (query = {}) {
|
|
|
this.loading = true
|
|
|
- const data = { ...query, parentId: this.parentId }
|
|
|
+ const data = { ...this.owerQuery, parentId: this.parentId }
|
|
|
this.queryData = data
|
|
|
console.log(query.projectStage)
|
|
|
- this.$api.project.projectList(this.page.currentPage, this.page.pageSize, data).then(res => {
|
|
|
+ this.$api.project.projectList(this.page.currentPage, this.page.pageSize, this.queryData).then(res => {
|
|
|
this.loading = false
|
|
|
if (res.code === 200) {
|
|
|
this.data = res.data.records.map(e => {
|