evaluationRulesPage.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557
  1. <template>
  2. <div class="evaluationRule" v-loading="loadingImport">
  3. <div class="evaluationRuleBtn">
  4. <div class="collectSeach" :style="$utils.collectSeachSty()">
  5. <div class="exceed">
  6. <span class="exceedSpan" style="width: 80px">业务属性:</span>
  7. <el-select v-model="moduleStr" placeholder="请选择业务属性">
  8. <el-option v-for="item in moduleData" :key="item.id" :label="item.sectionName" :value="item.id">
  9. </el-option>
  10. </el-select>
  11. </div>
  12. <div class="exceed">
  13. <span class="exceedSpan" style="margin-left: 10px;width: 80px">考评周期:</span>
  14. <el-select v-model="periodIdStr" placeholder="请选择考评周期">
  15. <el-option v-for="item in periodData" :key="item.keyValue" :label="item.keyName"
  16. :value="item.keyValue">
  17. </el-option>
  18. </el-select>
  19. </div>
  20. <div class="exceed">
  21. <span class="exceedSpan" style="width: 80px">考评年度:</span>
  22. <el-date-picker v-model="resAnnual" type="year" value-format="YYYY" placeholder="选择年份" />
  23. </div>
  24. <seachs @handleSeach="getSeachData" @handleRest="resetSeach"></seachs>
  25. </div>
  26. <div class="PeriodBtn" :style="$utils.PeriodBtnSty()">
  27. <btns :showImport="true" :showExport="true" :showAdd="$utils.havePurview('evalRules:oneLevel:add')"
  28. :showSave="$utils.havePurview('evalRules:oneLevel:save')"
  29. :showDelete="$utils.havePurview('evalRules:oneLevel:delete')"
  30. :disSave="changeDateSelect.length === 0 || changeDateSelect.length>1"
  31. :disDelete="changeDateSelect.length === 0" @handleAdd="handleAdd" @handleEdit="handleEdit"
  32. @handleDelete="handleDelete" @handleImport="handleImport" @handleExport="handleExport"></btns>
  33. </div>
  34. <div class="evaluationRuleTableData">
  35. <el-table :data="evaluationRuleData" style="width: 100%" :class="evaluationRuleTableSty()"
  36. @select="rowClick" @select-all="rowClick" @row-dblclick="editRuleDetail">
  37. <el-table-column type="selection" label="操作" align="center"></el-table-column>
  38. <el-table-column label="规则名称" prop="ruleName" />
  39. <el-table-column label="业务阶段" prop="binStageName" />
  40. <el-table-column label="业务属性" prop="binSectionName" />
  41. <el-table-column label="考评周期">
  42. <template #default="scope">
  43. <span v-if="scope.row.checkCycle === 'JDKP'" style="font-size: 12px;">月/季度考评</span>
  44. <span v-else style="font-size: 12px;">年度考评</span>
  45. </template>
  46. </el-table-column>
  47. <el-table-column label="年份" prop="year" />
  48. <el-table-column label="描述" width="500">
  49. <template #default="scope">
  50. <span>{{scope.row.des}}</span>
  51. </template>
  52. </el-table-column>
  53. <el-table-column label="创建人" prop="createName" width="120" />
  54. <el-table-column label="创建时间" prop="createTime" width="200" />
  55. <!-- <el-table-column label="操作" width="80">
  56. <template #default="scope">
  57. <p class="indicitem" @click="editRuleDetail(scope.row)">详情</p>
  58. </template>
  59. </el-table-column> -->
  60. </el-table>
  61. <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange"
  62. :current-page="page.currentPage" :page-size="page.pagesize"
  63. layout="total, prev, pager, next, jumper" :total="page.total">
  64. </el-pagination>
  65. </div>
  66. <div class="indexRuledialog">
  67. <el-dialog :title="title" v-model="dialogVisible" width="600px" :close-on-click-modal="false">
  68. <div class="periodFrom">
  69. <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px"
  70. class="demo-ruleForm" :validate-on-rule-change="false">
  71. <el-form-item label="规则名称" prop="ruleName">
  72. <el-input v-model="ruleForm.ruleName" placeholder="请输入规则名称"></el-input>
  73. </el-form-item>
  74. <el-form-item label="业务阶段" prop="binStage">
  75. <el-select v-model="ruleForm.binStage" placeholder="请选择业务阶段" :disabled="isSave">
  76. <el-option v-for="item in stageData" :key="item.id" :label="item.stageName"
  77. :value="item.id">
  78. </el-option>
  79. </el-select>
  80. </el-form-item>
  81. <el-form-item label="业务属性" prop="binSection">
  82. <el-select v-model="ruleForm.binSection" placeholder="请选择业务属性" :disabled="isSave">
  83. <el-option v-for="item in moduleData" :key="item.id" :label="item.sectionName"
  84. :value="item.id">
  85. </el-option>
  86. </el-select>
  87. </el-form-item>
  88. <el-form-item label="考评周期" prop="evaluationCycle">
  89. <el-select v-model="ruleForm.evaluationCycle" placeholder="请选择考评周期">
  90. <el-option v-for="item in periodData" :key="item.keyValue" :label="item.keyName"
  91. :value="item.keyValue">
  92. </el-option>
  93. </el-select>
  94. </el-form-item>
  95. <el-form-item label="年份" prop="year">
  96. <el-date-picker v-model="ruleForm.year" type="year" value-format="YYYY"
  97. placeholder="请选择年份" />
  98. </el-form-item>
  99. <el-form-item label="描述" prop="desc">
  100. <el-input v-model="ruleForm.desc" :rows="5" type="textarea" placeholder="请输入描述">
  101. </el-input>
  102. </el-form-item>
  103. </el-form>
  104. </div>
  105. <template #footer>
  106. <span class="dialog-footer">
  107. <el-button @click="dialogVisible = false">取 消</el-button>
  108. <el-button type="primary" @click="saveevaluationRuleMsg('ruleForm')">确 定</el-button>
  109. </span>
  110. </template>
  111. </el-dialog>
  112. </div>
  113. <rule-detail-page ref="ruleDetail"></rule-detail-page>
  114. </div>
  115. <import-dailog ref="importPage" @successImport="successImport" @importLoading="importLoading"></import-dailog>
  116. </div>
  117. </template>
  118. <script>
  119. import importDailog from '../importPage/importDailog.vue'
  120. import ruleDetailPage from './ruleDetailPage.vue'
  121. import btns from '../elbuttonS.vue'
  122. import seachs from '../seachGroup.vue'
  123. import {
  124. saveAs
  125. } from 'file-saver'
  126. import {
  127. apiGetExportMsg,
  128. apiGetevaluateRuleList,
  129. apiGetevaluateRuleSaveList,
  130. apiGetevaluateRuledeleteList,
  131. apiGetbinsectionList,
  132. apiGetbinstageList
  133. } from '../../api/api'
  134. export default {
  135. components: {
  136. importDailog,
  137. ruleDetailPage,
  138. btns,
  139. seachs
  140. },
  141. data() {
  142. return {
  143. dialogVisible: false,
  144. title: '',
  145. isSave: false,
  146. changeDateSelect: [],
  147. moduleData: [],
  148. stageData: [],
  149. moduleStr: '',
  150. periodIdStr: '',
  151. resAnnual: '',
  152. evaluationRuleData: [],
  153. periodData: [],
  154. ruleForm: {
  155. ruleName: '',
  156. binSection: '',
  157. binStage: '',
  158. evaluationCycle: '',
  159. year: '',
  160. desc: ''
  161. },
  162. rules: {
  163. ruleName: [{
  164. required: true,
  165. message: '请输入规则名称',
  166. trigger: 'blur'
  167. }],
  168. binSection: [{
  169. required: true,
  170. message: '请选择业务属性',
  171. trigger: 'change'
  172. }],
  173. binStage: [{
  174. required: true,
  175. message: '请选择业务阶段',
  176. trigger: 'change'
  177. }],
  178. evaluationCycle: [{
  179. required: true,
  180. message: '请选择考评周期',
  181. trigger: 'change'
  182. }],
  183. year: [{
  184. required: true,
  185. message: '请选择年份',
  186. trigger: 'change'
  187. }],
  188. desc: [{
  189. required: true,
  190. message: '请输入描述',
  191. trigger: 'blur'
  192. }]
  193. },
  194. page: {
  195. pagesize: 12,
  196. currentPage: 1,
  197. total: 0
  198. },
  199. evalradio: {},
  200. loadingImport: false,
  201. winPix: window.devicePixelRatio,
  202. innerWidth: window.innerWidth
  203. }
  204. },
  205. created() {
  206. this.periodData = [{
  207. keyValue: 'NDKP',
  208. keyName: '年度考评'
  209. },
  210. {
  211. keyValue: 'JDKP',
  212. keyName: '月/季度考评'
  213. }
  214. ]
  215. this.resAnnual = new Date().getFullYear().toString()
  216. this.getEvalRuleData()
  217. this.getDataDictionary() //模块//阶段
  218. },
  219. methods: {
  220. // 查询指标数据
  221. getEvalRuleData() {
  222. let that = this
  223. let params = {
  224. pageNum: that.page.currentPage,
  225. pageSize: that.page.pagesize,
  226. binSection: that.moduleStr,
  227. checkCycle: that.periodIdStr,
  228. year: that.resAnnual
  229. }
  230. apiGetevaluateRuleList(params).then(datas => {
  231. if (datas && datas.data) {
  232. that.evaluationRuleData = datas.data.records
  233. that.page.total = datas.data.total
  234. }
  235. })
  236. },
  237. // 查询规则模块和阶段数据
  238. getDataDictionary() {
  239. let that = this
  240. apiGetbinsectionList().then(datas => {
  241. if (datas && datas.data) {
  242. that.moduleData = datas.data
  243. }
  244. })
  245. apiGetbinstageList().then(datas => {
  246. if (datas && datas.data) {
  247. that.stageData = datas.data
  248. }
  249. })
  250. },
  251. handleAdd() {
  252. this.dialogVisible = true
  253. this.isSave = false
  254. this.title = '新增考评规则'
  255. this.$nextTick(() => {
  256. // this.$refs['ruleForm'].resetFields()
  257. this.ruleForm = {
  258. ruleName: '',
  259. binSection: '',
  260. binStage: '',
  261. evaluationCycle: '',
  262. year: '',
  263. desc: ''
  264. }
  265. })
  266. },
  267. handleEdit() {
  268. this.dialogVisible = true
  269. this.isSave = true
  270. this.title = '修改考评规则'
  271. this.evalradio = this.changeDateSelect[0]
  272. this.ruleForm = {
  273. ruleName: this.evalradio.ruleName,
  274. binSection: this.evalradio.binSection,
  275. binStage: this.evalradio.binStage,
  276. evaluationCycle: this.evalradio.checkCycle,
  277. year: this.evalradio.year,
  278. desc: this.evalradio.des
  279. }
  280. },
  281. saveevaluationRuleMsg(formName) {
  282. let that = this
  283. that.$refs[formName].validate((valid) => {
  284. if (valid) {
  285. that.saveAndEditRuleData()
  286. }
  287. });
  288. },
  289. //新增/修改指标数据
  290. saveAndEditRuleData() {
  291. let that = this
  292. let userMes = JSON.parse(window.sessionStorage.getItem('user'))
  293. let params = {
  294. ruleName: that.ruleForm.ruleName,
  295. binSection: that.ruleForm.binSection,
  296. binStage: that.ruleForm.binStage,
  297. checkCycle: that.ruleForm.evaluationCycle,
  298. year: that.ruleForm.year,
  299. des: that.ruleForm.desc,
  300. createBy: userMes.id,
  301. createName: userMes.name
  302. }
  303. if (that.isSave) {
  304. params.id = that.evalradio.id
  305. }
  306. apiGetevaluateRuleSaveList(params).then(datas => {
  307. if (!datas.success) {
  308. that.$message({
  309. message: datas.message,
  310. type: 'error'
  311. });
  312. } else {
  313. if (!that.isSave) {
  314. that.$message({
  315. message: '考评规则新增成功',
  316. type: 'success'
  317. });
  318. } else {
  319. that.$message({
  320. message: '考评规则修改成功',
  321. type: 'success'
  322. });
  323. }
  324. that.dialogVisible = false
  325. that.changeDateSelect = []
  326. that.getEvalRuleData()
  327. }
  328. })
  329. },
  330. //删除指标数据
  331. handleDelete() {
  332. this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
  333. confirmButtonText: '确定',
  334. cancelButtonText: '取消',
  335. type: 'warning'
  336. }).then(() => {
  337. let that = this
  338. let paramsArr = []
  339. that.changeDateSelect.forEach(it => {
  340. paramsArr.push(it.id)
  341. })
  342. apiGetevaluateRuledeleteList(paramsArr.join(',')).then(datas => {
  343. that.$message({
  344. type: 'success',
  345. message: '删除成功!'
  346. });
  347. that.changeDateSelect = []
  348. that.getEvalRuleData()
  349. })
  350. })
  351. },
  352. rowClick(selection, row) {
  353. this.changeDateSelect = selection
  354. },
  355. getSeachData() {
  356. this.page.currentPage = 1
  357. this.getEvalRuleData()
  358. },
  359. resetSeach() {
  360. this.page.currentPage = 1
  361. this.moduleStr = ''
  362. this.periodIdStr = ''
  363. this.resAnnual = ''
  364. this.getEvalRuleData()
  365. },
  366. successImport(val) {
  367. this.loadingImport = false
  368. this.getEvalRuleData()
  369. },
  370. importLoading(val) {
  371. this.loadingImport = true
  372. },
  373. handleSizeChange(val) {
  374. this.page.pagesize = val
  375. this.getEvalRuleData()
  376. },
  377. handleCurrentChange(val) {
  378. this.page.currentPage = val
  379. this.getEvalRuleData()
  380. },
  381. handleImport() {
  382. this.$refs.importPage.upload.title = "考评规则数据导入"
  383. this.$refs.importPage.upload.open = true
  384. this.$refs.importPage.upload.url = `/evaluate-rule/importExcel`
  385. },
  386. handleExport() {
  387. let that = this
  388. let url = 'evaluate-rule/exportExcel'
  389. let params = {
  390. binSection: that.moduleStr,
  391. checkCycle: that.periodIdStr,
  392. year: that.resAnnual
  393. }
  394. apiGetExportMsg(url, params).then(datas => {
  395. let blob = new Blob([datas])
  396. saveAs(blob, '考评规则数据导出.xlsx')
  397. }).catch((r) => {
  398. console.error(r)
  399. })
  400. },
  401. //指标项配置
  402. editRuleDetail(row) {
  403. this.$refs.ruleDetail.init(row)
  404. },
  405. evaluationRuleTableSty() {
  406. if (this.winPix === 1.25 || this.innerWidth < 1800) {
  407. return 'evalRule125Table'
  408. } else {
  409. return 'evalRule100Table'
  410. }
  411. }
  412. }
  413. }
  414. </script>
  415. <style lang="less">
  416. .evaluationRule {
  417. .evaluationRuleBtn {
  418. .collectSeach {
  419. display: flex;
  420. padding: 24px 20px;
  421. border-bottom: 1px solid#D6DBEA;
  422. .exceed {
  423. display: flex;
  424. .exceedSpan {
  425. width: 100px;
  426. height: 12px;
  427. font-size: 14px;
  428. font-family: Microsoft YaHei;
  429. font-weight: 400;
  430. color: #8991B0;
  431. line-height: 12px;
  432. margin-top: 14px;
  433. }
  434. .el-input,
  435. .el-date-editor {
  436. line-height: 40px !important;
  437. .el-input__wrapper {
  438. height: 40px !important;
  439. }
  440. .el-input__suffix {
  441. .el-select__caret {
  442. line-height: 40px;
  443. }
  444. }
  445. }
  446. }
  447. .el-select {
  448. margin-right: 10px;
  449. .el-input__inner {
  450. height: 30px;
  451. }
  452. .el-input__suffix {
  453. .el-select__caret {
  454. line-height: 30px;
  455. }
  456. }
  457. }
  458. }
  459. span {
  460. font-size: 14px;
  461. }
  462. .PeriodBtn {
  463. display: flex;
  464. justify-content: flex-end;
  465. padding: 20px 0;
  466. }
  467. .el-button {
  468. height: 30px;
  469. // width:100px;
  470. padding: 0 30px;
  471. // padding-top: 8px;
  472. span {
  473. margin: 0;
  474. }
  475. }
  476. .indexRuledialog {
  477. .el-overlay {
  478. .el-dialog {
  479. .el-dialog__body {
  480. padding: 30px 60px 30px 20px !important;
  481. .periodFrom {
  482. .el-select,
  483. .el-input {
  484. width: 100%;
  485. }
  486. .el-input {
  487. height: 30px;
  488. }
  489. }
  490. }
  491. }
  492. }
  493. }
  494. }
  495. .evaluationRuleTableData {
  496. .evalRule125Table {
  497. .el-table__body-wrapper {
  498. height: 53vh !important;
  499. }
  500. }
  501. .evalRule100Table {
  502. .el-table__body-wrapper {
  503. height: 60vh !important;
  504. }
  505. }
  506. .el-table {
  507. .el-input__inner {
  508. height: 30px !important;
  509. }
  510. .el-radio__label {
  511. display: none;
  512. }
  513. .indicitem {
  514. color: #409EFF;
  515. font-size: 12px;
  516. margin-right: 20px;
  517. cursor: pointer;
  518. &:hover {
  519. text-decoration: underline;
  520. }
  521. }
  522. }
  523. .el-pagination {
  524. margin-top: 20px;
  525. text-align: end;
  526. position: relative;
  527. }
  528. }
  529. }
  530. </style>