evaluationCompanyPage.vue 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706
  1. <template>
  2. <div class="evaluationCompany" v-loading="loadingImport">
  3. <div class="evaluationCompanyBtn">
  4. <div class="collectSeach">
  5. <div class="exceed">
  6. <span class="exceedSpan">单位名称:</span>
  7. <el-input v-model="companyS" placeholder="请输入单位名称"></el-input>
  8. </div>
  9. <div class="exceed">
  10. <span class="exceedSpan" style="margin-left: 10px;width: 80px">业务属性:</span>
  11. <el-select v-model="binSectionIds" placeholder="请选择业务属性">
  12. <el-option
  13. v-for="item in moduleData"
  14. :key="item.id"
  15. :label="item.sectionName"
  16. :value="item.id">
  17. </el-option>
  18. </el-select>
  19. </div>
  20. <div class="exceed">
  21. <span class="exceedSpan" style="margin-left: 10px;width: 80px">业务阶段:</span>
  22. <el-select v-model="stageIds" placeholder="请选择业务阶段">
  23. <el-option
  24. v-for="item in stageData"
  25. :key="item.id"
  26. :label="item.stageName"
  27. :value="item.id">
  28. </el-option>
  29. </el-select>
  30. </div>
  31. <div class="exceed">
  32. <span class="exceedSpan" style="margin-left: 10px;width: 80px">考评周期:</span>
  33. <el-select v-model="periodId" placeholder="请选择考评周期">
  34. <el-option
  35. v-for="item in periodData"
  36. :key="item.keyValue"
  37. :label="item.keyName"
  38. :value="item.keyValue">
  39. </el-option>
  40. </el-select>
  41. </div>
  42. <seachs @handleSeach="getSeachData" @handleRest="resetSeach"></seachs>
  43. </div>
  44. <div class="PeriodBtn">
  45. <btns
  46. :showImport="false" :showExport="false"
  47. :showAdd="$utils.havePurview('evalCompany:oneLevel:add')"
  48. :showSave="$utils.havePurview('evalCompany:oneLevel:save')"
  49. :showDelete="$utils.havePurview('evalCompany:oneLevel:delete')"
  50. :disSave="changeDateSelect.length === 0 || changeDateSelect.length>1"
  51. :disDelete="changeDateSelect.length === 0" :disImport="true" :disExport="true"
  52. @handleAdd="handleAdd" @handleEdit="handleEdit" @handleDelete="handleDelete"
  53. @handleImport="handleImport" @handleExport="handleExport"></btns>
  54. </div>
  55. <div class="evaluationCompanyTableData">
  56. <el-table :data="evaluationCompanyData" style="width: 100%" @select="rowClick" @select-all="rowClick">
  57. <el-table-column type="selection" label="操作" align="center"></el-table-column>
  58. <el-table-column label="单位名称" prop="organizationShortName" width="300">
  59. <template #default="scope">
  60. <el-tooltip class="box-item" effect="customized" :content="scope.row.organizationShortName"
  61. placement="right">
  62. <span class="tooltipCC">{{scope.row.organizationShortName}}</span>
  63. </el-tooltip>
  64. </template>
  65. </el-table-column>
  66. <!-- <el-table-column label="考评类别" prop="organizationType" /> -->
  67. <el-table-column label="考评周期" prop="evaluationCycle">
  68. <template #default="scope">
  69. <span>{{scope.row.evaluationCycle==='YDKP'?'月度考评':scope.row.evaluationCycle==='JDKP'?'季度考评':'年度考评'}}</span>
  70. </template>
  71. </el-table-column>
  72. <!-- <el-table-column label="业务属性" prop="binSectionName" /> -->
  73. <el-table-column label="考评规则" prop="evaluateRuleName" width="300">
  74. <template #default="scope">
  75. <el-tooltip class="box-item" effect="customized" :content="scope.row.evaluateRuleName"
  76. placement="right">
  77. <span class="tooltipCC">{{scope.row.evaluateRuleName}}</span>
  78. </el-tooltip>
  79. </template>
  80. </el-table-column>
  81. <!-- <el-table-column label="业务阶段" prop="binStageName" width="200" /> -->
  82. <el-table-column label="是否考评" prop="binSectionName">
  83. <template #default="scope">
  84. <span>{{scope.row.isCheck?'是':'否'}}</span>
  85. </template>
  86. </el-table-column>
  87. <el-table-column label="生产经营权重" prop="scjyWeight">
  88. <template #default="scope">
  89. <span>{{Math.floor(scope.row.scjyWeight*100)}}%</span>
  90. </template>
  91. </el-table-column>
  92. <el-table-column label="前期权重" prop="qqWeight">
  93. <template #default="scope">
  94. <span>{{Math.floor(scope.row.qqWeight*100)}}%</span>
  95. </template>
  96. </el-table-column>
  97. <el-table-column label="基建权重" prop="jjWeight">
  98. <template #default="scope">
  99. <span>{{Math.floor(scope.row.jjWeight*100)}}%</span>
  100. </template>
  101. </el-table-column>
  102. <!-- <el-table-column label="年" prop="year" />
  103. <el-table-column label="月" prop="month" /> -->
  104. </el-table>
  105. <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange"
  106. :current-page="page.currentPage" :page-size="page.pagesize"
  107. layout="total, prev, pager, next, jumper" :total="page.total">
  108. </el-pagination>
  109. </div>
  110. <div class="indexdialog">
  111. <el-dialog :title="title" v-model="dialogVisible" width="600px" :close-on-click-modal="false">
  112. <div class="periodFrom">
  113. <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px"
  114. class="demo-ruleForm" :validate-on-rule-change="false">
  115. <el-form-item label="单位名称" prop="organizationName">
  116. <el-select v-model="ruleForm.organizationName" filterable placeholder="请选择单位名称">
  117. <el-option v-for="item in companyDatas" :key="item.id" :label="item.shortName"
  118. :value="item.id">
  119. </el-option>
  120. </el-select>
  121. </el-form-item>
  122. <el-form-item label="业务属性" prop="binSection">
  123. <el-select v-model="ruleForm.binSection" placeholder="请选择业务属性" multiple collapse-tags
  124. @change="changeBinsection">
  125. <el-option v-for="item in moduleData" :key="item.id" :label="item.sectionName"
  126. :value="item.id">
  127. </el-option>
  128. </el-select>
  129. </el-form-item>
  130. <el-form-item label="业务阶段" prop="binStage">
  131. <el-select v-model="ruleForm.binStage" placeholder="请选择业务阶段" multiple collapse-tags
  132. @change="changeBinsection">
  133. <el-option v-for="item in stageData" :key="item.id" :label="item.stageName"
  134. :value="item.id">
  135. </el-option>
  136. </el-select>
  137. </el-form-item>
  138. <el-form-item label="考评规则" prop="evaluateRule">
  139. <!-- @change="changeRule" -->
  140. <el-select v-model="ruleForm.evaluateRule" multiple collapse-tags collapse-tags-tooltip
  141. placeholder="请选择考评规则">
  142. <el-option v-for="item in ruleDataAll" :key="item.id" :label="item.ruleName"
  143. :value="item.id">
  144. </el-option>
  145. </el-select>
  146. </el-form-item>
  147. <el-form-item label="考评周期" prop="evaluationCycle">
  148. <el-select v-model="ruleForm.evaluationCycle" placeholder="请选择考评周期">
  149. <el-option v-for="item in periodData" :key="item.keyValue" :label="item.keyName"
  150. :value="item.keyValue">
  151. </el-option>
  152. </el-select>
  153. </el-form-item>
  154. <el-form-item label="是否考评">
  155. <el-radio-group v-model="ruleForm.isCheck">
  156. <el-radio border label="是" />
  157. <el-radio border label="否" />
  158. </el-radio-group>
  159. </el-form-item>
  160. <el-form-item label="生产经营权重" prop="scjyWeight">
  161. <el-input-number v-model="ruleForm.scjyWeight" :precision="2" :step="0.1" :min="0"
  162. :max="1" placeholder="请输入生产经营权重" />
  163. </el-form-item>
  164. <el-form-item label="前期权重" prop="qqWeight">
  165. <el-input-number v-model="ruleForm.qqWeight" :precision="2" :step="0.1" :min="0"
  166. :max="1" placeholder="请输入前期权重" />
  167. </el-form-item>
  168. <el-form-item label="基建权重" prop="jjWeight">
  169. <el-input-number v-model="ruleForm.jjWeight" :precision="2" :step="0.1" :min="0"
  170. :max="1" placeholder="请输入基建权重" />
  171. </el-form-item>
  172. <!-- <el-form-item label="年份" prop="year">
  173. <el-date-picker
  174. v-model="ruleForm.year"
  175. type="year"
  176. value-format="YYYY"
  177. placeholder="请选择年份"
  178. />
  179. </el-form-item>
  180. <el-form-item label="月份">
  181. <el-input-number v-model="ruleForm.month" :min="1" :max="12" />
  182. </el-form-item> -->
  183. <el-form-item label="指标顺序">
  184. <el-input-number v-model="ruleForm.orderNum" :min="1" />
  185. </el-form-item>
  186. </el-form>
  187. </div>
  188. <template #footer>
  189. <span class="dialog-footer">
  190. <el-button @click="dialogVisible = false">取 消</el-button>
  191. <el-button type="primary" @click="saveevaluationCompanyMsg('ruleForm')">确 定</el-button>
  192. </span>
  193. </template>
  194. </el-dialog>
  195. </div>
  196. <indicator-item ref="indicatorItem"></indicator-item>
  197. </div>
  198. <import-dailog ref="importPage" @successImport="successImport" @importLoading="importLoading"></import-dailog>
  199. </div>
  200. </template>
  201. <script>
  202. import importDailog from '../importPage/importDailog.vue'
  203. import btns from '../elbuttonS.vue'
  204. import seachs from '../seachGroup.vue'
  205. import {
  206. apiGetOrganizationList,
  207. apiGetorganizationSaveList,
  208. apiGetorganizationdeleteList,
  209. apiGetorganizationgetTree,
  210. apiGetdatadictionaryList,
  211. apiGetbinstageList,
  212. apiGetbinsectionList,
  213. apiGetevaluateListAll
  214. } from '../../api/api'
  215. export default {
  216. components: {
  217. importDailog,
  218. btns,
  219. seachs
  220. },
  221. data() {
  222. return {
  223. dialogVisible: false,
  224. title: '',
  225. isSave: false,
  226. changeDateSelect: [],
  227. indicatoroptions: [],
  228. companyS: '',
  229. evaluationCompanyData: [],
  230. moduleData: [],
  231. stageData: [],
  232. ruleDataAll: [],
  233. periodData: [],
  234. ruleForm: {
  235. organizationName: '',
  236. evaluateRule: [],
  237. binSection: [],
  238. binStage: [],
  239. evaluationCycle: '',
  240. isCheck: '是',
  241. scjyWeight: 0,
  242. qqWeight: 0,
  243. jjWeight: 0,
  244. // year: '',
  245. // month: 1,
  246. orderNum: 1
  247. },
  248. rules: {
  249. organizationName: [{
  250. required: true,
  251. message: '请选择单位名称',
  252. trigger: 'change'
  253. }],
  254. binSection: [{
  255. required: true,
  256. message: '请选择业务属性',
  257. trigger: 'change'
  258. }],
  259. binStage: [{
  260. required: true,
  261. message: '请选择业务阶段',
  262. trigger: 'change'
  263. }],
  264. evaluateRule: [{
  265. required: true,
  266. message: '请选择考评规则',
  267. trigger: 'change'
  268. }],
  269. evaluationCycle: [{
  270. required: true,
  271. message: '请选择考评周期',
  272. trigger: 'change'
  273. }],
  274. year: [{
  275. required: true,
  276. message: '请选择年份',
  277. trigger: 'change'
  278. }]
  279. },
  280. page: {
  281. pagesize: 12,
  282. currentPage: 1,
  283. total: 0
  284. },
  285. evalradio: {},
  286. loadingImport: false,
  287. companyDatas: [],
  288. periodId: '',
  289. stageIds: '',
  290. binSectionIds: ''
  291. }
  292. },
  293. created() {
  294. this.getEvalCompanyData()
  295. this.getRuleallData()
  296. this.getDataDictionary() //模块 阶段
  297. this.getPeriodData()
  298. this.getOrganizetionData(23031000, 2)
  299. },
  300. methods: {
  301. // 查询单位数据
  302. getEvalCompanyData() {
  303. let that = this
  304. let params = {
  305. pageNum: that.page.currentPage,
  306. pageSize: that.page.pagesize,
  307. organizationType: 'DWKP',
  308. organizationName: that.companyS,
  309. binSection: that.binSectionIds,
  310. binStage: that.stageIds,
  311. evaluationCycle: that.periodId
  312. }
  313. apiGetOrganizationList(params).then(datas => {
  314. if (datas && datas.data) {
  315. that.evaluationCompanyData = datas.data.records
  316. that.page.total = datas.data.total
  317. }
  318. })
  319. },
  320. //查询组织数据
  321. getOrganizetionData(id, num) {
  322. let that = this
  323. let params = {
  324. id: id,
  325. num: num
  326. }
  327. apiGetorganizationgetTree(params).then(datas => {
  328. if (datas && datas.data && datas.data[0].children.length > 0) {
  329. that.companyDatas = datas.data[0].children
  330. }
  331. })
  332. },
  333. // 查询规则模块和阶段数据
  334. getDataDictionary() {
  335. let that = this
  336. apiGetbinsectionList().then(datas => {
  337. if (datas && datas.data) {
  338. that.moduleData = datas.data
  339. }
  340. })
  341. apiGetbinstageList().then(datas => {
  342. if (datas && datas.data) {
  343. that.stageData = datas.data
  344. }
  345. })
  346. },
  347. getRuleallData(val, val1) {
  348. let that = this
  349. let params = {
  350. // pageNum: 1,
  351. // pageSize: 50,
  352. binSection: val ? val.join(',') : '',
  353. binStage: val1 ? val1.join(',') : ''
  354. }
  355. apiGetevaluateListAll(params).then(datas => {
  356. if (datas && datas.data) {
  357. that.ruleDataAll = datas.data
  358. }
  359. })
  360. },
  361. //考评周期
  362. getPeriodData() {
  363. let that = this
  364. let params = {
  365. superKey: 'KPZQ0001'
  366. }
  367. apiGetdatadictionaryList(params).then(datas => {
  368. if (datas && datas.data) {
  369. that.periodData = datas.data
  370. }
  371. })
  372. },
  373. changeBinsection(val) {
  374. if (this.ruleForm.binSection !== '' && this.ruleForm.binStage !== '') {
  375. this.getRuleallData(this.ruleForm.binSection, this.ruleForm.binStage)
  376. }
  377. },
  378. // changeRule(val) {
  379. // let binStageArr = []
  380. // for (let i = 0; i < this.ruleDataAll.length; i++) {
  381. // let item = this.ruleDataAll[i]
  382. // for (let j = 0; j < val.length; j++) {
  383. // let itn = val[j]
  384. // if (item.id === itn) {
  385. // binStageArr.push(item.binStage)
  386. // }
  387. // }
  388. // }
  389. // this.ruleForm.binStage = this.useFilter(binStageArr)
  390. // },
  391. useFilter(arr) {
  392. return arr.filter(function (item, index) {
  393. return arr.indexOf(item) === index; // 因为indexOf 只能查找到第一个
  394. })
  395. },
  396. handleAdd() {
  397. this.dialogVisible = true
  398. this.isSave = false
  399. this.title = '新增考评单位'
  400. this.$nextTick(() => {
  401. // this.$refs['ruleForm'].resetFields()
  402. this.ruleForm = {
  403. organizationName: '',
  404. evaluateRule: [],
  405. binSection: [],
  406. binStage: [],
  407. evaluationCycle: '',
  408. isCheck: '是',
  409. scjyWeight: 0,
  410. qqWeight: 0,
  411. jjWeight: 0,
  412. // year: '',
  413. // month: 1,
  414. orderNum: 1
  415. }
  416. })
  417. },
  418. handleEdit() {
  419. this.dialogVisible = true
  420. this.isSave = true
  421. this.title = '修改考评单位'
  422. this.evalradio = this.changeDateSelect[0]
  423. this.ruleForm = {
  424. organizationName: this.evalradio.organizationId,
  425. evaluationCycle: this.evalradio.evaluationCycle,
  426. evaluateRule: this.evalradio.evaluateRuleId.split(','),
  427. binSection: this.evalradio.binSection.split(','),
  428. binStage: this.evalradio.binStage.split(','),
  429. isCheck: this.evalradio.isCheck ? '是' : '否',
  430. scjyWeight: this.evalradio.scjyWeight,
  431. qqWeight: this.evalradio.qqWeight,
  432. jjWeight: this.evalradio.jjWeight,
  433. // year: this.evalradio.year,
  434. // month: this.evalradio.month,
  435. orderNum: this.evalradio.orderNum
  436. }
  437. this.getRuleallData(this.evalradio.binSection, this.evalradio.binStage)
  438. },
  439. saveevaluationCompanyMsg(formName) {
  440. let that = this
  441. that.$refs[formName].validate((valid) => {
  442. if (valid) {
  443. that.saveAndEditIndicatorData()
  444. }
  445. });
  446. },
  447. //新增/修改指标数据
  448. saveAndEditIndicatorData() {
  449. let that = this
  450. let orgName = ''
  451. let referred = ''
  452. let busType = ''
  453. that.companyDatas.forEach(item => {
  454. if (item.id === that.ruleForm.organizationName) {
  455. orgName = item.name
  456. referred = item.shortName
  457. busType = item.businessType
  458. }
  459. })
  460. let params = {
  461. organizationName: orgName,
  462. evaluationCycle: that.ruleForm.evaluationCycle,
  463. organizationType: 'DWKP',
  464. organizationShortName: referred,
  465. evaluateRuleId: that.ruleForm.evaluateRule.join(','),
  466. binSection: that.ruleForm.binSection.join(','),
  467. binStage: that.ruleForm.binStage.join(','),
  468. orderNum: that.ruleForm.orderNum,
  469. isCheck: that.ruleForm.isCheck === '是' ? true : false,
  470. scjyWeight: that.ruleForm.scjyWeight,
  471. qqWeight: that.ruleForm.qqWeight,
  472. jjWeight: that.ruleForm.jjWeight,
  473. businessType: busType
  474. // year: that.ruleForm.year,
  475. // month: that.ruleForm.month
  476. }
  477. if (that.isSave) {
  478. params.id = this.evalradio.id
  479. params.organizationId = that.evalradio.organizationId
  480. } else {
  481. params.organizationId = that.ruleForm.organizationName
  482. }
  483. apiGetorganizationSaveList(params).then(datas => {
  484. if (!datas.success) {
  485. that.$message({
  486. message: datas.message,
  487. type: 'error'
  488. });
  489. } else {
  490. if (!that.isSave) {
  491. that.$message({
  492. message: '考评单位新增成功',
  493. type: 'success'
  494. });
  495. } else {
  496. that.$message({
  497. message: '考评单位修改成功',
  498. type: 'success'
  499. });
  500. }
  501. that.dialogVisible = false
  502. that.changeDateSelect = []
  503. that.getEvalCompanyData()
  504. }
  505. })
  506. },
  507. //删除指标数据
  508. handleDelete() {
  509. this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
  510. confirmButtonText: '确定',
  511. cancelButtonText: '取消',
  512. type: 'warning'
  513. }).then(() => {
  514. let that = this
  515. let paramsArr = []
  516. that.changeDateSelect.forEach(it => {
  517. paramsArr.push(it.id)
  518. })
  519. apiGetorganizationdeleteList(paramsArr.join(',')).then(datas => {
  520. if (datas) {
  521. that.$message({
  522. type: 'success',
  523. message: '删除成功!'
  524. });
  525. that.changeDateSelect = []
  526. that.getEvalCompanyData()
  527. }
  528. })
  529. })
  530. },
  531. rowClick(selection, row) {
  532. this.changeDateSelect = selection
  533. },
  534. getSeachData() {
  535. this.page.currentPage = 1
  536. this.getEvalCompanyData()
  537. },
  538. resetSeach() {
  539. this.page.currentPage = 1
  540. this.companyS = ''
  541. this.periodId = ''
  542. this.stageIds = ''
  543. this.binSectionIds = ''
  544. this.getEvalCompanyData()
  545. },
  546. successImport(val) {
  547. this.loadingImport = false
  548. this.getEvalCompanyData()
  549. },
  550. importLoading(val) {
  551. this.loadingImport = true
  552. },
  553. handleSizeChange(val) {
  554. this.page.pagesize = val
  555. this.getEvalCompanyData()
  556. },
  557. handleCurrentChange(val) {
  558. this.page.currentPage = val
  559. this.getEvalCompanyData()
  560. },
  561. handleImport() {
  562. this.$refs.importPage.upload.title = "考评指标管理信息导入"
  563. this.$refs.importPage.upload.open = true
  564. },
  565. }
  566. }
  567. </script>
  568. <style lang="less">
  569. .evaluationCompany {
  570. .evaluationCompanyBtn {
  571. .collectSeach {
  572. display: flex;
  573. padding: 24px 20px;
  574. border-bottom: 1px solid#D6DBEA;
  575. .exceed {
  576. display: flex;
  577. .exceedSpan {
  578. width: 100px;
  579. height: 12px;
  580. font-size: 14px;
  581. font-family: Microsoft YaHei;
  582. font-weight: 400;
  583. color: #8991B0;
  584. line-height: 12px;
  585. margin-top: 14px;
  586. }
  587. .el-input {
  588. margin-right: 10px;
  589. .el-input__inner {
  590. height: 30px;
  591. }
  592. .el-input__suffix {
  593. .el-select__caret {
  594. line-height: 30px;
  595. }
  596. }
  597. }
  598. .el-select{
  599. line-height: 40px !important;
  600. .el-input__inner, .is-disabled{
  601. height:40px !important;
  602. }
  603. .el-input__suffix{
  604. .el-select__caret{
  605. line-height:40px;
  606. }
  607. }
  608. }
  609. }
  610. }
  611. span {
  612. font-size: 14px;
  613. }
  614. .PeriodBtn {
  615. display: flex;
  616. justify-content: end;
  617. padding: 20px 0;
  618. }
  619. .el-button {
  620. height: 30px;
  621. // width:100px;
  622. padding: 0 30px;
  623. // padding-top: 8px;
  624. span {
  625. margin: 0;
  626. }
  627. }
  628. .indexdialog {
  629. .el-overlay {
  630. .el-dialog {
  631. .el-dialog__body {
  632. padding: 30px 60px 30px 20px !important;
  633. .periodFrom {
  634. .el-select,
  635. .el-input {
  636. width: 100%;
  637. }
  638. .el-input {
  639. height: 30px;
  640. }
  641. }
  642. }
  643. }
  644. }
  645. }
  646. }
  647. .evaluationCompanyTableData {
  648. .el-table {
  649. .el-table__body-wrapper {
  650. height: 60vh !important;
  651. }
  652. .el-input__inner {
  653. height: 30px !important;
  654. }
  655. .el-radio__label {
  656. display: none;
  657. }
  658. .tooltipCC {
  659. width: 300px;
  660. display: inline-block;
  661. overflow: hidden;
  662. text-overflow: ellipsis;
  663. white-space: nowrap;
  664. }
  665. .indicitem {
  666. color: #409EFF;
  667. font-size: 12px;
  668. margin-right: 20px;
  669. cursor: pointer;
  670. &:hover {
  671. text-decoration: underline;
  672. }
  673. }
  674. }
  675. .el-pagination {
  676. margin-top: 20px;
  677. text-align: end;
  678. position: relative;
  679. }
  680. }
  681. }
  682. </style>