monthQuarterYearFrom.vue 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791
  1. <template>
  2. <div class="monthQuarterYearFrom">
  3. <el-dialog title="考评详情" v-model="dialogVisible" :fullscreen="true" :close-on-click-modal="false">
  4. <div class="startDetail">
  5. <p class="starttitleSty">单据信息:</p>
  6. <el-row class="danjuMsg">
  7. <el-col :span="6">
  8. <div class="danjuMsg_data">
  9. <span class="data_tit">业务编号:</span>
  10. <span>{{receiptMsg.code}}</span>
  11. </div>
  12. <div class="danjuMsg_data">
  13. <span class="data_tit">创建日期:</span>
  14. <span>{{receiptMsg.createDate}}</span>
  15. </div>
  16. </el-col>
  17. <el-col :span="6">
  18. <div class="danjuMsg_data">
  19. <span class="data_tit">业务简述:</span>
  20. <span>{{receiptMsg.des}}</span>
  21. </div>
  22. <div class="danjuMsg_data">
  23. <span class="data_tit">业务类别:</span>
  24. <span>{{receiptMsg.type}}</span>
  25. </div>
  26. </el-col>
  27. <el-col :span="6">
  28. <div class="danjuMsg_data">
  29. <span class="data_tit">流程状态:</span>
  30. <span>{{receiptMsg.stage}}</span>
  31. </div>
  32. <div class="danjuMsg_data">
  33. <span class="data_tit">年度:</span>
  34. <span>{{receiptMsg.year}}</span>
  35. </div>
  36. </el-col>
  37. <el-col :span="6">
  38. <div class="danjuMsg_data">
  39. <span class="data_tit">创建人:</span>
  40. <span>{{receiptMsg.createName}}</span>
  41. </div>
  42. <div class="danjuMsg_data">
  43. <span class="data_tit">单据状态:</span>
  44. <span>{{receiptMsg.recStage}}</span>
  45. </div>
  46. </el-col>
  47. </el-row>
  48. <div class="monthQuarterYear">
  49. <el-tabs v-model="activeName" class="tableMain" @tab-click="handleClick">
  50. <el-tab-pane v-for="it in stageData" :key="it.id" :label="it.stageName" :name="it.stageCode">
  51. <div class="detailsHeader">
  52. <div class="headerLeft">
  53. <el-tag v-for="tag in indicatorList" :key="tag.id" size="large" class="tagArr"
  54. effect="dark" :type="tag.id === isClickTagId ? '': 'info'" @click="handleShowPage(tag)">
  55. <span>{{ tag.indicator_name }}</span>
  56. </el-tag>
  57. </div>
  58. <div class="headerRight">
  59. <div class="seachFor">
  60. <el-input v-model="compNameSa" placeholder="请输入单位名称" @keyup.enter="getTableData(isClickTagId)"></el-input>
  61. <!-- <el-icon :size="20" color="#3B7AD1" @click="getTableData(isClickTagId)"><Search /></el-icon> -->
  62. </div>
  63. <div class="tableBtn add" @click="addTableDetail"
  64. v-if="(activeName === 'ZDZX' || activeName === 'GLSX') && indicatorList.length > 0">
  65. <img :src="addIcon" alt="">
  66. <span>新增</span>
  67. </div>
  68. <div class="tableBtn save" @click="saveAddDetail"
  69. v-if="(activeName === 'ZDZX' || activeName === 'GLSX') && indicatorList.length > 0">
  70. <img :src="saveIcon" alt="">
  71. <span>保存</span>
  72. </div>
  73. <div class="tableBtn save" @click="saveDetail" v-else>
  74. <img :src="saveIcon" alt="">
  75. <span>保存</span>
  76. </div>
  77. <div class="tableBtn import" @click="handleImport">
  78. <img :src="importIcon" alt="">
  79. <span>导入</span>
  80. </div>
  81. <div class="tableBtn export" @click="handleExport">
  82. <img :src="exportIcon" alt="">
  83. <span>导出</span>
  84. </div>
  85. </div>
  86. </div>
  87. <el-table :data="monthQuarterYearData" style="width: 100%" ref="monthQuarterYearTT" :border="true" >
  88. <el-table-column type="index" label="排名" align="center"></el-table-column>
  89. <el-table-column label="考评单位" prop="organizationShortName" width="300">
  90. <template #default="scope">
  91. <el-select v-model="scope.row.organizationShortName" placeholder="请选择审核状态">
  92. <el-option
  93. v-for="item in organizationData"
  94. :key="item.organizationId"
  95. :label="item.organizationShortName"
  96. :value="item.organizationId">
  97. </el-option>
  98. </el-select>
  99. </template>
  100. </el-table-column>
  101. <el-table-column v-for="(it, index) in monthQuarterYearHeader" :key="index" :label="it.name" align="center">
  102. <el-table-column v-for="(iv, index) in it.children" :key="index" :label="iv.key"
  103. align="center" width="150" sortable :sort-method="(a,b)=>sortMethods(a,b,iv.code)">
  104. <template #default="scope">
  105. <el-select v-model="scope.row[iv.code]" class="selectSty" placeholder="请选择审核状态" v-if="scope.row['IS_LH_'+iv.code] === '3'">
  106. <el-option
  107. v-for="item in statusData"
  108. :key="item.id"
  109. :label="item.name"
  110. :value="item.id">
  111. </el-option>
  112. </el-select>
  113. <el-input v-model="scope.row[iv.code]" class="inputSty" v-else-if="scope.row['IS_LH_'+iv.code] === '2'"></el-input>
  114. <el-input-number v-model="scope.row[iv.code]" class="numberSty" :precision="2" :step="0.1" v-else />
  115. </template>
  116. </el-table-column>
  117. </el-table-column>
  118. </el-table>
  119. </el-tab-pane>
  120. </el-tabs>
  121. <div class="tableSeach">
  122. <div class="seachType" v-for="item in titleMsgArr" :key="item.isName"
  123. :class="item.showClick? 'seachTypeCha':''" @click="changType(item)">
  124. <img :src="item.img" alt="" v-if="!item.showClick">
  125. <img :src="item.clickImg" alt="" v-else>
  126. <p :style="item.showClick? 'color: #3B7AD1' : ''">{{item.isName}}</p>
  127. </div>
  128. </div>
  129. </div>
  130. </div>
  131. <template #footer>
  132. <span class="dialog-footer">
  133. <el-button type="primary" @click="dialogVisible = false">取 消</el-button>
  134. </span>
  135. </template>
  136. </el-dialog>
  137. <import-dailog ref="importPage" @successImport="successImport"></import-dailog>
  138. </div>
  139. </template>
  140. <script>
  141. import importDailog from '../importPage/importDailog.vue'
  142. import {apiGetEvaluationIndicatorList,apiGetgetEvaluationInfoDataList,apiGetbinsectionList, apiGetbinstageList,apiGetExportMsg,
  143. apiPostorganizationUpdateEvaluationInfo, apiPostorganizationUpdateAddEvaluationInfo, apiGetOrganizationListAll} from '../../api/api'
  144. import * as XLSX from 'xlsx'
  145. import { saveAs } from 'file-saver'
  146. import * as XLSXD from 'xlsx-js-style'
  147. import sectionDef from '../../assets/benchmarkImg/sectionDef.png'
  148. import sectionCha from '../../assets/benchmarkImg/sectionCha.png'
  149. import addIcon from '../../assets/btnIcon/add.png'
  150. import saveIcon from '../../assets/btnIcon/save.png'
  151. import exportIcon from '../../assets/btnIcon/export.png'
  152. import importIcon from '../../assets/btnIcon/import.png'
  153. export default {
  154. components: {
  155. importDailog
  156. },
  157. data() {
  158. return {
  159. dialogVisible: false,
  160. activeName: '',
  161. monthQuarterYearData: [],
  162. monthQuarterYearHeader: [],
  163. indicatorList: [],
  164. isClickTagId: '',
  165. compNameSa: '',
  166. receiptMsg: {
  167. code: '',
  168. des: '',
  169. stage: '',
  170. createName: '',
  171. createDate: '',
  172. type: '',
  173. year: '',
  174. recStage: ''
  175. },
  176. rowMsg: {},
  177. moduleData: [],
  178. stageData: [],
  179. titleMsgArr: [],
  180. organizationData: [],
  181. statusData: [],
  182. binSectionStr: '',
  183. addIcon: addIcon,
  184. saveIcon: saveIcon,
  185. exportIcon: exportIcon,
  186. importIcon: importIcon,
  187. addstageId: '',
  188. cycleType: '',
  189. userMes: {}
  190. }
  191. },
  192. created() {
  193. this.statusData = [
  194. {
  195. name: '已确认',
  196. id: '1'
  197. },
  198. {
  199. name: '待确认',
  200. id: '0'
  201. },
  202. {
  203. name: '不合格',
  204. id: '-1'
  205. }
  206. ]
  207. },
  208. methods: {
  209. init(row, type) {
  210. this.dialogVisible = true
  211. this.receiptMsg = {
  212. code: row.organizationEvaluationCode,
  213. des: row.des,
  214. stage: row.stage,
  215. createName: row.createName,
  216. createDate: row.createTime,
  217. type: row.checkCycle === 'YDKP'?'月度考评':row.checkCycle === 'JDKP'?'季度考评':'年度考评',
  218. year: row.year,
  219. recStage: '有效'
  220. }
  221. this.userMes = JSON.parse(window.sessionStorage.getItem('user'))
  222. this.cycleType = type
  223. this.getModelData(type)
  224. this.rowMsg = row
  225. },
  226. sortMethods(a, b, it) {
  227. if (a[it] < b[it]) {
  228. return -1
  229. }
  230. },
  231. //获取单位数据
  232. getorganizationData(type) {
  233. let that = this
  234. let params = {
  235. evaluationCycle: type ==='年度' ? 'NDKP': type ==='季度' ? 'JDKP' : 'YDKP',
  236. organizationType: 'DWKP',
  237. binSection: that.binSectionStr
  238. }
  239. apiGetOrganizationListAll(params).then(datas => {
  240. if (datas && datas.data) {
  241. that.organizationData = datas.data
  242. }
  243. })
  244. },
  245. // 获取业务属性
  246. getModelData(type) {
  247. let that = this
  248. that.titleMsgArr = []
  249. let params = {
  250. type: type === '年度' ? '3' : '2'
  251. }
  252. apiGetbinsectionList(params).then(datas =>{
  253. if (datas && datas.data) {
  254. that.moduleData = datas.data
  255. that.moduleData.forEach(item =>{
  256. let obj = {
  257. id: item.id,
  258. isName: item.sectionName === '新能源(光电)' ? '新能源光电' : item.sectionName === '新能源(风电)' ? '新能源风电' : item.sectionName,
  259. isNameEn: item.sectionCode,
  260. showClick: false,
  261. isClass: 'sectionDef',
  262. img: sectionDef,
  263. isClassC: 'sectionCha',
  264. clickImg: sectionCha
  265. }
  266. that.titleMsgArr.push(obj)
  267. })
  268. that.titleMsgArr[0].showClick = true
  269. that.binSectionStr = that.titleMsgArr[0].id
  270. that.getStageData(type)
  271. that.getorganizationData(type)
  272. }
  273. })
  274. },
  275. //根据业务属性获取业务阶段
  276. getStageData(type) {
  277. let that = this
  278. let params = {}
  279. if (type !== '年度') {
  280. params = {
  281. type: '3'
  282. }
  283. }
  284. apiGetbinstageList(params).then(datas =>{
  285. if (datas && datas.data) {
  286. that.stageData = datas.data
  287. that.activeName = datas.data[0].stageCode
  288. that.getTableHeaderData(datas.data[0].id)
  289. }
  290. })
  291. },
  292. //获取指标数据
  293. getTableHeaderData(id) {
  294. let that = this
  295. that.monthQuarterYearHeader = []
  296. that.monthQuarterYearData = []
  297. that.isClickTagId = ''
  298. let params = {
  299. organizationEvaluationId: that.rowMsg.id,
  300. binSection: that.binSectionStr,
  301. binStage: id
  302. }
  303. apiGetEvaluationIndicatorList(params).then(datas =>{
  304. if (datas && datas.data) {
  305. that.indicatorList = datas.data
  306. if (datas.data.length>0) {
  307. that.isClickTagId = datas.data[0].id
  308. that.getTableData(that.isClickTagId)
  309. }
  310. }
  311. })
  312. },
  313. handleClick(val) {
  314. let stageId = ''
  315. this.stageData.forEach(it =>{
  316. if (it.stageCode === val.props.name) {
  317. stageId = it.id
  318. }
  319. })
  320. this.getTableHeaderData(stageId)
  321. },
  322. //获取表格数据
  323. getTableData(id) {
  324. let that = this
  325. let params = {
  326. organizationEvaluationId: that.rowMsg.id,
  327. indicatorId: id,
  328. organizationShortName: that.compNameSa
  329. }
  330. apiGetgetEvaluationInfoDataList(params).then(datas =>{
  331. if (datas && datas.data) {
  332. if (datas.data.title) {
  333. let header = []
  334. for(let i in datas.data.title) {
  335. let obj = {
  336. name: i,
  337. children: datas.data.title[i]
  338. }
  339. header.push(obj)
  340. }
  341. that.monthQuarterYearHeader = header
  342. }
  343. that.monthQuarterYearData = datas.data.value
  344. }
  345. })
  346. },
  347. handleShowPage(tag) {
  348. this.isClickTagId = tag.id
  349. this.monthQuarterYearHeader = []
  350. this.monthQuarterYearData = []
  351. this.getTableData(tag.id)
  352. },
  353. changType(data) {
  354. this.titleMsgArr.forEach(it =>{
  355. it.showClick = false
  356. if (it.isName === data.isName) {
  357. it.showClick = true
  358. this.binSectionStr = it.id
  359. }
  360. })
  361. let stageId = ''
  362. this.stageData.forEach(it =>{
  363. if (it.stageCode === this.activeName) {
  364. stageId = it.id
  365. }
  366. })
  367. this.getTableHeaderData(stageId)
  368. this.getorganizationData(this.cycleType)
  369. },
  370. addTableDetail() {
  371. console.log('表头数据11====>>>>>>>', this.monthQuarterYearHeader)
  372. if (this.monthQuarterYearHeader.length>0) {
  373. let headerArr = []
  374. this.monthQuarterYearHeader.forEach(item =>{
  375. headerArr = headerArr.concat(item.children)
  376. })
  377. console.log('表头数据22====>>>>>>>', headerArr)
  378. this.addstageId = ''
  379. this.stageData.forEach(it =>{
  380. if (it.stageCode === this.activeName) {
  381. this.addstageId = it.id
  382. }
  383. })
  384. let obj = {
  385. isAdd: true,
  386. }
  387. headerArr.forEach(it =>{
  388. obj[it.code] = ''
  389. obj['IS_LH_'+it.code] = it.flag
  390. })
  391. this.monthQuarterYearData.unshift(obj)
  392. }
  393. console.log('表格数据====>>>>>>>', this.monthQuarterYearData)
  394. },
  395. saveAddDetail() {
  396. let that = this
  397. let addParams = []
  398. let saveParams = []
  399. let addObj = {
  400. // organizationId: that.userMes.unitId,
  401. // organizationId: "23079300",
  402. organizationEvaluationId: that.rowMsg.id,
  403. indicatorId: that.isClickTagId,
  404. binSection: that.binSectionStr,
  405. binStage: that.addstageId,
  406. optionMap: {}
  407. }
  408. that.monthQuarterYearData.forEach(it =>{
  409. if (it.isAdd) {
  410. addObj.organizationId = it.organizationShortName
  411. addObj.optionMap = it
  412. addParams.push(addObj)
  413. } else {
  414. saveParams.push(it)
  415. }
  416. })
  417. if (addParams.length > 0) {
  418. apiPostorganizationUpdateAddEvaluationInfo(addParams).then(datas =>{
  419. if (datas) {
  420. that.responseData(datas)
  421. }
  422. })
  423. }
  424. if (saveParams.length > 0) {
  425. apiPostorganizationUpdateEvaluationInfo(saveParams).then(datas =>{
  426. if (datas) {
  427. that.responseData(datas)
  428. }
  429. })
  430. }
  431. },
  432. // 返回数据
  433. responseData(datas) {
  434. if (datas.message === '成功') {
  435. this.$message({
  436. message: '考评详情信息保存成功',
  437. type: 'success'
  438. });
  439. } else {
  440. this.$message({
  441. message: datas.message,
  442. type: 'error'
  443. });
  444. }
  445. this.getTableData(this.isClickTagId)
  446. },
  447. saveDetail() {
  448. let that = this
  449. apiPostorganizationUpdateEvaluationInfo(that.monthQuarterYearData).then(datas =>{
  450. if (datas) {
  451. if (datas.message === '成功') {
  452. that.$message({
  453. message: '考评详情信息保存成功',
  454. type: 'success'
  455. });
  456. } else {
  457. that.$message({
  458. message: datas.message,
  459. type: 'error'
  460. });
  461. }
  462. that.getTableData(that.isClickTagId)
  463. }
  464. })
  465. },
  466. handleImport() {
  467. this.$refs.importPage.upload.title = "考评详情信息导入"
  468. this.$refs.importPage.upload.open = true
  469. this.$refs.importPage.upload.url = '/organization-evaluation-info/import-excel'
  470. },
  471. successImport(val) {
  472. that.getTableData(that.isClickTagId)
  473. },
  474. handleExport() {
  475. let that = this
  476. let url = 'organization-evaluation-info/download-excel'
  477. let params = {
  478. organizationEvaluationId: that.rowMsg.id,
  479. indicatorId: that.isClickTagId
  480. }
  481. apiGetExportMsg(url,params).then(datas =>{
  482. let blob = new Blob([datas])
  483. saveAs(blob, '考评详情数据导出.xlsx')
  484. }).catch((r) => {
  485. console.error(r)
  486. })
  487. },
  488. }
  489. }
  490. </script>
  491. <style lang="less">
  492. .monthQuarterYearFrom{
  493. .el-overlay{
  494. .el-dialog{
  495. // margin-top: 7vh;
  496. .el-dialog__body{
  497. padding: 0 20px !important;
  498. .startDetail{
  499. .starttitleSty{
  500. font-size: 18px;
  501. font-family: Microsoft YaHei;
  502. font-weight: bold;
  503. color: #3B7AD1;
  504. // line-height: 12px;
  505. margin: 20px 0 20px 10px;
  506. }
  507. .danjuMsg{
  508. border: 1px solid #D6DBEA;
  509. padding: 10px 20px;
  510. border-radius: 10px;
  511. // margin-bottom: 20px;
  512. .danjuMsg_data{
  513. padding: 5px 0 10px 0;
  514. .data_tit{
  515. margin-right: 10px;
  516. font-weight: bold;
  517. font-size: 14px;
  518. font-family: Microsoft YaHei;
  519. color: #8991B0;
  520. }
  521. .data_tit_wd{
  522. display: inline-block;
  523. width: 90px;
  524. }
  525. .el-form-item--small{
  526. .el-input{
  527. height: 25px;
  528. width: 160px;
  529. }
  530. margin-bottom: 0;
  531. .el-input-number{
  532. height: 25px;
  533. .el-input-number__decrease, .el-input-number__increase{
  534. right: -39px;
  535. }
  536. }
  537. }
  538. }
  539. }
  540. .el-select, .el-input{
  541. width: 100%;
  542. }
  543. .monthQuarterYear{
  544. display: flex;
  545. width: 100%;
  546. margin-top: 20px;
  547. .tableMain{
  548. width: calc(100% - 100px);
  549. .el-tabs__header{
  550. .el-tabs__nav{
  551. .el-tabs__item{
  552. font-size: 18px;
  553. font-family: Microsoft YaHei;
  554. font-weight: bold;
  555. margin: 0 10px;
  556. color: #8991B0;
  557. }
  558. .is-active{
  559. font-size: 18px;
  560. font-family: Microsoft YaHei;
  561. font-weight: bold;
  562. color: #3B7AD1;
  563. margin: 0 10px;
  564. }
  565. }
  566. }
  567. .detailsHeader{
  568. width: 100%;
  569. display: flex;
  570. justify-content: space-between;
  571. .headerLeft{
  572. display: flex;
  573. width: 65%;
  574. overflow-x: auto;
  575. .tagArr {
  576. height: 33px;
  577. margin-right: 10px;
  578. cursor: pointer;
  579. margin-bottom: 10px;
  580. }
  581. .el-tag--dark {
  582. background-color: #184FB4;
  583. border: 1px solid #184FB4;
  584. }
  585. .el-tag--info {
  586. background-color: #E6EBF5;
  587. border: 1px solid #E6EBF5;
  588. color: #9DA5BE;
  589. .el-tag__close {
  590. color: #9DA5BE;
  591. }
  592. }
  593. }
  594. .headerRight{
  595. display: flex;
  596. justify-content: end;
  597. width: 35%;
  598. margin-bottom: 5px;
  599. .seachFor{
  600. display: flex;
  601. .el-input{
  602. height: 30px;
  603. .el-input__inner{
  604. height:30px;
  605. }
  606. .el-input__suffix{
  607. .el-select__caret{
  608. line-height:30px;
  609. }
  610. }
  611. }
  612. .el-icon{
  613. margin: 5px 10px 0 10px;
  614. cursor: pointer;
  615. }
  616. }
  617. .tableBtn {
  618. display: flex;
  619. height: 20px;
  620. margin: 5px 8px 0 8px;
  621. width: 20%;
  622. img{
  623. margin-right: 5px;
  624. margin-top: 1px;
  625. }
  626. span{
  627. display: inline-block;
  628. width: 100%;
  629. font-size: 14px;
  630. font-family: Microsoft YaHei;
  631. font-weight: 400;
  632. }
  633. }
  634. .add{
  635. cursor: pointer;
  636. span{
  637. color: #3B7AD1;
  638. }
  639. }
  640. .save{
  641. cursor: pointer;
  642. span{
  643. color: #50C14E;
  644. }
  645. }
  646. .import{
  647. cursor: pointer;
  648. span{
  649. color: #ce1e78;
  650. }
  651. }
  652. .export{
  653. cursor: pointer;
  654. span{
  655. color: #2baa8a;
  656. }
  657. }
  658. }
  659. }
  660. .el-table {
  661. .el-table__header-wrapper{
  662. .el-table__header{
  663. .el-table__cell {
  664. border-bottom: none !important;
  665. }
  666. thead{
  667. tr{
  668. th{
  669. .cell{
  670. line-height: 16px;
  671. }
  672. }
  673. }
  674. }
  675. }
  676. }
  677. .el-table__body-wrapper {
  678. height: 47vh !important;
  679. .el-scrollbar{
  680. .is-horizontal{
  681. .el-scrollbar__thumb{
  682. // width: 100% !important;
  683. }
  684. }
  685. .el-table__body{
  686. tr{
  687. td{
  688. padding: 0;
  689. .cell{
  690. background: #F6F7FA;
  691. line-height: 47px;
  692. height: 47px;
  693. }
  694. }
  695. td:hover {
  696. line-height: 45px;
  697. height: 45px;
  698. }
  699. }
  700. // .el-select{
  701. // .el-input{
  702. // .el-input__wrapper{
  703. // .el-input__inner{
  704. // color: red;
  705. // }
  706. // }
  707. // }
  708. // }
  709. }
  710. }
  711. }
  712. .el-table--border .el-table__cell{
  713. border: none;
  714. }
  715. .el-table thead.is-group th.el-table__cell{
  716. background: transparent;
  717. }
  718. .tooltipCC {
  719. width: 180px;
  720. display: inline-block;
  721. overflow: hidden;
  722. text-overflow: ellipsis;
  723. white-space: nowrap;
  724. }
  725. }
  726. .el-pagination {
  727. margin-top: 20px;
  728. text-align: end;
  729. position: relative;
  730. }
  731. }
  732. .tableSeach{
  733. width: 88px;
  734. height: 63vh;
  735. margin-left: 10px;
  736. margin-top: 37px;
  737. border: 1px solid #D6DBEA;
  738. padding: 5px 0;
  739. border-radius: 5px;
  740. overflow-y: auto;
  741. .seachType{
  742. width: 78px;
  743. height: 78px;
  744. cursor: pointer;
  745. border-left: 3px solid transparent;
  746. img{
  747. margin-top: 17px;
  748. margin-left: 27px;
  749. }
  750. p{
  751. text-align: center;
  752. font-size: 14px;
  753. }
  754. }
  755. .seachTypeCha{
  756. background: #E6EBF5;
  757. cursor: pointer;
  758. border-left: 3px solid #3B7AD1;
  759. }
  760. }
  761. }
  762. }
  763. }
  764. .el-dialog__footer{
  765. .dialog-footer{
  766. display: flex;
  767. justify-content: center;
  768. .el-button{
  769. width: 180px !important;
  770. height: 40px !important;
  771. }
  772. }
  773. }
  774. }
  775. }
  776. }
  777. </style>