assessmentApplicationFrom.vue 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800
  1. <template>
  2. <div class="applicationFrom">
  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.deptName}}</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.declarationLevel}}级</span>
  21. </div>
  22. <div class="danjuMsg_data">
  23. <span class="data_tit">申报年度:</span>
  24. <span>{{receiptMsg.year}}年</span>
  25. </div>
  26. <!-- <div class="danjuMsg_data">
  27. <span class="data_tit">申报领导:</span>
  28. <span>{{receiptMsg.deptLeaderName}}</span>
  29. </div> -->
  30. </el-col>
  31. <el-col :span="6">
  32. <div class="danjuMsg_data">
  33. <span class="data_tit">流程状态:</span>
  34. <span>{{receiptMsg.stage}}</span>
  35. </div>
  36. <div class="danjuMsg_data">
  37. <span class="data_tit">申报月份:</span>
  38. <span>{{receiptMsg.month}}月</span>
  39. </div>
  40. </el-col>
  41. <el-col :span="6">
  42. <div class="danjuMsg_data">
  43. <span class="data_tit">创建日期:</span>
  44. <span>{{receiptMsg.createDate}}</span>
  45. </div>
  46. </el-col>
  47. <el-col :span="6">
  48. <div class="danjuMsg_data">
  49. <span class="data_tit">评定等级:</span>
  50. <span>{{receiptMsg.ratingGrade}}</span>
  51. </div>
  52. </el-col>
  53. <el-col :span="18">
  54. <div class="danjuMsg_data">
  55. <span class="data_tit">申报理由:</span>
  56. <span>{{receiptMsg.des}}</span>
  57. </div>
  58. </el-col>
  59. </el-row>
  60. <el-tabs v-model="activeName" class="demo-tabs" @tab-click="handleClick">
  61. <el-tab-pane label="员工月度考核系数" name="first">
  62. <div class="detaTableBtns">
  63. <div class="tableBtn add" @click="addTableDetail" v-if="isShowFn(receiptMsg.stage)">
  64. <img :src="addIcon" alt="">
  65. <span>新增</span>
  66. </div>
  67. <div class="tableBtn save" @click="saveDetail" v-if="isShowFn(receiptMsg.stage)">
  68. <img :src="saveIcon" alt="">
  69. <span>保存</span>
  70. </div>
  71. <div class="tableBtn delete" @click="handleDelete" v-if="isShowFn(receiptMsg.stage)">
  72. <img :src="deleteIcon" alt="">
  73. <span>删除</span>
  74. </div>
  75. <div class="tableBtn import" @click="handleImport" v-if="isShowFn(receiptMsg.stage)">
  76. <img :src="importIcon" alt="">
  77. <span>导入</span>
  78. </div>
  79. <div class="tableBtn export" @click="handleExport">
  80. <img :src="exportIcon" alt="">
  81. <span>导出</span>
  82. </div>
  83. </div>
  84. <el-table :data="quantifiedList.slice((pageLeft.currentPage-1)*pageLeft.pagesize, pageLeft.currentPage*pageLeft.pagesize)"
  85. style="width: 100%" @select="rowClick" @select-all="rowClick">
  86. <el-table-column type="selection" label="操作" align="center"></el-table-column>
  87. <el-table-column label="序号" type="index" width="80" />
  88. <el-table-column label="人员编号">
  89. <template #default="scope">
  90. <el-input v-model="scope.row.employeeNo" @blur="employeeNoInputBlur(scope.row.employeeNo, scope.row)" />
  91. </template>
  92. </el-table-column>
  93. <el-table-column label="人员">
  94. <template #default="scope">
  95. <!-- <el-select v-model="scope.row.employeeId" placeholder="请选择人员">
  96. <el-option
  97. v-for="item in deptLeaderOptionDet"
  98. :key="item.id"
  99. :label="item.name"
  100. :value="item.id">
  101. <span style="float: left;display:inline-block;width:100px">{{ item.name }}</span>
  102. <span style="float: right;color: #909399;font-size: 13px;" >{{ item.no }}</span>
  103. </el-option>
  104. </el-select> -->
  105. <span>{{scope.row.employeeName}}</span>
  106. </template>
  107. </el-table-column>
  108. <el-table-column label="建议值" v-if="showMessage">
  109. <template #default="scope">
  110. <el-input-number v-model="scope.row.suggestedValue" :precision="2" :step="0.1" :min="0" />
  111. </template>
  112. </el-table-column>
  113. <el-table-column label="排序" >
  114. <template #default="scope">
  115. <el-input-number v-model="scope.row.serialNumber" :min="1" />
  116. </template>
  117. </el-table-column>
  118. <el-table-column label="操作" width="120" v-if="isShowFn(receiptMsg.stage)">
  119. <template #default="scope">
  120. <p class="indicitem" @click="deleteRowFn(scope.row, scope.$index)">删除</p>
  121. </template>
  122. </el-table-column>
  123. </el-table>
  124. <el-pagination
  125. @current-change="handleCurrentChangeLeft"
  126. :current-page="pageLeft.currentPage"
  127. :page-size="pageLeft.pagesize"
  128. layout="total, prev, pager, next, jumper"
  129. :total="pageLeft.total">
  130. </el-pagination>
  131. </el-tab-pane>
  132. <el-tab-pane label="本月主要工作完成情况" name="second">
  133. <div class="detaTableBtns">
  134. <div class="tableBtn add" @click="addSecondWork" v-if="isShowFn(receiptMsg.stage)">
  135. <img :src="addIcon" alt="">
  136. <span>新增</span>
  137. </div>
  138. <div class="tableBtn save" @click="saveSecondWork" v-if="isShowFn(receiptMsg.stage)">
  139. <img :src="saveIcon" alt="">
  140. <span>保存</span>
  141. </div>
  142. <div class="tableBtn delete" @click="handleSecondWork" v-if="isShowFn(receiptMsg.stage)">
  143. <img :src="deleteIcon" alt="">
  144. <span>删除</span>
  145. </div>
  146. </div>
  147. <el-table :data="secondWorkSituation.slice((pageRight.currentPage-1)*pageRight.pagesize, pageRight.currentPage*pageRight.pagesize)"
  148. style="width: 100%" @select="rowSituationClick" @select-all="rowSituationClick">
  149. <el-table-column type="selection" label="操作" align="center"></el-table-column>
  150. <el-table-column label="序号" type="index" width="80" />
  151. <el-table-column label="工作内容">
  152. <template #default="scope">
  153. <el-input v-if="isShowFn(receiptMsg.stage)" v-model="scope.row.jobContent" :rows="2" type="textarea" />
  154. <pre v-else>{{scope.row.jobContent}}</pre>
  155. </template>
  156. </el-table-column>
  157. <el-table-column label="完成情况">
  158. <template #default="scope">
  159. <el-input v-if="isShowFn(receiptMsg.stage)" v-model="scope.row.completionStatus" :rows="2" type="textarea" />
  160. <pre v-else>{{scope.row.completionStatus}}</pre>
  161. </template>
  162. </el-table-column>
  163. <el-table-column label="相关处室" width="200">
  164. <template #default="scope">
  165. <el-input v-if="isShowFn(receiptMsg.stage)" v-model="scope.row.relatedOffice" />
  166. <span v-else>{{scope.row.relatedOffice}}</span>
  167. </template>
  168. </el-table-column>
  169. <el-table-column label="经办人" width="200">
  170. <template #default="scope">
  171. <el-input v-if="isShowFn(receiptMsg.stage)" v-model="scope.row.handlePeopleName" />
  172. <span v-else>{{scope.row.handlePeopleName}}</span>
  173. </template>
  174. </el-table-column>
  175. <el-table-column label="排序" >
  176. <template #default="scope">
  177. <el-input-number v-model="scope.row.serialNumber" :min="1" />
  178. </template>
  179. </el-table-column>
  180. </el-table>
  181. <el-pagination
  182. @current-change="handleCurrentChangeRight"
  183. :current-page="pageRight.currentPage"
  184. :page-size="pageRight.pagesize"
  185. layout="total, prev, pager, next, jumper"
  186. :total="pageRight.total">
  187. </el-pagination>
  188. </el-tab-pane>
  189. </el-tabs>
  190. </div>
  191. <template #footer>
  192. <span class="dialog-footer">
  193. <el-button type="primary" @click="dialogVisible = false">取 消</el-button>
  194. </span>
  195. </template>
  196. </el-dialog>
  197. <import-dailog ref="importPage" @successImport="successImport" @importLoading="importLoading"></import-dailog>
  198. </div>
  199. </template>
  200. <script>
  201. import importDailog from '../importPage/importDailog.vue'
  202. import {apiPostevaluationdeptadDetails,apiGetevaluationdeptadUpdate, apiGetevaluationdeptadDelete,apiGetevaluationdeptadUpdateComplete,
  203. apiPostevaluationdeptadDetailsHead, apiGetuserPageList,apiGetevaluationdeptadDeleteComplete,apiGetUserPostList} from '../../api/api'
  204. import ExcelJS from 'exceljs'
  205. import fileSave from 'file-saver'
  206. import addIcon from '../../assets/btnIcon/add.png'
  207. import saveIcon from '../../assets/btnIcon/save.png'
  208. import editIcon from '../../assets/btnIcon/edit.png'
  209. import deleteIcon from '../../assets/btnIcon/delete.png'
  210. import exportIcon from '../../assets/btnIcon/export.png'
  211. import importIcon from '../../assets/btnIcon/import.png'
  212. export default {
  213. components: {
  214. importDailog
  215. },
  216. data() {
  217. return {
  218. dialogVisible: false,
  219. activeName: 'first',
  220. quantifiedList: [],
  221. secondWorkSituation: [],
  222. changeDateSelect: [],
  223. changeSituationSelect: [],
  224. receiptMsg: {
  225. code: '',
  226. des: '',
  227. stage: '',
  228. createName: '',
  229. createDate: '',
  230. type: '',
  231. year: '',
  232. month: '',
  233. recStage: ''
  234. },
  235. addIcon: addIcon,
  236. saveIcon: saveIcon,
  237. editIcon: editIcon,
  238. deleteIcon: deleteIcon,
  239. exportIcon: exportIcon,
  240. importIcon: importIcon,
  241. rowMsg: {},
  242. orgruleData: [],
  243. indicItemoptions: [],
  244. sectionNameArr: [],
  245. deptNameArr: [],
  246. pageLeft:{
  247. pagesize: 15,
  248. currentPage: 1,
  249. total: 0
  250. },
  251. pageRight:{
  252. pagesize: 15,
  253. currentPage: 1,
  254. total: 0
  255. },
  256. deptLeaderOptionDet: [],
  257. userMes: {},
  258. showMessage: false
  259. }
  260. },
  261. created() {
  262. },
  263. methods: {
  264. init(row) {
  265. this.dialogVisible = true
  266. this.activeName = 'first'
  267. this.getDetails(row.id)
  268. this.userMes = JSON.parse(window.sessionStorage.getItem('user'))
  269. this.getUserPostList()
  270. this.rowMsg = row
  271. this.$nextTick(() =>{
  272. this.receiptMsg = {
  273. code: row.orderNumber,
  274. des: row.declarationReason,
  275. stage: row.stage,
  276. ratingGrade: row.ratingGrade,
  277. deptLeaderName: row.deptLeaderName,
  278. deptName: row.deptName,
  279. createDate: row.createTime,
  280. year: row.annual,
  281. month: row.declarationMonth,
  282. declarationLevel: row.declarationLevel
  283. }
  284. })
  285. },
  286. handleClick(val) {
  287. this.changeDateSelect = []
  288. this.changeSituationSelect = []
  289. this.activeName = val.props.name
  290. },
  291. // 判断保存 导入按钮展示权限
  292. isShowFn(val) {
  293. let show = true
  294. if (val !== '流程未启动') {
  295. show = false
  296. }
  297. return show
  298. },
  299. rowClick(selection, row) {
  300. this.changeDateSelect = selection
  301. },
  302. //删除指标数据
  303. handleDelete() {
  304. this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
  305. confirmButtonText: '确定',
  306. cancelButtonText: '取消',
  307. type: 'warning'
  308. }).then(() => {
  309. let that = this
  310. let paramsArr = []
  311. that.changeDateSelect.forEach(it =>{
  312. paramsArr.push(it.id)
  313. })
  314. apiGetevaluationdeptadDelete(paramsArr.join(',')).then(datas =>{
  315. if (datas) {
  316. that.$message({
  317. type: 'success',
  318. message: '删除成功!'
  319. });
  320. that.changeDateSelect = []
  321. that.getDetails(that.rowMsg.id)
  322. }
  323. })
  324. })
  325. },
  326. handleCurrentChangeLeft(val) {
  327. this.pageLeft.currentPage = val
  328. },
  329. handleCurrentChangeRight(val) {
  330. this.pageRight.currentPage = val
  331. },
  332. //获取详情头数据
  333. getDetailsHeader(id) {
  334. let that = this
  335. apiPostevaluationdeptadDetailsHead(id).then(datas =>{
  336. if (datas && datas.data) {
  337. let row = datas.data
  338. that.receiptMsg = {
  339. code: row.orderNumber,
  340. des: row.des,
  341. stage: row.stage,
  342. createName: row.createName,
  343. createDate: row.createTime,
  344. type: row.checkCycle === 'YDKP'?'月度考评':row.checkCycle === 'JDKP'?'季度考评':'年度考评',
  345. year: row.appraisalYear,
  346. month: row.declarationMonth,
  347. recStage: '有效'
  348. }
  349. }
  350. })
  351. },
  352. //获取详情
  353. getDetails(id) {
  354. let that = this
  355. that.quantifiedList = []
  356. that.secondWorkSituation = []
  357. apiPostevaluationdeptadDetails(id).then(datas =>{
  358. if (datas && datas.data) {
  359. if (datas.data['ygydkhxs'][0]) {
  360. datas.data['ygydkhxs'][0].forEach(it =>{
  361. it.serialNumber = it.serialNumber.toString()
  362. })
  363. that.quantifiedList = datas.data['ygydkhxs'][0]
  364. that.pageLeft.total = datas.data['ygydkhxs'][0].length
  365. }
  366. if (datas.data['byzygzwcqk'][0]) {
  367. that.secondWorkSituation = datas.data['byzygzwcqk'][0]
  368. that.pageRight.total = datas.data['byzygzwcqk'][0].length
  369. }
  370. }
  371. })
  372. },
  373. getUserPostList() {
  374. let that = this
  375. that.showMessage = false
  376. let params = {
  377. userId: that.userMes.id,
  378. current: 1,
  379. size: 10
  380. }
  381. apiGetUserPostList(params).then(datas =>{
  382. if (datas.data && datas.data.records.length>0) {
  383. datas.data.records.forEach(it =>{
  384. if (it.posName.indexOf('主任') !== -1 || it.posName.indexOf('副主任') !== -1
  385. || it.posName.indexOf('组织人事部') !== -1
  386. || it.udeptName.indexOf('组织人事部') !== -1) {
  387. that.showMessage = true
  388. }
  389. })
  390. }
  391. })
  392. },
  393. employeeNoInputBlur(val, row) {
  394. row.employeeId = ''
  395. // this.deptLeaderOptionDet.forEach(it =>{
  396. // if (val === it.no) {
  397. // row.employeeId = it.id
  398. // }
  399. // })
  400. this.changeDeptLead(val, row)
  401. },
  402. // 根据部门查询人员
  403. changeDeptLead(val, row) {
  404. let that = this
  405. let params = {
  406. no: val
  407. }
  408. apiGetuserPageList(params).then(datas =>{
  409. if (datas && datas.data) {
  410. row.employeeName = datas.data.name
  411. row.employeeId = datas.data.id
  412. }
  413. })
  414. },
  415. addTableDetail() {
  416. this.pageLeft.currentPage = 1
  417. let obj = {
  418. showInput: true,
  419. businessPlanId: this.rowMsg.id,
  420. employeeId: '',
  421. employeeNo: '',
  422. suggestedValue: 1.00,
  423. serialNumber: 0
  424. }
  425. this.quantifiedList.unshift(obj)
  426. },
  427. saveDetail() {
  428. let that = this
  429. let params = []
  430. that.quantifiedList.forEach(item =>{
  431. // let emName = ''
  432. // let emNo = ''
  433. // that.deptLeaderOptionDet.forEach(it =>{
  434. // if (item.employeeId === it.id) {
  435. // emName = it.name
  436. // emNo = it.no
  437. // }
  438. // })
  439. let obj = {
  440. assessmentDeclarationId: that.rowMsg.id,
  441. employeeId: item.employeeId ? item.employeeId : '',
  442. employeeName: item.employeeName ? item.employeeName : '',
  443. employeeNo: item.employeeNo ? item.employeeNo : '',
  444. suggestedValue: (item.suggestedValue*1).toString(),
  445. serialNumber: item.serialNumber
  446. }
  447. if (!item.showInput) {
  448. obj.id = item.id
  449. }
  450. params.push(obj)
  451. })
  452. apiGetevaluationdeptadUpdate(params).then(datas =>{
  453. if (datas) {
  454. if (datas.success) {
  455. that.$message({
  456. message: '保存成功',
  457. type: 'success'
  458. });
  459. that.activeName = 'first'
  460. that.getDetails(that.rowMsg.id)
  461. } else {
  462. that.$message({
  463. message: datas.message,
  464. type: 'error'
  465. })
  466. }
  467. }
  468. })
  469. },
  470. deleteRowFn(row, index) {
  471. let that = this
  472. this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
  473. confirmButtonText: '确定',
  474. cancelButtonText: '取消',
  475. type: 'warning'
  476. }).then(() => {
  477. if (!row.id) {
  478. that.quantifiedList.splice(index, 1)
  479. } else {
  480. apiGetevaluationdeptadDelete(row.id).then(datas =>{
  481. if (datas) {
  482. that.$message({
  483. type: 'success',
  484. message: '删除成功!'
  485. });
  486. that.activeName = 'first'
  487. that.getDetails(that.rowMsg.id)
  488. }
  489. })
  490. }
  491. })
  492. },
  493. handleImport() {
  494. this.$refs.importPage.upload.title = "绩效结果考核申报导入"
  495. this.$refs.importPage.upload.data = {id: this.rowMsg.id}
  496. this.$refs.importPage.upload.open = true
  497. this.$refs.importPage.upload.url = '/evaluation-dept-ad/import'
  498. },
  499. successImport(val) {
  500. this.$message({
  501. type: 'success',
  502. message: val.message
  503. });
  504. this.getDetails(this.rowMsg.id)
  505. },
  506. handleExport() {
  507. let data = this.quantifiedList //接口返回数据
  508. const workbook = new ExcelJS.Workbook()
  509. const worksheet = workbook.addWorksheet('Sheet1')
  510. //根据数据自己调整
  511. let colums = []
  512. colums = [
  513. // { header: 'ID', key: 'id', width: 26, hidden: true },
  514. // { header: '申报ID', key: 'assessmentDeclarationId', width: 26, hidden: true },
  515. { header: '人员编号', key: 'employeeNo', width: 26 },
  516. // { header: '员工ID', key: 'employeeId', width: 26 },
  517. { header: '员工名称', key: 'employeeName', width: 26 },
  518. { header: '建议值', key: 'suggestedValue', width: 26 },
  519. { header: '排序', key: 'serialNumber', width: 26 },
  520. ]
  521. worksheet.columns = colums
  522. worksheet.getRow(1).font = {
  523. size: 12,
  524. bold: true
  525. }
  526. worksheet.addRows(data)
  527. workbook.xlsx.writeBuffer().then(buffer => {
  528. //这里为type
  529. const blob = new Blob([buffer], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8' })
  530. fileSave(blob, `绩效结果考核申报数据导出.xlsx`)
  531. })
  532. },
  533. rowSituationClick(selection, row) {
  534. this.changeSituationSelect = selection
  535. },
  536. addSecondWork() {
  537. this.pageRight.currentPage = 1
  538. let obj = {
  539. showInput: true,
  540. assessmentDeclarationId: this.rowMsg.id,
  541. jobContent: '',
  542. completionStatus: '',
  543. relatedOffice: '',
  544. handlePeopleName: '',
  545. serialNumber: 0
  546. }
  547. this.secondWorkSituation.unshift(obj)
  548. },
  549. saveSecondWork() {
  550. let that = this
  551. let params = []
  552. that.secondWorkSituation.forEach(item =>{
  553. let obj = {
  554. assessmentDeclarationId: that.rowMsg.id,
  555. jobContent: item.jobContent,
  556. completionStatus: item.completionStatus,
  557. relatedOffice: item.relatedOffice,
  558. handlePeopleName: item.handlePeopleName,
  559. serialNumber: item.serialNumber
  560. }
  561. if (!item.showInput) {
  562. obj.id = item.id
  563. }
  564. params.push(obj)
  565. })
  566. apiGetevaluationdeptadUpdateComplete(params).then(datas =>{
  567. if (datas) {
  568. if (datas.success) {
  569. that.$message({
  570. message: '保存成功',
  571. type: 'success'
  572. });
  573. that.activeName = 'second'
  574. that.getDetails(that.rowMsg.id)
  575. } else {
  576. that.$message({
  577. message: datas.message,
  578. type: 'error'
  579. })
  580. }
  581. }
  582. })
  583. },
  584. handleSecondWork() {
  585. this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
  586. confirmButtonText: '确定',
  587. cancelButtonText: '取消',
  588. type: 'warning'
  589. }).then(() => {
  590. let that = this
  591. let paramsArr = []
  592. that.changeSituationSelect.forEach(item =>{
  593. if (!item.id) {
  594. that.secondWorkSituation.forEach((it, index) =>{
  595. if (it === item) {
  596. that.secondWorkSituation.splice(index, 1)
  597. }
  598. })
  599. } else {
  600. paramsArr.push(item.id)
  601. }
  602. })
  603. if (paramsArr.length>0) {
  604. apiGetevaluationdeptadDeleteComplete(paramsArr.join(',')).then(datas =>{
  605. if (datas) {
  606. that.$message({
  607. type: 'success',
  608. message: '删除成功!'
  609. });
  610. that.activeName = 'second'
  611. that.changeSituationSelect = []
  612. that.getDetails(that.rowMsg.id)
  613. }
  614. })
  615. }
  616. })
  617. },
  618. }
  619. }
  620. </script>
  621. <style lang="less">
  622. .applicationFrom{
  623. .el-overlay{
  624. .el-dialog{
  625. // margin-top: 7vh;
  626. .el-dialog__body{
  627. padding: 0 20px !important;
  628. .startDetail{
  629. .starttitleSty{
  630. font-size: 18px;
  631. font-family: Microsoft YaHei;
  632. font-weight: bold;
  633. color: #3B7AD1;
  634. // line-height: 12px;
  635. margin: 20px 0 20px 10px;
  636. }
  637. .danjuMsg{
  638. border: 1px solid #D6DBEA;
  639. padding: 10px 20px;
  640. border-radius: 10px;
  641. margin-bottom: 10px;
  642. .danjuMsg_data{
  643. padding: 5px 0 10px 0;
  644. .data_tit{
  645. margin-right: 10px;
  646. font-weight: bold;
  647. font-size: 14px;
  648. font-family: Microsoft YaHei;
  649. color: #8991B0;
  650. }
  651. .data_tit_wd{
  652. display: inline-block;
  653. width: 90px;
  654. }
  655. .el-form-item--small{
  656. .el-input{
  657. height: 25px;
  658. width: 160px;
  659. }
  660. margin-bottom: 0;
  661. .el-input-number{
  662. height: 25px;
  663. .el-input-number__decrease, .el-input-number__increase{
  664. right: -39px;
  665. }
  666. }
  667. }
  668. }
  669. }
  670. .el-select, .el-input{
  671. width: 100%;
  672. }
  673. .el-tabs{
  674. margin-top: 20px;
  675. .detaTableBtns{
  676. display: flex;
  677. justify-content: flex-end;
  678. width: 100%;
  679. margin-top: 5px;
  680. .tableBtn {
  681. display: flex;
  682. height: 20px;
  683. margin: 0 10px;
  684. // width: 20%;
  685. width: fit-content;
  686. img{
  687. margin-right: 5px;
  688. margin-top: 1px;
  689. }
  690. span{
  691. width: 35px;
  692. display: inline-block;
  693. font-size: 14px;
  694. font-family: Microsoft YaHei;
  695. font-weight: 400;
  696. }
  697. }
  698. .add{
  699. cursor: pointer;
  700. span{
  701. color: #3B7AD1;
  702. }
  703. }
  704. .save{
  705. cursor: pointer;
  706. span{
  707. color: #50C14E;
  708. }
  709. }
  710. .edit{
  711. span{
  712. color: #F5A623;
  713. }
  714. }
  715. .delete{
  716. cursor: pointer;
  717. span{
  718. color: #F65177;
  719. }
  720. }
  721. .import{
  722. cursor: pointer;
  723. span{
  724. color: #ce1e78;
  725. }
  726. }
  727. .export{
  728. cursor: pointer;
  729. span{
  730. color: #2baa8a;
  731. }
  732. }
  733. }
  734. .el-tabs__header{
  735. .el-tabs__nav{
  736. .el-tabs__item{
  737. font-size: 18px;
  738. font-family: Microsoft YaHei;
  739. font-weight: bold;
  740. margin: 0 10px;
  741. color: #8991B0;
  742. }
  743. .is-active{
  744. font-size: 18px;
  745. font-family: Microsoft YaHei;
  746. font-weight: bold;
  747. color: #3B7AD1;
  748. margin: 0 10px;
  749. }
  750. }
  751. }
  752. .el-table{
  753. margin-bottom: 10px;
  754. .el-table__body-wrapper{
  755. height: 45vh;
  756. }
  757. .el-table__row{
  758. .cell{
  759. .el-input{
  760. height: 24px;
  761. .el-input__inner{
  762. height: 24px;
  763. }
  764. }
  765. }
  766. }
  767. .indicitem{
  768. color: #F65177;
  769. font-size: 12px;
  770. margin-right: 20px;
  771. cursor:pointer;
  772. &:hover{
  773. text-decoration: underline;
  774. }
  775. }
  776. }
  777. }
  778. }
  779. }
  780. .el-dialog__footer{
  781. .dialog-footer{
  782. display: flex;
  783. justify-content: center;
  784. .el-button{
  785. width: 180px !important;
  786. height: 40px !important;
  787. }
  788. }
  789. }
  790. }
  791. }
  792. }
  793. </style>