|
@@ -335,16 +335,18 @@ export default {
|
|
},
|
|
},
|
|
methods:{
|
|
methods:{
|
|
// 查询指标数据
|
|
// 查询指标数据
|
|
- getEvaluationData(type) {
|
|
|
|
|
|
+ getEvaluationData() {
|
|
let that = this
|
|
let that = this
|
|
let params = {
|
|
let params = {
|
|
- pageNum: this.page.currentPage,
|
|
|
|
- pageSize: this.page.pagesize,
|
|
|
|
- }
|
|
|
|
- if (type) {
|
|
|
|
- params.indicatorName = that.indicatorIdS
|
|
|
|
- params.binSection = that.binSectionIds
|
|
|
|
|
|
+ pageNum: that.page.currentPage,
|
|
|
|
+ pageSize: that.page.pagesize,
|
|
|
|
+ indicatorName: that.indicatorIdS,
|
|
|
|
+ binSection: that.binSectionIds
|
|
}
|
|
}
|
|
|
|
+ // if (type) {
|
|
|
|
+ // params.indicatorName = that.indicatorIdS
|
|
|
|
+ // params.binSection = that.binSectionIds
|
|
|
|
+ // }
|
|
apiGetIndicatorList(params).then(datas =>{
|
|
apiGetIndicatorList(params).then(datas =>{
|
|
if (datas && datas.data) {
|
|
if (datas && datas.data) {
|
|
that.evaluationIndexData = datas.data.records
|
|
that.evaluationIndexData = datas.data.records
|
|
@@ -618,7 +620,7 @@ export default {
|
|
},
|
|
},
|
|
getSeachData() {
|
|
getSeachData() {
|
|
this.page.currentPage = 1
|
|
this.page.currentPage = 1
|
|
- this.getEvaluationData('seach')
|
|
|
|
|
|
+ this.getEvaluationData()
|
|
},
|
|
},
|
|
resetSeach() {
|
|
resetSeach() {
|
|
this.page.currentPage = 1
|
|
this.page.currentPage = 1
|