|
@@ -7,41 +7,41 @@
|
|
|
<el-col :span="6">
|
|
|
<div class="danjuMsg_data">
|
|
|
<span class="data_tit">业务编号:</span>
|
|
|
- <span>{{receiptMsg.code}}</span>
|
|
|
+ <span>{{ receiptMsg.code }}</span>
|
|
|
</div>
|
|
|
<div class="danjuMsg_data">
|
|
|
<span class="data_tit">创建日期:</span>
|
|
|
- <span>{{receiptMsg.createDate}}</span>
|
|
|
+ <span>{{ receiptMsg.createDate }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<div class="danjuMsg_data">
|
|
|
<span class="data_tit">业务简述:</span>
|
|
|
- <span>{{receiptMsg.des}}</span>
|
|
|
+ <span>{{ receiptMsg.des }}</span>
|
|
|
</div>
|
|
|
<div class="danjuMsg_data">
|
|
|
<span class="data_tit">业务类别:</span>
|
|
|
- <span>{{receiptMsg.type}}</span>
|
|
|
+ <span>{{ receiptMsg.type }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<div class="danjuMsg_data">
|
|
|
<span class="data_tit">流程状态:</span>
|
|
|
- <span>{{receiptMsg.stage}}</span>
|
|
|
+ <span>{{ receiptMsg.stage }}</span>
|
|
|
</div>
|
|
|
<div class="danjuMsg_data">
|
|
|
<span class="data_tit">年度:</span>
|
|
|
- <span>{{receiptMsg.year}}</span>
|
|
|
+ <span>{{ receiptMsg.year }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<div class="danjuMsg_data">
|
|
|
<span class="data_tit">创建人:</span>
|
|
|
- <span>{{receiptMsg.createName}}</span>
|
|
|
+ <span>{{ receiptMsg.createName }}</span>
|
|
|
</div>
|
|
|
<div class="danjuMsg_data">
|
|
|
<span class="data_tit">单据状态:</span>
|
|
|
- <span>{{receiptMsg.recStage}}</span>
|
|
|
+ <span>{{ receiptMsg.recStage }}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -51,13 +51,15 @@
|
|
|
<div class="detailsHeader">
|
|
|
<div class="headerLeft">
|
|
|
<el-tag v-for="tag in indicatorList" :key="tag.id" size="large" class="tagArr"
|
|
|
- effect="dark" :type="tag.id === isClickTagId ? '': 'info'" @click="handleShowPage(tag)">
|
|
|
+ effect="dark" :type="tag.id === isClickTagId ? '' : 'info'"
|
|
|
+ @click="handleShowPage(tag)">
|
|
|
<span>{{ tag.indicator_name }}</span>
|
|
|
</el-tag>
|
|
|
</div>
|
|
|
<div class="headerRight">
|
|
|
<div class="seachFor">
|
|
|
- <el-input v-model="compNameSa" placeholder="请输入单位名称" @keyup.enter="getTableData(isClickTagId)"></el-input>
|
|
|
+ <el-input v-model="compNameSa" placeholder="请输入单位名称"
|
|
|
+ @keyup.enter="getTableData(isClickTagId)"></el-input>
|
|
|
<!-- <el-icon :size="20" color="#3B7AD1" @click="getTableData(isClickTagId)"><Search /></el-icon> -->
|
|
|
</div>
|
|
|
<!-- <div class="tableBtn add" @click="addTableDetail"
|
|
@@ -71,11 +73,13 @@
|
|
|
<span>保存</span>
|
|
|
</div> -->
|
|
|
<!-- activeName !== 'ZDZX' && activeName !== 'GLSX' && -->
|
|
|
- <div class="tableBtn save" @click="saveDetail" v-if="receiptMsg.stage === '流程未启动'">
|
|
|
+ <div class="tableBtn save" @click="saveDetail"
|
|
|
+ v-if="receiptMsg.stage !== '流程已结束'">
|
|
|
<img :src="saveIcon" alt="">
|
|
|
<span>保存</span>
|
|
|
</div>
|
|
|
- <div class="tableBtn import" @click="handleImport" v-if="receiptMsg.stage === '流程未启动'">
|
|
|
+ <div class="tableBtn import" @click="handleImport"
|
|
|
+ v-if="receiptMsg.stage !== '流程已结束'">
|
|
|
<img :src="importIcon" alt="">
|
|
|
<span>导入</span>
|
|
|
</div>
|
|
@@ -86,48 +90,47 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<el-table :data="monthQuarterYearData" style="width: 100%" ref="monthQuarterYearTT"
|
|
|
- :row-class-name="tableRowClassName" :border="true" >
|
|
|
+ :row-class-name="tableRowClassName" :border="true">
|
|
|
<el-table-column type="index" label="排名" align="center"></el-table-column>
|
|
|
<el-table-column label="考评单位" prop="organizationShortName" width="300">
|
|
|
<template #default="scope">
|
|
|
<el-select v-model="scope.row.organizationShortName" placeholder="请选择考评单位">
|
|
|
- <el-option
|
|
|
- v-for="item in organizationData"
|
|
|
- :key="item.organizationId"
|
|
|
- :label="item.organizationShortName"
|
|
|
- :value="item.organizationId">
|
|
|
+ <el-option v-for="item in organizationData" :key="item.organizationId"
|
|
|
+ :label="item.organizationShortName" :value="item.organizationId">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column v-for="(it, index) in monthQuarterYearHeader" :key="index"
|
|
|
- :label="it.name" align="center">
|
|
|
+ <el-table-column v-for="(it, index) in monthQuarterYearHeader" :key="index" :label="it.name"
|
|
|
+ align="center">
|
|
|
<el-table-column v-for="(iv, index) in it.children" :key="index" :label="iv.key"
|
|
|
- align="center" width="150" sortable :sort-method="(a,b)=>sortMethods(a,b,iv.code)">
|
|
|
+ align="center" width="150" sortable
|
|
|
+ :sort-method="(a, b) => sortMethods(a, b, iv.code)">
|
|
|
<template #default="scope">
|
|
|
<template v-if="!scope.row['operation']">
|
|
|
- <el-select v-model="scope.row[iv.code]" class="selectSty" placeholder="请选择审核状态" v-if="scope.row['IS_LH_'+iv.code] === '3'">
|
|
|
- <el-option
|
|
|
- v-for="item in statusData"
|
|
|
- :key="item.id"
|
|
|
- :label="item.name"
|
|
|
- :value="item.id">
|
|
|
+ <el-select v-model="scope.row[iv.code]" class="selectSty"
|
|
|
+ placeholder="请选择审核状态" v-if="scope.row['IS_LH_' + iv.code] === '3'">
|
|
|
+ <el-option v-for="item in statusData" :key="item.id" :label="item.name"
|
|
|
+ :value="item.id">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
- <el-input v-model="scope.row[iv.code]" class="inputSty" v-else-if="scope.row['IS_LH_'+iv.code] === '2'"></el-input>
|
|
|
- <el-input-number v-model="scope.row[iv.code]" class="numberSty" :precision="2" :step="0.1" v-else />
|
|
|
+ <el-input v-model="scope.row[iv.code]" class="inputSty"
|
|
|
+ v-else-if="scope.row['IS_LH_' + iv.code] === '2'"></el-input>
|
|
|
+ <el-input-number v-model="scope.row[iv.code]" class="numberSty"
|
|
|
+ :precision="2" :step="0.1" v-else />
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
- <el-select v-model="scope.row[iv.code]" class="selectSty" placeholder="请选择审核状态" v-if="scope.row['IS_LH_'+iv.code] === '3'">
|
|
|
- <el-option
|
|
|
- v-for="item in statusData"
|
|
|
- :key="item.id"
|
|
|
- :label="item.name"
|
|
|
- :value="item.id">
|
|
|
+ <el-select v-model="scope.row[iv.code]" class="selectSty"
|
|
|
+ placeholder="请选择审核状态" v-if="scope.row['IS_LH_' + iv.code] === '3'">
|
|
|
+ <el-option v-for="item in statusData" :key="item.id" :label="item.name"
|
|
|
+ :value="item.id">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
- <span class="indicitem" v-if="iv.code === 'operation'" @click="changeDetail(scope.row)">详情</span>
|
|
|
- <span class="inputSty" v-else-if="iv.code!=='operation' && scope.row['IS_LH_'+iv.code] !== '3'">{{scope.row[iv.code]}}</span>
|
|
|
+ <span class="indicitem" v-if="iv.code === 'operation'"
|
|
|
+ @click="changeDetail(scope.row)">详情</span>
|
|
|
+ <span class="inputSty"
|
|
|
+ v-else-if="iv.code !== 'operation' && scope.row['IS_LH_' + iv.code] !== '3'">{{
|
|
|
+ scope.row[iv.code] }}</span>
|
|
|
</template>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -137,10 +140,10 @@
|
|
|
</el-tabs>
|
|
|
<div class="tableSeach">
|
|
|
<div class="seachType" v-for="item in titleMsgArr" :key="item.isName"
|
|
|
- :class="item.showClick? 'seachTypeCha':''" @click="changType(item)">
|
|
|
+ :class="item.showClick ? 'seachTypeCha' : ''" @click="changType(item)">
|
|
|
<img :src="item.img" alt="" v-if="!item.showClick">
|
|
|
<img :src="item.clickImg" alt="" v-else>
|
|
|
- <p :style="item.showClick? 'color: #3B7AD1' : ''">{{item.isName}}</p>
|
|
|
+ <p :style="item.showClick ? 'color: #3B7AD1' : ''">{{ item.isName }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -163,15 +166,17 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<el-table :data="monthQuarterYearDetailData" style="width: 100%" ref="monthQuarterYearTT"
|
|
|
- :row-class-name="tableRowClassName" :border="true" >
|
|
|
+ :row-class-name="tableRowClassName" :border="true">
|
|
|
<el-table-column type="index" label="序号" align="center"></el-table-column>
|
|
|
<el-table-column label="部门名称" prop="deptName" align="center" width="200"></el-table-column>
|
|
|
- <el-table-column v-for="(it, index) in monthQuarterYearDetailHeader" :key="index"
|
|
|
- :label="it.name" align="center">
|
|
|
+ <el-table-column v-for="(it, index) in monthQuarterYearDetailHeader" :key="index" :label="it.name"
|
|
|
+ align="center">
|
|
|
<el-table-column v-for="(iv, index) in it.children" :key="index" :label="iv.key" align="center">
|
|
|
<template #default="scope">
|
|
|
- <el-input v-model="scope.row[iv.code]" class="inputSty" v-if="scope.row['IS_LH_'+iv.code] === '2'"></el-input>
|
|
|
- <el-input-number v-model="scope.row[iv.code]" class="numberSty" :precision="2" :step="0.1" v-else-if="scope.row['IS_LH_'+iv.code] === '1'" />
|
|
|
+ <el-input v-model="scope.row[iv.code]" class="inputSty"
|
|
|
+ v-if="scope.row['IS_LH_' + iv.code] === '2'"></el-input>
|
|
|
+ <el-input-number v-model="scope.row[iv.code]" class="numberSty" :precision="2" :step="0.1"
|
|
|
+ v-else-if="scope.row['IS_LH_' + iv.code] === '1'" />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table-column>
|
|
@@ -188,12 +193,14 @@
|
|
|
|
|
|
<script>
|
|
|
import importDailog from '../importPage/importDailog.vue'
|
|
|
-import {apiGetEvaluationIndicatorList,apiGetgetEvaluationInfoDataList,apiGetbinsectionList, apiGetbinstageList,apiGetExportMsg,
|
|
|
-apiPostorganizationUpdateEvaluationInfo, apiPostorganizationUpdateAddEvaluationInfo, apiGetOrganizationListAll,
|
|
|
-apiGetorganizationevaluationcommoninfo, apiPostsaveEvaluationCommonInfo, apiPostremoveEvaluationCommonInfo} from '../../api/api'
|
|
|
+import {
|
|
|
+ apiGetEvaluationIndicatorList, apiGetgetEvaluationInfoDataList, apiGetbinsectionList, apiGetbinstageList, apiGetExportMsg,
|
|
|
+ apiPostorganizationUpdateEvaluationInfo, apiPostorganizationUpdateAddEvaluationInfo, apiGetOrganizationListAll,
|
|
|
+ apiGetorganizationevaluationcommoninfo, apiPostsaveEvaluationCommonInfo, apiPostremoveEvaluationCommonInfo
|
|
|
+} from '../../api/api'
|
|
|
import * as XLSX from 'xlsx'
|
|
|
import { saveAs } from 'file-saver'
|
|
|
-import * as XLSXD from 'xlsx-js-style'
|
|
|
+import * as XLSXD from 'xlsx-js-style'
|
|
|
|
|
|
import sectionDef from '../../assets/benchmarkImg/sectionDef.png'
|
|
|
|
|
@@ -272,7 +279,7 @@ export default {
|
|
|
stage: row.stage,
|
|
|
createName: row.createName,
|
|
|
createDate: row.createTime,
|
|
|
- type: row.checkCycle === 'YDKP'?'月度考评':row.checkCycle === 'JDKP'?'季度考评':'年度考评',
|
|
|
+ type: row.checkCycle === 'YDKP' ? '月度考评' : row.checkCycle === 'JDKP' ? '季度考评' : '年度考评',
|
|
|
year: row.year,
|
|
|
recStage: '有效'
|
|
|
}
|
|
@@ -295,7 +302,7 @@ export default {
|
|
|
getorganizationData(type) {
|
|
|
let that = this
|
|
|
let params = {
|
|
|
- evaluationCycle: type ==='年度' ? 'NDKP': type ==='季度' ? 'JDKP' : 'YDKP',
|
|
|
+ evaluationCycle: type === '年度' ? 'NDKP' : type === '季度' ? 'JDKP' : 'YDKP',
|
|
|
organizationType: 'DWKP',
|
|
|
binSection: that.binSectionStr
|
|
|
}
|
|
@@ -312,10 +319,10 @@ export default {
|
|
|
let params = {
|
|
|
type: type === '年度' ? '3' : '2'
|
|
|
}
|
|
|
- apiGetbinsectionList(params).then(datas =>{
|
|
|
+ apiGetbinsectionList(params).then(datas => {
|
|
|
if (datas && datas.data) {
|
|
|
that.moduleData = datas.data
|
|
|
- that.moduleData.forEach(item =>{
|
|
|
+ that.moduleData.forEach(item => {
|
|
|
let obj = {
|
|
|
id: item.id,
|
|
|
isName: item.sectionName === '新能源(光电)' ? '新能源光电' : item.sectionName === '新能源(风电)' ? '新能源风电' : item.sectionName,
|
|
@@ -341,7 +348,7 @@ export default {
|
|
|
let params = {
|
|
|
type: '3'
|
|
|
}
|
|
|
- apiGetbinstageList(params).then(datas =>{
|
|
|
+ apiGetbinstageList(params).then(datas => {
|
|
|
if (datas && datas.data) {
|
|
|
that.stageData = datas.data
|
|
|
that.activeName = datas.data[0].stageCode
|
|
@@ -360,10 +367,10 @@ export default {
|
|
|
binSection: that.binSectionStr,
|
|
|
binStage: id
|
|
|
}
|
|
|
- apiGetEvaluationIndicatorList(params).then(datas =>{
|
|
|
+ apiGetEvaluationIndicatorList(params).then(datas => {
|
|
|
if (datas && datas.data) {
|
|
|
that.indicatorList = datas.data
|
|
|
- if (datas.data.length>0) {
|
|
|
+ if (datas.data.length > 0) {
|
|
|
that.isClickTagId = datas.data[0].id
|
|
|
that.getTableData(that.isClickTagId)
|
|
|
}
|
|
@@ -371,7 +378,7 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
handleClick(val) {
|
|
|
- this.titleMsgArr.forEach(it =>{
|
|
|
+ this.titleMsgArr.forEach(it => {
|
|
|
it.showClick = false
|
|
|
if (val.props.name === 'QQXM') {
|
|
|
if (it.isNameEn === 'QQ') {
|
|
@@ -402,7 +409,7 @@ export default {
|
|
|
})
|
|
|
console.log('val.props.name', val.props.name)
|
|
|
let stageId = ''
|
|
|
- this.stageData.forEach(it =>{
|
|
|
+ this.stageData.forEach(it => {
|
|
|
if (it.stageCode === val.props.name) {
|
|
|
stageId = it.id
|
|
|
}
|
|
@@ -417,11 +424,11 @@ export default {
|
|
|
indicatorId: id,
|
|
|
organizationShortName: that.compNameSa
|
|
|
}
|
|
|
- apiGetgetEvaluationInfoDataList(params).then(datas =>{
|
|
|
+ apiGetgetEvaluationInfoDataList(params).then(datas => {
|
|
|
if (datas && datas.data) {
|
|
|
if (datas.data.title) {
|
|
|
let header = []
|
|
|
- for(let i in datas.data.title) {
|
|
|
+ for (let i in datas.data.title) {
|
|
|
let obj = {
|
|
|
name: i,
|
|
|
children: datas.data.title[i]
|
|
@@ -453,7 +460,7 @@ export default {
|
|
|
this.activeName = 'SCJY'
|
|
|
}
|
|
|
console.log('sectionA==>', data)
|
|
|
- this.titleMsgArr.forEach(it =>{
|
|
|
+ this.titleMsgArr.forEach(it => {
|
|
|
it.showClick = false
|
|
|
if (it.isName === data.isName) {
|
|
|
it.showClick = true
|
|
@@ -461,7 +468,7 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
let stageId = ''
|
|
|
- this.stageData.forEach(it =>{
|
|
|
+ this.stageData.forEach(it => {
|
|
|
if (it.stageCode === this.activeName) {
|
|
|
stageId = it.id
|
|
|
}
|
|
@@ -471,15 +478,15 @@ export default {
|
|
|
},
|
|
|
addTableDetail() {
|
|
|
console.log('表头数据11====>>>>>>>', this.monthQuarterYearHeader)
|
|
|
- if (this.monthQuarterYearHeader.length>0) {
|
|
|
+ if (this.monthQuarterYearHeader.length > 0) {
|
|
|
let headerArr = []
|
|
|
- this.monthQuarterYearHeader.forEach(item =>{
|
|
|
+ this.monthQuarterYearHeader.forEach(item => {
|
|
|
headerArr = headerArr.concat(item.children)
|
|
|
})
|
|
|
|
|
|
console.log('表头数据22====>>>>>>>', headerArr)
|
|
|
this.addstageId = ''
|
|
|
- this.stageData.forEach(it =>{
|
|
|
+ this.stageData.forEach(it => {
|
|
|
if (it.stageCode === this.activeName) {
|
|
|
this.addstageId = it.id
|
|
|
}
|
|
@@ -487,11 +494,11 @@ export default {
|
|
|
|
|
|
let obj = {
|
|
|
isAdd: true,
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
- headerArr.forEach(it =>{
|
|
|
+ headerArr.forEach(it => {
|
|
|
obj[it.code] = ''
|
|
|
- obj['IS_LH_'+it.code] = it.flag
|
|
|
+ obj['IS_LH_' + it.code] = it.flag
|
|
|
})
|
|
|
this.monthQuarterYearData.unshift(obj)
|
|
|
}
|
|
@@ -510,7 +517,7 @@ export default {
|
|
|
binStage: that.addstageId,
|
|
|
optionMap: {}
|
|
|
}
|
|
|
- that.monthQuarterYearData.forEach(it =>{
|
|
|
+ that.monthQuarterYearData.forEach(it => {
|
|
|
if (it.isAdd) {
|
|
|
addObj.organizationId = it.organizationShortName
|
|
|
addObj.optionMap = it
|
|
@@ -520,14 +527,14 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
if (addParams.length > 0) {
|
|
|
- apiPostorganizationUpdateAddEvaluationInfo(addParams).then(datas =>{
|
|
|
+ apiPostorganizationUpdateAddEvaluationInfo(addParams).then(datas => {
|
|
|
if (datas) {
|
|
|
that.responseData(datas)
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
if (saveParams.length > 0) {
|
|
|
- apiPostorganizationUpdateEvaluationInfo(saveParams).then(datas =>{
|
|
|
+ apiPostorganizationUpdateEvaluationInfo(saveParams).then(datas => {
|
|
|
if (datas) {
|
|
|
that.responseData(datas)
|
|
|
}
|
|
@@ -551,7 +558,7 @@ export default {
|
|
|
},
|
|
|
saveDetail() {
|
|
|
let that = this
|
|
|
- apiPostorganizationUpdateEvaluationInfo(that.monthQuarterYearData).then(datas =>{
|
|
|
+ apiPostorganizationUpdateEvaluationInfo(that.monthQuarterYearData).then(datas => {
|
|
|
if (datas) {
|
|
|
if (datas.message === '成功') {
|
|
|
that.$message({
|
|
@@ -583,7 +590,7 @@ export default {
|
|
|
organizationEvaluationId: that.rowMsg.id,
|
|
|
indicatorId: that.isClickTagId
|
|
|
}
|
|
|
- apiGetExportMsg(url,params).then(datas =>{
|
|
|
+ apiGetExportMsg(url, params).then(datas => {
|
|
|
let blob = new Blob([datas])
|
|
|
saveAs(blob, '考评详情数据导出.xlsx')
|
|
|
}).catch((r) => {
|
|
@@ -602,11 +609,11 @@ export default {
|
|
|
indicatorId: that.isClickTagId,
|
|
|
organizationId: row.organizationId
|
|
|
}
|
|
|
- apiGetorganizationevaluationcommoninfo(params).then(datas =>{
|
|
|
+ apiGetorganizationevaluationcommoninfo(params).then(datas => {
|
|
|
if (datas && datas.data) {
|
|
|
if (datas.data.title) {
|
|
|
let header = []
|
|
|
- for(let i in datas.data.title) {
|
|
|
+ for (let i in datas.data.title) {
|
|
|
let obj = {
|
|
|
name: i,
|
|
|
children: datas.data.title[i]
|
|
@@ -620,9 +627,9 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
addTableDetailInfo() {
|
|
|
- if (this.monthQuarterYearDetailHeader.length>0) {
|
|
|
+ if (this.monthQuarterYearDetailHeader.length > 0) {
|
|
|
let headerArr = []
|
|
|
- this.monthQuarterYearDetailHeader.forEach(item =>{
|
|
|
+ this.monthQuarterYearDetailHeader.forEach(item => {
|
|
|
headerArr = headerArr.concat(item.children)
|
|
|
})
|
|
|
|
|
@@ -630,13 +637,13 @@ export default {
|
|
|
isAdd: true,
|
|
|
deptName: this.userMes.deptName
|
|
|
}
|
|
|
- headerArr.forEach(it =>{
|
|
|
+ headerArr.forEach(it => {
|
|
|
if (it.flag === '1') {
|
|
|
obj[it.code] = 0
|
|
|
} else {
|
|
|
obj[it.code] = ''
|
|
|
}
|
|
|
- obj['IS_LH_'+it.code] = it.flag
|
|
|
+ obj['IS_LH_' + it.code] = it.flag
|
|
|
})
|
|
|
this.monthQuarterYearDetailData.unshift(obj)
|
|
|
}
|
|
@@ -644,7 +651,7 @@ export default {
|
|
|
saveAddDetailInfo() {
|
|
|
let that = this
|
|
|
let addParams = []
|
|
|
- that.monthQuarterYearDetailData.forEach(it =>{
|
|
|
+ that.monthQuarterYearDetailData.forEach(it => {
|
|
|
let addObj = {
|
|
|
organizationEvaluationId: that.rowMsg.id,
|
|
|
indicatorId: that.isClickTagId,
|
|
@@ -653,7 +660,7 @@ export default {
|
|
|
}
|
|
|
addParams.push(addObj)
|
|
|
})
|
|
|
- apiPostsaveEvaluationCommonInfo(addParams).then(datas =>{
|
|
|
+ apiPostsaveEvaluationCommonInfo(addParams).then(datas => {
|
|
|
if (datas) {
|
|
|
that.detailVisible = false
|
|
|
that.responseData(datas)
|
|
@@ -668,12 +675,12 @@ export default {
|
|
|
}).then(() => {
|
|
|
let that = this
|
|
|
let parArr = []
|
|
|
- for(let i in row) {
|
|
|
+ for (let i in row) {
|
|
|
if (i.indexOf('ID_') !== -1) {
|
|
|
parArr.push(row[i])
|
|
|
}
|
|
|
}
|
|
|
- apiPostremoveEvaluationCommonInfo(parArr.join(',')).then(datas =>{
|
|
|
+ apiPostremoveEvaluationCommonInfo(parArr.join(',')).then(datas => {
|
|
|
if (datas) {
|
|
|
that.changeDetailList(that.detailMsg)
|
|
|
}
|
|
@@ -685,14 +692,16 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="less">
|
|
|
-.monthQuarterYearFrom{
|
|
|
- .el-overlay{
|
|
|
- .el-dialog{
|
|
|
+.monthQuarterYearFrom {
|
|
|
+ .el-overlay {
|
|
|
+ .el-dialog {
|
|
|
+
|
|
|
// margin-top: 7vh;
|
|
|
- .el-dialog__body{
|
|
|
+ .el-dialog__body {
|
|
|
padding: 0 20px !important;
|
|
|
- .startDetail{
|
|
|
- .starttitleSty{
|
|
|
+
|
|
|
+ .startDetail {
|
|
|
+ .starttitleSty {
|
|
|
font-size: 18px;
|
|
|
font-family: Microsoft YaHei;
|
|
|
font-weight: bold;
|
|
@@ -700,58 +709,73 @@ export default {
|
|
|
// line-height: 12px;
|
|
|
margin: 20px 0 20px 10px;
|
|
|
}
|
|
|
- .danjuMsg{
|
|
|
+
|
|
|
+ .danjuMsg {
|
|
|
border: 1px solid #D6DBEA;
|
|
|
padding: 10px 20px;
|
|
|
border-radius: 10px;
|
|
|
+
|
|
|
// margin-bottom: 20px;
|
|
|
- .danjuMsg_data{
|
|
|
+ .danjuMsg_data {
|
|
|
padding: 5px 0 10px 0;
|
|
|
- .data_tit{
|
|
|
+
|
|
|
+ .data_tit {
|
|
|
margin-right: 10px;
|
|
|
font-weight: bold;
|
|
|
font-size: 14px;
|
|
|
font-family: Microsoft YaHei;
|
|
|
color: #8991B0;
|
|
|
}
|
|
|
- .data_tit_wd{
|
|
|
+
|
|
|
+ .data_tit_wd {
|
|
|
display: inline-block;
|
|
|
width: 90px;
|
|
|
}
|
|
|
- .el-form-item--small{
|
|
|
- .el-input{
|
|
|
+
|
|
|
+ .el-form-item--small {
|
|
|
+ .el-input {
|
|
|
height: 25px;
|
|
|
width: 160px;
|
|
|
}
|
|
|
+
|
|
|
margin-bottom: 0;
|
|
|
- .el-input-number{
|
|
|
+
|
|
|
+ .el-input-number {
|
|
|
height: 25px;
|
|
|
- .el-input-number__decrease, .el-input-number__increase{
|
|
|
+
|
|
|
+ .el-input-number__decrease,
|
|
|
+ .el-input-number__increase {
|
|
|
right: -39px;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- .el-select, .el-input{
|
|
|
+
|
|
|
+ .el-select,
|
|
|
+ .el-input {
|
|
|
width: 100%;
|
|
|
}
|
|
|
- .monthQuarterYear{
|
|
|
+
|
|
|
+ .monthQuarterYear {
|
|
|
display: flex;
|
|
|
width: 100%;
|
|
|
margin-top: 20px;
|
|
|
- .tableMain{
|
|
|
+
|
|
|
+ .tableMain {
|
|
|
width: calc(100% - 100px);
|
|
|
- .el-tabs__header{
|
|
|
- .el-tabs__nav{
|
|
|
- .el-tabs__item{
|
|
|
+
|
|
|
+ .el-tabs__header {
|
|
|
+ .el-tabs__nav {
|
|
|
+ .el-tabs__item {
|
|
|
font-size: 18px;
|
|
|
font-family: Microsoft YaHei;
|
|
|
font-weight: bold;
|
|
|
- margin: 0 10px;
|
|
|
+ margin: 0 10px;
|
|
|
color: #8991B0;
|
|
|
}
|
|
|
- .is-active{
|
|
|
+
|
|
|
+ .is-active {
|
|
|
font-size: 18px;
|
|
|
font-family: Microsoft YaHei;
|
|
|
font-weight: bold;
|
|
@@ -760,14 +784,17 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- .detailsHeader{
|
|
|
+
|
|
|
+ .detailsHeader {
|
|
|
width: 100%;
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
- .headerLeft{
|
|
|
+
|
|
|
+ .headerLeft {
|
|
|
display: flex;
|
|
|
width: 65%;
|
|
|
overflow-x: auto;
|
|
|
+
|
|
|
.tagArr {
|
|
|
height: 33px;
|
|
|
margin-right: 10px;
|
|
@@ -790,40 +817,49 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- .headerRight{
|
|
|
+
|
|
|
+ .headerRight {
|
|
|
display: flex;
|
|
|
justify-content: end;
|
|
|
width: 35%;
|
|
|
margin-bottom: 5px;
|
|
|
- .seachFor{
|
|
|
+
|
|
|
+ .seachFor {
|
|
|
display: flex;
|
|
|
- .el-input{
|
|
|
+
|
|
|
+ .el-input {
|
|
|
height: 30px;
|
|
|
- .el-input__inner{
|
|
|
- height:30px;
|
|
|
+
|
|
|
+ .el-input__inner {
|
|
|
+ height: 30px;
|
|
|
}
|
|
|
- .el-input__suffix{
|
|
|
- .el-select__caret{
|
|
|
- line-height:30px;
|
|
|
+
|
|
|
+ .el-input__suffix {
|
|
|
+ .el-select__caret {
|
|
|
+ line-height: 30px;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- .el-icon{
|
|
|
+
|
|
|
+ .el-icon {
|
|
|
margin: 5px 10px 0 10px;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.tableBtn {
|
|
|
display: flex;
|
|
|
height: 20px;
|
|
|
margin: 5px 8px 0 8px;
|
|
|
// width: 20%;
|
|
|
width: fit-content;
|
|
|
- img{
|
|
|
+
|
|
|
+ img {
|
|
|
margin-right: 5px;
|
|
|
margin-top: 1px;
|
|
|
}
|
|
|
- span{
|
|
|
+
|
|
|
+ span {
|
|
|
display: inline-block;
|
|
|
width: 35px;
|
|
|
font-size: 14px;
|
|
@@ -831,51 +867,63 @@ export default {
|
|
|
font-weight: 400;
|
|
|
}
|
|
|
}
|
|
|
- .add{
|
|
|
+
|
|
|
+ .add {
|
|
|
cursor: pointer;
|
|
|
- span{
|
|
|
+
|
|
|
+ span {
|
|
|
color: #3B7AD1;
|
|
|
}
|
|
|
}
|
|
|
- .save{
|
|
|
+
|
|
|
+ .save {
|
|
|
cursor: pointer;
|
|
|
- span{
|
|
|
+
|
|
|
+ span {
|
|
|
color: #50C14E;
|
|
|
}
|
|
|
}
|
|
|
- .import{
|
|
|
+
|
|
|
+ .import {
|
|
|
cursor: pointer;
|
|
|
- span{
|
|
|
+
|
|
|
+ span {
|
|
|
color: #ce1e78;
|
|
|
}
|
|
|
}
|
|
|
- .export{
|
|
|
+
|
|
|
+ .export {
|
|
|
cursor: pointer;
|
|
|
- span{
|
|
|
+
|
|
|
+ span {
|
|
|
color: #2baa8a;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.el-table {
|
|
|
- .indicitem{
|
|
|
+ .indicitem {
|
|
|
color: #409EFF;
|
|
|
font-size: 12px;
|
|
|
margin-right: 20px;
|
|
|
- cursor:pointer;
|
|
|
- &:hover{
|
|
|
+ cursor: pointer;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
text-decoration: underline;
|
|
|
}
|
|
|
}
|
|
|
- .el-table__header-wrapper{
|
|
|
- .el-table__header{
|
|
|
+
|
|
|
+ .el-table__header-wrapper {
|
|
|
+ .el-table__header {
|
|
|
.el-table__cell {
|
|
|
border-bottom: none !important;
|
|
|
}
|
|
|
- thead{
|
|
|
- tr{
|
|
|
- th{
|
|
|
- .cell{
|
|
|
+
|
|
|
+ thead {
|
|
|
+ tr {
|
|
|
+ th {
|
|
|
+ .cell {
|
|
|
line-height: 16px;
|
|
|
}
|
|
|
}
|
|
@@ -883,25 +931,31 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.el-table__body-wrapper {
|
|
|
height: 47vh !important;
|
|
|
- .el-scrollbar{
|
|
|
- .el-table__body{
|
|
|
+
|
|
|
+ .el-scrollbar {
|
|
|
+ .el-table__body {
|
|
|
.error-row {
|
|
|
--el-table-tr-bg-color: #fdecec;
|
|
|
- &:hover > td{
|
|
|
+
|
|
|
+ &:hover>td {
|
|
|
background: #fdecec !important;
|
|
|
}
|
|
|
}
|
|
|
- .tr{
|
|
|
- td{
|
|
|
+
|
|
|
+ .tr {
|
|
|
+ td {
|
|
|
padding: 0;
|
|
|
- .cell{
|
|
|
+
|
|
|
+ .cell {
|
|
|
// background: #F6F7FA;
|
|
|
line-height: 47px;
|
|
|
height: 47px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
td:hover {
|
|
|
line-height: 45px;
|
|
|
height: 45px;
|
|
@@ -910,13 +964,15 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- .el-table--border .el-table__cell{
|
|
|
+
|
|
|
+ .el-table--border .el-table__cell {
|
|
|
border: none;
|
|
|
}
|
|
|
- .el-table thead.is-group th.el-table__cell{
|
|
|
+
|
|
|
+ .el-table thead.is-group th.el-table__cell {
|
|
|
background: transparent;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
.tooltipCC {
|
|
|
width: 180px;
|
|
|
display: inline-block;
|
|
@@ -925,13 +981,15 @@ export default {
|
|
|
white-space: nowrap;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.el-pagination {
|
|
|
margin-top: 20px;
|
|
|
text-align: end;
|
|
|
position: relative;
|
|
|
}
|
|
|
}
|
|
|
- .tableSeach{
|
|
|
+
|
|
|
+ .tableSeach {
|
|
|
width: 88px;
|
|
|
height: 63vh;
|
|
|
margin-left: 10px;
|
|
@@ -940,21 +998,25 @@ export default {
|
|
|
padding: 5px 0;
|
|
|
border-radius: 5px;
|
|
|
overflow-y: auto;
|
|
|
- .seachType{
|
|
|
+
|
|
|
+ .seachType {
|
|
|
width: 78px;
|
|
|
height: 78px;
|
|
|
cursor: pointer;
|
|
|
border-left: 3px solid transparent;
|
|
|
- img{
|
|
|
+
|
|
|
+ img {
|
|
|
margin-top: 17px;
|
|
|
margin-left: 27px;
|
|
|
}
|
|
|
- p{
|
|
|
+
|
|
|
+ p {
|
|
|
text-align: center;
|
|
|
font-size: 14px;
|
|
|
}
|
|
|
}
|
|
|
- .seachTypeCha{
|
|
|
+
|
|
|
+ .seachTypeCha {
|
|
|
background: #E6EBF5;
|
|
|
cursor: pointer;
|
|
|
border-left: 3px solid #3B7AD1;
|
|
@@ -962,21 +1024,25 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- .detailSeach{
|
|
|
+
|
|
|
+ .detailSeach {
|
|
|
display: flex;
|
|
|
justify-content: flex-end;
|
|
|
margin: 15px 0;
|
|
|
+
|
|
|
.tableBtn {
|
|
|
display: flex;
|
|
|
height: 20px;
|
|
|
margin: 5px 8px 0 8px;
|
|
|
// width: 20%;
|
|
|
width: fit-content;
|
|
|
- img{
|
|
|
+
|
|
|
+ img {
|
|
|
margin-right: 5px;
|
|
|
margin-top: 1px;
|
|
|
}
|
|
|
- span{
|
|
|
+
|
|
|
+ span {
|
|
|
display: inline-block;
|
|
|
width: 35px;
|
|
|
font-size: 14px;
|
|
@@ -984,36 +1050,44 @@ export default {
|
|
|
font-weight: 400;
|
|
|
}
|
|
|
}
|
|
|
- .add{
|
|
|
+
|
|
|
+ .add {
|
|
|
cursor: pointer;
|
|
|
- span{
|
|
|
+
|
|
|
+ span {
|
|
|
color: #3B7AD1;
|
|
|
}
|
|
|
}
|
|
|
- .save{
|
|
|
+
|
|
|
+ .save {
|
|
|
cursor: pointer;
|
|
|
- span{
|
|
|
+
|
|
|
+ span {
|
|
|
color: #50C14E;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.el-table {
|
|
|
- .indicitem{
|
|
|
+ .indicitem {
|
|
|
color: #409EFF;
|
|
|
font-size: 12px;
|
|
|
margin-right: 20px;
|
|
|
- cursor:pointer;
|
|
|
- &:hover{
|
|
|
+ cursor: pointer;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
text-decoration: underline;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- .el-dialog__footer{
|
|
|
- .dialog-footer{
|
|
|
+
|
|
|
+ .el-dialog__footer {
|
|
|
+ .dialog-footer {
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
- .el-button{
|
|
|
+
|
|
|
+ .el-button {
|
|
|
width: 180px !important;
|
|
|
height: 40px !important;
|
|
|
}
|
|
@@ -1021,6 +1095,5 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
-}
|
|
|
-</style>
|
|
|
+
|
|
|
+}</style>
|