Browse Source

2024.10.15 文档收集系统 - 文档版本V20240929

java8
yuejiayang 1 year ago
parent
commit
9116a54b46
  1. 6
      src/views/modules/eam/eamProjectInfo.vue

6
src/views/modules/eam/eamProjectInfo.vue

@ -894,6 +894,7 @@ import {searchBusinessInfo7} from "../../../api/factory/site";
tagNo:'', tagNo:'',
fileName:'', fileName:'',
folder: 'projectConfirm', folder: 'projectConfirm',
selectTypeFlag: [],
searchData: { searchData: {
site: this.$store.state.user.site, site: this.$store.state.user.site,
userName: this.$store.state.user.name, userName: this.$store.state.user.name,
@ -2669,6 +2670,7 @@ import {searchBusinessInfo7} from "../../../api/factory/site";
// //
getDataList (params) { getDataList (params) {
this.selectTypeFlag = params
this.searchData.limit = this.pageSize this.searchData.limit = this.pageSize
this.searchData.page = this.pageIndex this.searchData.page = this.pageIndex
if (params !== null && params !== undefined) { if (params !== null && params !== undefined) {
@ -2801,12 +2803,12 @@ import {searchBusinessInfo7} from "../../../api/factory/site";
sizeChangeHandle (val) { sizeChangeHandle (val) {
this.pageSize = val this.pageSize = val
this.pageIndex = 1 this.pageIndex = 1
this.getDataList()
this.getDataList(this.selectTypeFlag)
}, },
// //
currentChangeHandle (val) { currentChangeHandle (val) {
this.pageIndex = val this.pageIndex = val
this.getDataList()
this.getDataList(this.selectTypeFlag)
}, },
addModal () { addModal () {

Loading…
Cancel
Save