Compare commits
	
		
			3 Commits
		
	
	
		
			a6229c5fb6
			...
			64e4d87f6d
		
	
	| Author | SHA1 | Date | 
|---|---|---|
|  | 64e4d87f6d | |
|  | b5fa07eee4 | |
|  | e754739aa3 | 
|  | @ -227,7 +227,7 @@ export default { | |||
|       // 筛选条件 | ||||
|       queryParams: { | ||||
|         pageNum: 1, | ||||
|         pageSize: 10, | ||||
|         pageSize: 50, | ||||
|         stage: 1, | ||||
|         stageStatus: null, | ||||
|         childNode: '', | ||||
|  | @ -259,7 +259,7 @@ export default { | |||
|       // 选中的值 | ||||
|       stageName: '阶段一', | ||||
|       statusName: '全部', | ||||
|       selectedStatusValue: '', // 当前选中的状态值 | ||||
|       selectedStatusValue: 1, // 当前选中的状态值 | ||||
| 
 | ||||
|       // 点位详情 | ||||
|       selectedPoint: {}, | ||||
|  | @ -289,10 +289,11 @@ export default { | |||
|     init() { | ||||
|       this.stageName = this.stageOptions[0][0].label | ||||
|       this.queryParams.stage = this.stageOptions[0][0].value | ||||
|       // 设置默认状态为"全部" | ||||
|       this.selectedStatusValue = this.statusOptions[0][0].value | ||||
|       this.statusName = this.statusOptions[0][0].label | ||||
|       this.queryParams.stageStatus = this.selectedStatusValue || null | ||||
|       // 设置默认状态为"未完成" | ||||
|       const statusIndex = 1 | ||||
|       this.selectedStatusValue = this.statusOptions[0][statusIndex].value | ||||
|       this.statusName = this.statusOptions[0][statusIndex].label | ||||
|       this.queryParams.stageStatus = this.selectedStatusValue | ||||
|       this.loadPointList() | ||||
|     }, | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue