|
@@ -2,7 +2,7 @@
|
|
|
<div class="benchmarkingIndicator">
|
|
|
<div class="benchmarkingIndicatorBtn">
|
|
|
<div class="collectSeach" :style="$utils.collectSeachSty()">
|
|
|
- <div style="display: flex;width:35%">
|
|
|
+ <div style="display: flex;width:45%">
|
|
|
<div class="exceed">
|
|
|
<span class="exceedSpan" style="margin-left: 10px;width: 50px">类型:</span>
|
|
|
<el-select v-model="timeStr" placeholder="请选择时间类型" @change="changeTime">
|
|
@@ -18,6 +18,10 @@
|
|
|
<el-date-picker v-model="timeIds" type="month" value-format="YYYY-MM" placeholder="选择时间" v-else
|
|
|
@change="changTimeDate" />
|
|
|
</div>
|
|
|
+ <div class="exceed">
|
|
|
+ <span class="exceedSpan" style="margin-left: 10px;width: 80px">指标:</span>
|
|
|
+ <el-input v-model="indexName" placeholder="请输入指标" />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<seachs @handleSeach="getSeachData" @handleRest="resetSeach"></seachs>
|
|
|
<el-button type="warning" icon="Upload" size="mini" @click="handleImport" style="margin-left:30px">导入
|
|
@@ -47,15 +51,20 @@
|
|
|
<el-table-column label="定标值" prop="scalingValue">
|
|
|
<template #default="scope">
|
|
|
<el-input-number v-model="scope.row.scalingValue"
|
|
|
- @blur="scalingValueBlur(scope.row.scalingValue, scope.row)"
|
|
|
- @change="scalingValueBlur(scope.row.scalingValue, scope.row)"
|
|
|
+ @blur="scalingValueBlur(scope.row.scalingValue, scope.row, 'scaling')"
|
|
|
+ @change="scalingValueBlur(scope.row.scalingValue, scope.row, 'scaling')"
|
|
|
v-if="tabPosition === '立标'" />
|
|
|
<span v-else>{{scope.row.scalingValue}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="是否标杆" prop="isBg">
|
|
|
<template #default="scope">
|
|
|
- <span>{{scope.row.isBg === 0 ? '否' : '是'}}</span>
|
|
|
+ <span v-if="tabPosition !== '寻标'">{{scope.row.isBg === 0 ? '否' : '是'}}</span>
|
|
|
+ <el-select v-else v-model="scope.row.isBg" placeholder="Select" size="large"
|
|
|
+ style="width: 100px" @change="scalingValueBlur(scope.row.isBg, scope.row, 'isBg')">
|
|
|
+ <el-option v-for="item in isBgoptions" :key="item.value" :label="item.label"
|
|
|
+ :value="item.value" />
|
|
|
+ </el-select>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -122,11 +131,13 @@
|
|
|
timeIds: '',
|
|
|
timeStr: 'NDKP',
|
|
|
binSectionStr: '火电',
|
|
|
+ indexName: '',
|
|
|
page: {
|
|
|
pagesize: 12,
|
|
|
currentPage: 1,
|
|
|
total: 0
|
|
|
},
|
|
|
+ isBgoptions: [],
|
|
|
titleMsgArr: [],
|
|
|
timerData: [],
|
|
|
tabPosition: '寻标',
|
|
@@ -149,6 +160,15 @@
|
|
|
value: 'YDKP'
|
|
|
}
|
|
|
]
|
|
|
+ this.isBgoptions = [{
|
|
|
+ value: 1,
|
|
|
+ label: '是'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: 0,
|
|
|
+ label: '否'
|
|
|
+ }
|
|
|
+ ]
|
|
|
this.titleMsgYear = [{
|
|
|
isClass: 'huoDef',
|
|
|
isClassC: 'huoCha',
|
|
@@ -267,7 +287,8 @@
|
|
|
pageSize: that.page.pagesize,
|
|
|
toolCategory: that.tabPosition,
|
|
|
manageCategory: that.binSectionStr,
|
|
|
- checkCycle: that.timeStr
|
|
|
+ checkCycle: that.timeStr,
|
|
|
+ indexName: that.indexName
|
|
|
}
|
|
|
if (that.timeStr === 'NDKP') {
|
|
|
params.degreeYear = that.timeIds * 1
|
|
@@ -295,11 +316,15 @@
|
|
|
this.changTimeDate(this.timeIds)
|
|
|
}
|
|
|
},
|
|
|
- scalingValueBlur(val, row) {
|
|
|
+ scalingValueBlur(val, row, type) {
|
|
|
let that = this
|
|
|
let params = {
|
|
|
- id: row.id,
|
|
|
- scalingValue: val
|
|
|
+ id: row.id
|
|
|
+ }
|
|
|
+ if (type === 'scaling') {
|
|
|
+ params.scalingValue = val
|
|
|
+ } else {
|
|
|
+ params.isBg = val
|
|
|
}
|
|
|
apiGetbenchmarkingupdateData(params).then(datas => {
|
|
|
if (datas) {
|
|
@@ -308,6 +333,11 @@
|
|
|
})
|
|
|
},
|
|
|
changeRadio(val) {
|
|
|
+ this.page = {
|
|
|
+ pagesize: 12,
|
|
|
+ currentPage: 1,
|
|
|
+ total: 0
|
|
|
+ }
|
|
|
this.getBenchManageData()
|
|
|
},
|
|
|
changTimeDate(val) {
|
|
@@ -332,6 +362,11 @@
|
|
|
}
|
|
|
},
|
|
|
changType(data) {
|
|
|
+ this.page = {
|
|
|
+ pagesize: 12,
|
|
|
+ currentPage: 1,
|
|
|
+ total: 0
|
|
|
+ }
|
|
|
this.titleMsgArr.forEach(it => {
|
|
|
it.showClick = false
|
|
|
if (it.isName === data.isName) {
|
|
@@ -343,11 +378,14 @@
|
|
|
},
|
|
|
getSeachData() {
|
|
|
this.page.currentPage = 1
|
|
|
-
|
|
|
this.getBenchManageData()
|
|
|
},
|
|
|
resetSeach() {
|
|
|
+ this.timeIds = (new Date().getFullYear() - 1).toString()
|
|
|
this.page.currentPage = 1
|
|
|
+ this.timeStr = 'NDKP'
|
|
|
+ this.binSectionStr = '火电'
|
|
|
+ this.indexName = ''
|
|
|
this.getBenchManageData()
|
|
|
},
|
|
|
handleSizeChange(val) {
|
|
@@ -455,6 +493,7 @@
|
|
|
|
|
|
.el-date-editor--month,
|
|
|
.el-date-editor--year {
|
|
|
+ width: 150px;
|
|
|
height: 40px;
|
|
|
}
|
|
|
}
|