Browse Source

业绩对标管理修改
1、寻标,增加指标的筛选功能;
2、增加翻页的功能
3、标杆管理界面,没有操作是否标杆的打标记功能
年度业绩指标完成情况修改详情页面表格展示样式

SunZehao 11 months ago
parent
commit
7486f5c575

+ 2 - 14
src/components/assessment/benchmarkingIndicBasicPage.vue

@@ -4,16 +4,8 @@
             <div class="collectSeach" :style="$utils.collectSeachSty()">
                 <div class="exceed exceedCas">
                     <span class="exceedSpan" style="width: 50px">机构:</span>
-                    <!-- <el-select v-model="orgVal" placeholder="请选择机构" multiple collapse-tags>
-                        <el-option
-                        v-for="item in orgSelectArr"
-                        :key="item.orgCode"
-                        :label="item.orgName"
-                        :value="item.orgCode">
-                        </el-option>
-                    </el-select> -->
-                    <el-cascader v-model="orgVal" :options="orgSelectArr" :props="props2" clearable multiple
-                        collapse-tags />
+                    <el-tree-select v-model="orgVal" :data="orgSelectArr" @change="changeCas" multiple clearable
+                        collapse-tags show-checkbox check-strictly check-on-click-node />
                 </div>
                 <div class="exceed exceedWidth">
                     <span class="exceedSpan" style="width: 50px">指标:</span>
@@ -87,10 +79,6 @@
                 itemSelectArr: [],
                 evalSelectArr: [],
                 rangeArr: [],
-                props2: {
-                    multiple: true,
-                    checkStrictly: true,
-                },
                 winPix: window.devicePixelRatio,
                 innerWidth: window.innerWidth
             }

+ 48 - 9
src/components/assessment/evaluationBenchmarkManagePage.vue

@@ -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;
                     }
                 }

+ 1 - 1
src/components/assessment/evaluationDeptBusinessFrom.vue

@@ -85,7 +85,7 @@
                             </el-table-column>
                             <el-table-column label="排序" width="100" prop="serialNumber" />
                             <el-table-column label="指标名称" prop="targetName" />
-                            <el-table-column label="目标值" prop="targetValue" width="200" />
+                            <el-table-column label="目标值" prop="targetValue" width="500" />
                             <el-table-column label="基础分" width="150" prop="baseScore" />
                             <el-table-column label="完成情况" width="300">
                                 <template #default="scope">

+ 2 - 2
src/components/taskCenter/taskCenterDeptBusinessFrom.vue

@@ -85,7 +85,7 @@
                             </el-table-column>
                             <el-table-column label="排序" width="100" prop="serialNumber" />
                             <el-table-column label="指标名称" prop="targetName" />
-                            <el-table-column label="目标值" prop="targetValue" width="200" />
+                            <el-table-column label="目标值" prop="targetValue" width="500" />
                             <el-table-column label="基础分" width="150" prop="baseScore" />
                             <el-table-column label="完成情况" width="300">
                                 <template #default="scope">
@@ -124,7 +124,7 @@
                 </div>
             </div>
             <template #footer>
-                <span class="dialog-footer"  v-if="tabName === 'first'">
+                <span class="dialog-footer" v-if="tabName === 'first'">
                     <el-button type="primary" @click="examineAndApprove('agree')">同 意</el-button>
                     <el-button @click="examineAndApprove('reject')">拒 绝</el-button>
                 </span>