Browse Source

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

java8
yuejiayang 1 year ago
parent
commit
cdc0a4ff83
  1. 4
      src/views/modules/eam/eamProjectInfoForConfirm.vue
  2. 4
      src/views/modules/eam/eamProjectInfoForProof.vue
  3. 4
      src/views/modules/eam/eamProjectInfoForUploads.vue
  4. 4
      src/views/modules/eam/eamProjectPartInfo.vue

4
src/views/modules/eam/eamProjectInfoForConfirm.vue

@ -1580,7 +1580,7 @@ export default {
sizeChangeHandle (val) { sizeChangeHandle (val) {
this.pageSize = val this.pageSize = val
this.pageIndex = 1 this.pageIndex = 1
if (this.selectTypeFlag.length > 0 || this.selectTypeFlag !== null || this.selectTypeFlag !== undefined) {
if (this.selectTypeFlag !== null && this.selectTypeFlag !== undefined) {
this.queryConfirmProgressList(this.selectTypeFlag) this.queryConfirmProgressList(this.selectTypeFlag)
} else { } else {
this.getDataList() this.getDataList()
@ -1589,7 +1589,7 @@ export default {
// //
currentChangeHandle (val) { currentChangeHandle (val) {
this.pageIndex = val this.pageIndex = val
if (this.selectTypeFlag.length > 0 || this.selectTypeFlag !== null || this.selectTypeFlag !== undefined) {
if (this.selectTypeFlag !== null && this.selectTypeFlag !== undefined) {
this.queryConfirmProgressList(this.selectTypeFlag) this.queryConfirmProgressList(this.selectTypeFlag)
} else { } else {
this.getDataList() this.getDataList()

4
src/views/modules/eam/eamProjectInfoForProof.vue

@ -1322,7 +1322,7 @@ export default {
sizeChangeHandle (val) { sizeChangeHandle (val) {
this.pageSize = val this.pageSize = val
this.pageIndex = 1 this.pageIndex = 1
if (this.selectTypeFlag.length > 0 || this.selectTypeFlag !== null || this.selectTypeFlag !== undefined) {
if (this.selectTypeFlag !== null && this.selectTypeFlag !== undefined) {
this.queryAllProofing(this.selectTypeFlag) this.queryAllProofing(this.selectTypeFlag)
} else { } else {
this.getDataList() this.getDataList()
@ -1331,7 +1331,7 @@ export default {
// //
currentChangeHandle (val) { currentChangeHandle (val) {
this.pageIndex = val this.pageIndex = val
if (this.selectTypeFlag.length > 0 || this.selectTypeFlag !== null || this.selectTypeFlag !== undefined) {
if (this.selectTypeFlag !== null && this.selectTypeFlag !== undefined) {
this.queryAllProofing(this.selectTypeFlag) this.queryAllProofing(this.selectTypeFlag)
} else { } else {
this.getDataList() this.getDataList()

4
src/views/modules/eam/eamProjectInfoForUploads.vue

@ -1821,7 +1821,7 @@ export default {
sizeChangeHandle (val) { sizeChangeHandle (val) {
this.pageSize = val this.pageSize = val
this.pageIndex = 1 this.pageIndex = 1
if (this.selectTypeFlag.length > 0 || this.selectTypeFlag !== null || this.selectTypeFlag !== undefined) {
if (this.selectTypeFlag !== null && this.selectTypeFlag !== undefined) {
this.queryProjectUploadsDocumentList(this.selectTypeFlag) this.queryProjectUploadsDocumentList(this.selectTypeFlag)
} else { } else {
this.getDataList() this.getDataList()
@ -1830,7 +1830,7 @@ export default {
// //
currentChangeHandle (val) { currentChangeHandle (val) {
this.pageIndex = val this.pageIndex = val
if (this.selectTypeFlag.length > 0 || this.selectTypeFlag !== null || this.selectTypeFlag !== undefined) {
if (this.selectTypeFlag !== null && this.selectTypeFlag !== undefined) {
this.queryProjectUploadsDocumentList(this.selectTypeFlag) this.queryProjectUploadsDocumentList(this.selectTypeFlag)
} else { } else {
this.getDataList() this.getDataList()

4
src/views/modules/eam/eamProjectPartInfo.vue

@ -3155,7 +3155,7 @@ import {EventBus} from "../../../main";
sizeChangeHandle (val) { sizeChangeHandle (val) {
this.pageSize = val this.pageSize = val
this.pageIndex = 1 this.pageIndex = 1
if (this.selectTypeFlag.length > 0 || this.selectTypeFlag !== null || this.selectTypeFlag !== undefined) {
if (this.selectTypeFlag !== null && this.selectTypeFlag !== undefined) {
this.queryEamProjectPart(this.selectTypeFlag) this.queryEamProjectPart(this.selectTypeFlag)
} else { } else {
this.getDataList() this.getDataList()
@ -3164,7 +3164,7 @@ import {EventBus} from "../../../main";
// //
currentChangeHandle (val) { currentChangeHandle (val) {
this.pageIndex = val this.pageIndex = val
if (this.selectTypeFlag.length > 0 || this.selectTypeFlag !== null || this.selectTypeFlag !== undefined) {
if (this.selectTypeFlag !== null && this.selectTypeFlag !== undefined) {
this.queryEamProjectPart(this.selectTypeFlag) this.queryEamProjectPart(this.selectTypeFlag)
} else { } else {
this.getDataList() this.getDataList()

Loading…
Cancel
Save