feat(resettle2): 点位信息默认未完成

This commit is contained in:
woody 2025-10-21 09:29:31 +08:00
parent 6f75574790
commit e754739aa3
1 changed files with 6 additions and 5 deletions

View File

@ -259,7 +259,7 @@ export default {
// //
stageName: '阶段一', stageName: '阶段一',
statusName: '全部', statusName: '全部',
selectedStatusValue: '', // selectedStatusValue: 1, //
// //
selectedPoint: {}, selectedPoint: {},
@ -289,10 +289,11 @@ export default {
init() { init() {
this.stageName = this.stageOptions[0][0].label this.stageName = this.stageOptions[0][0].label
this.queryParams.stage = this.stageOptions[0][0].value this.queryParams.stage = this.stageOptions[0][0].value
// "" // ""
this.selectedStatusValue = this.statusOptions[0][0].value const statusIndex = 1
this.statusName = this.statusOptions[0][0].label this.selectedStatusValue = this.statusOptions[0][statusIndex].value
this.queryParams.stageStatus = this.selectedStatusValue || null this.statusName = this.statusOptions[0][statusIndex].label
this.queryParams.stageStatus = this.selectedStatusValue
this.loadPointList() this.loadPointList()
}, },