|
@@ -153,7 +153,7 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<template v-if="ins == 27">
|
|
<template v-if="ins == 27">
|
|
- <el-radio v-model="isWarn" label="1">仅显示预警数据</el-radio>
|
|
|
|
|
|
+ <el-checkbox v-model="isWarn" @change="groupChange()">仅显示预警数据</el-checkbox>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<el-select v-if="ins == 24 && tabPosition == 1" v-model="groupConsumptionName" placeholder="请选择任务分组" :clearable="tabsType == 'all' ? true : false" filterable size="small" @change="getList(true)" :multiple="tabsType == 'all' ? true : false" collapse-tags style="margin-left:10px; width: 250px" :key="groupTaskKey">
|
|
<el-select v-if="ins == 24 && tabPosition == 1" v-model="groupConsumptionName" placeholder="请选择任务分组" :clearable="tabsType == 'all' ? true : false" filterable size="small" @change="getList(true)" :multiple="tabsType == 'all' ? true : false" collapse-tags style="margin-left:10px; width: 250px" :key="groupTaskKey">
|
|
@@ -2017,7 +2017,7 @@ export default {
|
|
selectStageName: '',
|
|
selectStageName: '',
|
|
|
|
|
|
estimatedWorkingHoursType: '按项目查看',
|
|
estimatedWorkingHoursType: '按项目查看',
|
|
- isWarn: '0'
|
|
|
|
|
|
+ isWarn: false
|
|
};
|
|
};
|
|
},
|
|
},
|
|
computed: {},
|
|
computed: {},
|
|
@@ -2733,7 +2733,7 @@ export default {
|
|
// url = "/project/exportProjectEstimatedWorkTime"
|
|
// url = "/project/exportProjectEstimatedWorkTime"
|
|
url = "/project/exportProjectEstimatedWorkNew"
|
|
url = "/project/exportProjectEstimatedWorkNew"
|
|
this.proJuctId ? sl.projectId = this.proJuctId : ''
|
|
this.proJuctId ? sl.projectId = this.proJuctId : ''
|
|
- this.isWarn == '1' ? sl.isWarn = 1 : ''
|
|
|
|
|
|
+ this.isWarn ? sl.isWarn = 1 : ''
|
|
this.estimatedWorkingHoursType == '按项目查看' ? sl.type = 0 : sl.type = 1
|
|
this.estimatedWorkingHoursType == '按项目查看' ? sl.type = 0 : sl.type = 1
|
|
}else if(this.ins == 28) {
|
|
}else if(this.ins == 28) {
|
|
fName = this.$t('yuanGongRenWuWanChengQingKuangBiao') + '.xlsx'
|
|
fName = this.$t('yuanGongRenWuWanChengQingKuangBiao') + '.xlsx'
|
|
@@ -4439,7 +4439,7 @@ export default {
|
|
pageSize: this.size,
|
|
pageSize: this.size,
|
|
type: this.estimatedWorkingHoursType == '按项目查看' ? 0 : 1
|
|
type: this.estimatedWorkingHoursType == '按项目查看' ? 0 : 1
|
|
}
|
|
}
|
|
- this.isWarn == '1' ? parameter.isWarn = '1' : ''
|
|
|
|
|
|
+ this.isWarn ? parameter.isWarn = '1' : ''
|
|
this.proJuctId ? parameter.projectId = this.proJuctId : ''
|
|
this.proJuctId ? parameter.projectId = this.proJuctId : ''
|
|
this.listLoading = true
|
|
this.listLoading = true
|
|
// let { data } = await this.postData('/project/getProjectEstimatedWork', {
|
|
// let { data } = await this.postData('/project/getProjectEstimatedWork', {
|