assessmentApplicationPage.vue 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798
  1. <template>
  2. <div class="assessmentApplication">
  3. <div class="assessmentApplicationBtn">
  4. <div class="collectSeach" :style="$utils.collectSeachSty()">
  5. <div class="exceed">
  6. <span class="exceedSpan">申报单号:</span>
  7. <el-input v-model="orderNumber" placeholder="请输入申报单号"></el-input>
  8. </div>
  9. <div class="exceed">
  10. <span class="exceedSpan">填报部门:</span>
  11. <el-input v-model="departNameS" placeholder="请输入填报部门"></el-input>
  12. </div>
  13. <div class="exceed">
  14. <span class="exceedSpan" style="margin-left: 10px;width: 80px">选择时间:</span>
  15. <el-date-picker
  16. v-model="timeIds"
  17. type="month"
  18. :clearable="false"
  19. value-format="YYYY-MM"
  20. placeholder="选择时间"
  21. />
  22. </div>
  23. <seachs @handleSeach="getSeachData" @handleRest="resetSeach" style="width: 260px"></seachs>
  24. <el-button size="mini" color="#3B7AD1" icon="Operation" @click="applicationTableFn" style="margin-left: 10px">
  25. <span>统计汇总</span>
  26. </el-button>
  27. </div>
  28. <div class="PeriodBtn" :style="$utils.PeriodBtnSty()">
  29. <btns
  30. :showImport="false"
  31. :showExport="false"
  32. :showSave="false"
  33. :showAdd="$utils.havePurview('evaluationApplication:oneLevel:add')"
  34. :showDelete="$utils.havePurview('evaluationApplication:oneLevel:delete')"
  35. :disDelete="changeDateSelect.length === 0"
  36. :disImport="true"
  37. :disExport="true"
  38. @handleAdd="handleAdd"
  39. @handleDelete="handleDelete"
  40. ></btns>
  41. </div>
  42. <div class="assessmentApplicationTableData">
  43. <el-table :data="assessmentApplicationData" style="width: 100%" @select="rowClick" :class="evalApplicationTableSty()"
  44. @select-all="rowClick" @row-dblclick="getDetail" @cell-click="clickDes">
  45. <el-table-column type="selection" label="操作" align="center"></el-table-column>
  46. <el-table-column label="申报单号" prop="orderNumber" width="200"/>
  47. <el-table-column label="部门名称" width="300">
  48. <template #default="scope">
  49. <el-tooltip
  50. class="box-item"
  51. effect="customized"
  52. :content="scope.row.deptName"
  53. placement="top"
  54. >
  55. <span class="tooltipCC">{{scope.row.deptName}}</span>
  56. </el-tooltip>
  57. </template>
  58. </el-table-column>
  59. <!-- <el-table-column label="部门领导" prop="deptLeaderName" /> -->
  60. <el-table-column label="评定等级" prop="ratingGrade" />
  61. <el-table-column label="申报等级" prop="declarationLevel" />
  62. <el-table-column label="申报年度" prop="annual" />
  63. <el-table-column label="申报月份" prop="declarationMonth" />
  64. <el-table-column label="申报理由" width="300">
  65. <template #default="scope">
  66. <div v-if="!scope.row.chngeDes">
  67. <el-tooltip
  68. class="box-item"
  69. effect="customized"
  70. :content="scope.row.declarationReason"
  71. placement="top"
  72. >
  73. <span class="tooltipCC">{{scope.row.declarationReason}}</span>
  74. </el-tooltip>
  75. </div>
  76. <div v-else>
  77. <el-input v-model="scope.row.declarationReason" :rows="1"
  78. type="textarea" placeholder="请输入申报理由" @blur="modifyDesFn(scope.row)"></el-input>
  79. </div>
  80. </template>
  81. </el-table-column>
  82. <el-table-column label="流程状态" prop="stage" width="150">
  83. <template #default="scope">
  84. <p class="indicitem" @click="seeStates(scope.row)">{{scope.row.stage}}</p>
  85. </template>
  86. </el-table-column>
  87. <el-table-column label="操作" width="200">
  88. <template #default="scope">
  89. <div style="display:flex">
  90. <p class="indicitem" v-if="scope.row.stage === '流程未启动'" @click="agetdeptresponsibility(scope.row)">启动</p>
  91. <p style="font-size: 12px;margin-right: 20px;" v-else-if="scope.row.stage === '流程已结束'" >已结束</p>
  92. <p style="font-size: 12px;margin-right: 20px;" v-else >已启动</p>
  93. <p class="indicitem" v-if="scope.row.stage === '流程已结束'" @click="getGenerateReport(scope.row)">生成报表</p>
  94. </div>
  95. </template>
  96. </el-table-column>
  97. </el-table>
  98. <el-pagination
  99. @size-change="handleSizeChange"
  100. @current-change="handleCurrentChange"
  101. :current-page="page.currentPage"
  102. :page-size="page.pagesize"
  103. layout="total, prev, pager, next, jumper"
  104. :total="page.total">
  105. </el-pagination>
  106. </div>
  107. <el-dialog :title="title" custom-class="startToDia" v-model="dialogVisible" width="600px" :close-on-click-modal="false">
  108. <div class="periodFrom">
  109. <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleForm" :validate-on-rule-change="false">
  110. <el-form-item label="部门名称" prop="deptName">
  111. <el-select v-model="ruleForm.deptName" placeholder="请选择部门名称" @change="changeDeptLead">
  112. <el-option
  113. v-for="item in departData"
  114. :key="item.deptId"
  115. :label="item.deptName"
  116. :value="item.deptId">
  117. </el-option>
  118. </el-select>
  119. </el-form-item>
  120. <!-- <el-form-item label="部门领导"> -->
  121. <!-- <el-select v-model="ruleForm.deptLeaderName" placeholder="请选择部门领导"> prop="deptLeaderName"
  122. <el-option
  123. v-for="item in deptLeaderOption"
  124. :key="item.id"
  125. :label="item.name"
  126. :value="item.id">
  127. </el-option>
  128. </el-select> -->
  129. <!-- <el-input v-model="ruleForm.deptLeaderName" disabled></el-input>
  130. </el-form-item> -->
  131. <el-form-item label="申报等级" prop="declarationLevel">
  132. <el-select v-model="ruleForm.declarationLevel" placeholder="请选择申报等级">
  133. <el-option
  134. v-for="item in declarationLevelOption"
  135. :key="item.value"
  136. :label="item.label"
  137. :value="item.value">
  138. </el-option>
  139. </el-select>
  140. </el-form-item>
  141. <el-form-item label="申报年份" prop="annual">
  142. <el-date-picker
  143. v-model="ruleForm.annual"
  144. type="year"
  145. value-format="YYYY"
  146. placeholder="请选择申报年份"
  147. />
  148. </el-form-item>
  149. <el-form-item label="申报月份">
  150. <el-input-number v-model="ruleForm.declarationMonth" :min="1" :max="12" />
  151. </el-form-item>
  152. <el-form-item label="申报理由" prop="declarationReason">
  153. <el-input v-model="ruleForm.declarationReason" :rows="5" type="textarea" placeholder="请输入申报理由"></el-input>
  154. </el-form-item>
  155. </el-form>
  156. </div>
  157. <template #footer>
  158. <span class="dialog-footer">
  159. <el-button @click="dialogVisible = false">取 消</el-button>
  160. <el-button type="primary" @click="saveevaluaStart('ruleForm')">确 定</el-button>
  161. </span>
  162. </template>
  163. </el-dialog>
  164. <el-dialog title="流程详情" v-model="statesVisible" :fullscreen="true" :close-on-click-modal="false">
  165. <div class="flowSty">
  166. <iframe id="iframeContain" width="100%" height="500px"
  167. frameborder="0" class="iframe" name="iframeContain" seamless scrolling="no" :src="iframeURL">
  168. </iframe>
  169. <el-table :data="stageArr" style="width: 100%">
  170. <el-table-column type="index" label="序号" align="center" />
  171. <el-table-column label="任务名称" prop="taskName" />
  172. <el-table-column label="任务创建时间" prop="createTime" />
  173. <el-table-column label="任务处理时间" prop="approveTime" />
  174. <el-table-column label="候选人" prop="assignInfo" width="300">
  175. <template #default="scope">
  176. <span>{{changeAssignInfo(scope.row)}}</span>
  177. </template>
  178. </el-table-column>
  179. <el-table-column label="执行人" prop="approverName" />
  180. <el-table-column label="处理状态" prop="status">
  181. <template #default="scope">
  182. <div v-if="scope.row.status === 'start'">启动</div>
  183. <div v-else-if="scope.row.status === 'agree'">同意</div>
  184. <div v-else-if="scope.row.status === 'awaiting_check'">等待,待审批</div>
  185. <div v-else-if="scope.row.status === 'reject'">驳回</div>
  186. </template>
  187. </el-table-column>
  188. <el-table-column label="备注/意见" prop="opinion" />
  189. </el-table>
  190. </div>
  191. </el-dialog>
  192. <el-dialog title="流程启动" v-model="activeVisible" width="600px" :close-on-click-modal="false">
  193. <div class="periodFrom">
  194. <el-form ref="ruleForm" label-width="100px" class="demo-ruleForm" :validate-on-rule-change="false">
  195. <el-form-item label="审批领导">
  196. <el-select v-model="activeLeaderName" placeholder="请选择审批领导">
  197. <el-option
  198. v-for="item in leaderArr"
  199. :key="item.no"
  200. :label="item.name"
  201. :value="item.no">
  202. <span style="float: left;display:inline-block;width:100px">{{ item.name }}</span>
  203. <span style="float: right;color: #909399;font-size: 13px;" >{{ item.no }}</span>
  204. </el-option>
  205. </el-select>
  206. </el-form-item>
  207. </el-form>
  208. </div>
  209. <template #footer>
  210. <span class="dialog-footer">
  211. <el-button @click="activeVisible = false">取 消</el-button>
  212. <el-button type="primary" @click="activeresponsibility()">启 动</el-button>
  213. </span>
  214. </template>
  215. </el-dialog>
  216. </div>
  217. <!-- @approveMsg="approveMsg" -->
  218. <start-from-list ref="assessmentApplicationDetail" ></start-from-list>
  219. <application-table ref="applicationTable"></application-table>
  220. </div>
  221. </template>
  222. <script>
  223. import startFromList from './assessmentApplicationFrom.vue'
  224. import applicationTable from './evaluationApplicationTab.vue'
  225. import btns from '../elbuttonS.vue'
  226. import seachs from '../seachGroup.vue'
  227. import { saveAs } from 'file-saver'
  228. import {apiGetevaluatiodeptadList, apiPostevaluationdeptadSave,apiGetdoAction,apiGetDepartmentLeader,apideptAdmodify,
  229. apiGetworkflowgetOpinion,apiGetevaluationdeptadReport,apiGetEvaluationDeptListAll,apiGetobtainApprovalLeader,
  230. apideptAdState, apiGetparticipantsNumber, apiPostevaluationdeptadDelete, apiGetaddApprovalLeader} from '../../api/api'
  231. export default {
  232. components: {
  233. startFromList,
  234. applicationTable,
  235. btns,
  236. seachs
  237. },
  238. data() {
  239. return {
  240. dialogVisible: false,
  241. statesVisible: false,
  242. activeVisible: false,
  243. title: '',
  244. activeLeaderName: '',
  245. windframradio: {},
  246. deleteSelect: [],
  247. changeDateSelect: [],
  248. assessmentApplicationData:[],
  249. leaderArr: [],
  250. activeRowObj: {},
  251. page:{
  252. pagesize: 12,
  253. currentPage: 1,
  254. total: 0
  255. },
  256. ruleForm: {
  257. deptName: '',
  258. deptLeaderName: '',
  259. declarationLevel: '',
  260. annual: '',
  261. declarationMonth: 1,
  262. declarationReason: ''
  263. },
  264. rules: {
  265. deptName: [
  266. { required: true, message: '请选择部门名称', trigger: 'change' }
  267. ],
  268. deptLeaderName: [
  269. { required: true, message: '请选择部门领导', trigger: 'change' }
  270. ],
  271. declarationLevel: [
  272. { required: true, message: '请选择申报等级', trigger: 'change' }
  273. ],
  274. annual: [
  275. { required: true, message: '请选择申报年份', trigger: 'change' }
  276. ],
  277. declarationReason: [
  278. { required: true, message: '请输入申报理由', trigger: 'blur' }
  279. ]
  280. },
  281. deptLeaderOption: [],
  282. declarationLevelOption: [],
  283. ruleDataAll: [],
  284. orderNumber: '',
  285. departNameS: '',
  286. timeIds: '',
  287. iframeURL: '',
  288. stageArr: [],
  289. departData: [],
  290. DepartmentLeaderObj: {},
  291. winPix: window.devicePixelRatio,
  292. innerWidth: window.innerWidth
  293. }
  294. },
  295. created() {
  296. this.declarationLevelOption = [
  297. {
  298. label: 'A',
  299. value: 'A'
  300. },
  301. {
  302. label: 'B',
  303. value: 'B'
  304. },
  305. {
  306. label: 'C',
  307. value: 'C'
  308. },
  309. {
  310. label: 'D',
  311. value: 'D'
  312. }
  313. ]
  314. this.getassessmentApplicationList()
  315. this.getDepartmentFromTreeData()
  316. },
  317. methods:{
  318. // 查询列表页面
  319. getassessmentApplicationList() {
  320. let that = this
  321. let userMes = JSON.parse(window.sessionStorage.getItem('user'))
  322. let params = {
  323. pageNum: that.page.currentPage,
  324. pageSize: that.page.pagesize,
  325. orderNumber: that.orderNumber,
  326. deptName: that.departNameS,
  327. deptId: userMes.deptId,
  328. // deptId: '',
  329. annual: that.timeIds ? this.timeIds.substring(0, this.timeIds.indexOf('-'))*1 : null,
  330. declarationMonth: that.timeIds ? this.timeIds.substring(this.timeIds.indexOf('-')+1, this.timeIds.length)*1 : null
  331. }
  332. apiGetevaluatiodeptadList(params).then(datas =>{
  333. if (datas && datas.data) {
  334. that.assessmentApplicationData = datas.data.records
  335. that.page.total = datas.data.total
  336. }
  337. })
  338. },
  339. // 查询部门
  340. getDepartmentFromTreeData() {
  341. let that = this
  342. // let params = {
  343. // id: '23031001',
  344. // num: 1
  345. // }
  346. // apiGetorganizationstructureFromTree(params).then(datas =>{
  347. // if (datas && datas.data) {
  348. // that.departData = datas.data[0].children
  349. // }
  350. // })
  351. apiGetEvaluationDeptListAll().then(datas =>{
  352. if (datas && datas.data) {
  353. that.departData = datas.data
  354. }
  355. })
  356. },
  357. // 根据部门查询人员
  358. changeDeptLead(val) {
  359. let that = this
  360. apiGetDepartmentLeader(val).then(datas =>{
  361. if (datas && datas.data) {
  362. that.DepartmentLeaderObj = datas.data
  363. that.ruleForm.deptLeaderName = datas.data.chargePersonName
  364. }
  365. })
  366. },
  367. applicationTableFn() {
  368. this.$refs.applicationTable.init(this.departData)
  369. },
  370. saveevaluaStart(formName) {
  371. let that = this
  372. that.$refs[formName].validate((valid) => {
  373. if (valid) {
  374. that.saveAndEditIndicatorData()
  375. }
  376. });
  377. },
  378. //新增/修改
  379. saveAndEditIndicatorData() {
  380. let that = this
  381. let userMes = JSON.parse(window.sessionStorage.getItem('user'))
  382. let deptName = ''
  383. that.departData.forEach(itv =>{
  384. if (itv.deptId === that.ruleForm.deptName) {
  385. deptName = itv.deptName
  386. }
  387. })
  388. let params = {
  389. deptId: that.ruleForm.deptName,
  390. deptName: deptName,
  391. // deptLeaderId: that.DepartmentLeaderObj.chargePersonId,
  392. // deptLeaderName: that.ruleForm.deptLeaderName,
  393. declarationLevel: that.ruleForm.declarationLevel,
  394. annual: that.ruleForm.annual*1,
  395. declarationMonth: that.ruleForm.declarationMonth,
  396. declarationReason: that.ruleForm.declarationReason,
  397. applicantId: userMes.id,
  398. applicantName: userMes.name
  399. }
  400. if (that.isSave) {
  401. params.id = that.evalradio.id
  402. }
  403. apiPostevaluationdeptadSave(params).then(datas =>{
  404. if (!datas.success) {
  405. that.$message({
  406. message: datas.message,
  407. type: 'error'
  408. });
  409. } else {
  410. if (!that.isSave) {
  411. that.$message({
  412. message: '绩效结果考核申报信息新增成功',
  413. type: 'success'
  414. });
  415. } else {
  416. that.$message({
  417. message: '绩效结果考核申报信息修改成功',
  418. type: 'success'
  419. });
  420. }
  421. that.dialogVisible = false
  422. that.changeDateSelect = []
  423. that.getassessmentApplicationList()
  424. }
  425. })
  426. },
  427. agetdeptresponsibility(row) {
  428. this.activeRowObj = row
  429. this.leaderArr = []
  430. let that = this
  431. apiGetparticipantsNumber(row.id).then(res =>{
  432. if (res.success) {
  433. that.$message({
  434. message: row.annual+'年度'+row.declarationMonth+'月份本次申报人数为'+res.data+'人',
  435. type: 'success'
  436. });
  437. this.activeVisible = true
  438. let params = {
  439. id: row.deptId
  440. }
  441. apiGetobtainApprovalLeader(params).then(datas =>{
  442. if (datas && datas.data) {
  443. that.leaderArr = datas.data
  444. if (datas.data.length>0) {
  445. that.activeLeaderName = datas.data[0].no
  446. }
  447. }
  448. })
  449. }
  450. })
  451. },
  452. activeresponsibility() {
  453. setTimeout(() =>{
  454. let that = this
  455. let row = this.activeRowObj
  456. let pars = {
  457. id: row.id,
  458. employeeNo: that.activeLeaderName
  459. }
  460. apiGetaddApprovalLeader(pars).then(val =>{
  461. if (val && val.data) {
  462. that.activeVisible = false
  463. let par = {
  464. defKey: "jxjgkhsb",
  465. businessKey: row.id,
  466. action: "start",
  467. opinion: "绩效结果考核申报",
  468. iamCode: window.localStorage.getItem('code')
  469. }
  470. apiGetdoAction(par).then(datas =>{
  471. if (datas && datas.data) {
  472. if (!datas.data.isOk) {
  473. that.$message({
  474. message: datas.data.msg,
  475. type: 'error'
  476. });
  477. } else {
  478. let params = {
  479. id: row.id,
  480. stage: '流程已开始'
  481. }
  482. apideptAdState(params).then(values =>{
  483. if (values.success) {
  484. that.getassessmentApplicationList()
  485. } else {
  486. that.$message({
  487. message: values.message,
  488. type: 'error'
  489. });
  490. }
  491. })
  492. }
  493. }
  494. })
  495. } else {
  496. that.$message({
  497. message: '领导添加失败',
  498. type: 'error'
  499. });
  500. }
  501. })
  502. },300)
  503. },
  504. clickDes(row, column, cell, event) {
  505. if (row.stage === '流程已结束') {
  506. row.chngeDes = false
  507. } else {
  508. let userMes = JSON.parse(window.sessionStorage.getItem('user'))
  509. let ispersonDept = window.sessionStorage.getItem('ispersonDept')
  510. if ((userMes.id === row.applicantId && row.stage === '流程未启动') || ispersonDept === 'true') {
  511. if (column.label === '申报理由') {
  512. row.chngeDes = true
  513. } else {
  514. row.chngeDes = false
  515. }
  516. }
  517. }
  518. },
  519. //明细
  520. getDetail(row) {
  521. this.$refs.assessmentApplicationDetail.init(row)
  522. },
  523. modifyDesFn(row) {
  524. let that = this
  525. let params = {
  526. id: row.id,
  527. declarationReason: row.declarationReason
  528. }
  529. apideptAdmodify(params).then(datas =>{
  530. if (!datas.success) {
  531. that.$message({
  532. message: datas.message,
  533. type: 'error'
  534. });
  535. } else {
  536. that.$message({
  537. message: '绩效结果考核申报申报理由修改成功',
  538. type: 'success'
  539. });
  540. that.getassessmentApplicationList()
  541. }
  542. })
  543. },
  544. changeAssignInfo(row) {
  545. let showStr = ''
  546. if (row.assignInfo) {
  547. showStr = row.assignInfo.substring(row.assignInfo.indexOf('-')+1, row.assignInfo.length).substring(0, row.assignInfo.substring(row.assignInfo.indexOf('-')+1, row.assignInfo.length).indexOf('-'))
  548. }
  549. return showStr
  550. },
  551. seeStates(row) {
  552. if (!row.instId) {
  553. this.$message({
  554. type: 'error',
  555. message: '无法查看流程'
  556. });
  557. } else {
  558. this.statesVisible = true
  559. let url = ''
  560. if (window.location.hostname === '10.65.78.81') {
  561. url = 'http://10.65.79.85:8080'
  562. } else {
  563. url = 'http://10.65.78.23:8080'
  564. }
  565. this.iframeURL = url+'/agilebpm-ui/bpm/instance/instanceImageDialog.html?instanceId='+row.instId+'&iamCode='+window.localStorage.getItem('code')
  566. this.getstageData(row.instId)
  567. }
  568. },
  569. // 根据流程id获取业务id
  570. getstageData(id) {
  571. let that = this
  572. let params = {
  573. instId: id,
  574. iamCode: window.localStorage.getItem('code')
  575. }
  576. apiGetworkflowgetOpinion(params).then(datas =>{
  577. if (datas && datas.data) {
  578. that.stageArr = datas.data.data
  579. }
  580. })
  581. },
  582. getSeachData() {
  583. this.page.currentPage = 1
  584. this.getassessmentApplicationList()
  585. },
  586. resetSeach() {
  587. this.page.currentPage = 1
  588. this.orderNumber = ''
  589. this.departNameS = ''
  590. this.timeIds = ''
  591. this.getassessmentApplicationList()
  592. },
  593. handleSizeChange(val){
  594. this.page.pagesize = val
  595. this.getassessmentApplicationList()
  596. },
  597. handleCurrentChange(val){
  598. this.page.currentPage =val
  599. this.getassessmentApplicationList()
  600. },
  601. rowClick(selection, row) {
  602. this.changeDateSelect = selection
  603. },
  604. approveMsg(val) {
  605. if (val) {
  606. this.getassessmentApplicationList()
  607. }
  608. },
  609. handleAdd() {
  610. this.dialogVisible = true
  611. this.title = '新建表单填报'
  612. let yearStr = new Date().getFullYear()
  613. let monthStr = new Date().getMonth()+1
  614. this.$nextTick(() =>{
  615. this.$refs['ruleForm'].resetFields()
  616. this.ruleForm = {
  617. deptName: '',
  618. deptLeaderName: '',
  619. declarationLevel: '',
  620. annual: yearStr.toString(),
  621. declarationMonth: monthStr,
  622. declarationReason: ''
  623. }
  624. })
  625. },
  626. //删除
  627. handleDelete() {
  628. this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
  629. confirmButtonText: '确定',
  630. cancelButtonText: '取消',
  631. type: 'warning'
  632. }).then(() => {
  633. let that = this
  634. let paramsArr = []
  635. that.changeDateSelect.forEach(it =>{
  636. paramsArr.push(it.id)
  637. })
  638. apiPostevaluationdeptadDelete(paramsArr.join(',')).then(datas =>{
  639. that.$message({
  640. type: 'success',
  641. message: datas.message
  642. });
  643. that.getassessmentApplicationList()
  644. that.changeDateSelect = []
  645. })
  646. })
  647. },
  648. getGenerateReport(row) {
  649. apiGetevaluationdeptadReport(row.id).then(datas =>{
  650. let blob = new Blob([datas], { type: "application/vnd.ms-excel" })
  651. saveAs(blob, '公司本部部门及员工月度绩效考核结果申报表.xlsx')
  652. })
  653. },
  654. evalApplicationTableSty() {
  655. if (this.winPix === 1.25 || this.innerWidth < 1800) {
  656. return 'evalApplication125Table'
  657. } else {
  658. return 'evalApplication100Table'
  659. }
  660. }
  661. }
  662. }
  663. </script>
  664. <style lang="less">
  665. .assessmentApplication{
  666. .assessmentApplicationBtn{
  667. .collectSeach{
  668. display: flex;
  669. padding: 24px 20px;
  670. border-bottom: 1px solid#D6DBEA;
  671. .exceed{
  672. display: flex;
  673. .exceedSpan{
  674. width: 105px;
  675. height: 12px;
  676. font-size: 14px;
  677. font-family: Microsoft YaHei;
  678. font-weight: 400;
  679. color: #8991B0;
  680. line-height: 12px;
  681. margin-top: 14px;
  682. }
  683. .el-input{
  684. margin-right:10px;
  685. height: 40px;
  686. .el-input__inner{
  687. height:40px;
  688. }
  689. .el-input__suffix{
  690. .el-select__caret{
  691. line-height:30px;
  692. }
  693. }
  694. }
  695. }
  696. .el-select{
  697. margin-right:10px;
  698. .el-input__inner{
  699. height:30px;
  700. }
  701. .el-input__suffix{
  702. .el-select__caret{
  703. line-height:30px;
  704. }
  705. }
  706. }
  707. }
  708. span{
  709. font-size:14px;
  710. }
  711. .PeriodBtn{
  712. display: flex;
  713. justify-content: flex-end;
  714. padding: 20px 0;
  715. }
  716. .el-button{
  717. height: 30px;
  718. // width:100px;
  719. padding: 0 20px ;
  720. // padding-top: 8px;
  721. span{
  722. margin:0;
  723. }
  724. }
  725. .assessmentApplicationTableData{
  726. .evalApplication125Table{
  727. .el-table__body-wrapper{
  728. height: 53vh !important;
  729. }
  730. }
  731. .evalApplication100Table{
  732. .el-table__body-wrapper{
  733. height: 60vh !important;
  734. }
  735. }
  736. .el-table{
  737. .el-input__inner{
  738. height: 30px !important;
  739. }
  740. .el-radio__label{
  741. display: none;
  742. }
  743. .tooltipCC{
  744. width: 300px;
  745. display: inline-block;
  746. overflow: hidden;
  747. text-overflow: ellipsis;
  748. white-space: nowrap;
  749. }
  750. .tooltipCCDes{
  751. width: 200px;
  752. display: inline-block;
  753. overflow: hidden;
  754. text-overflow: ellipsis;
  755. white-space: nowrap;
  756. }
  757. .indicitem{
  758. color: #409EFF;
  759. font-size: 12px;
  760. margin-right: 20px;
  761. cursor:pointer;
  762. &:hover{
  763. text-decoration: underline;
  764. }
  765. }
  766. }
  767. .el-pagination{
  768. margin-top: 20px;
  769. text-align: end;
  770. position: relative;
  771. }
  772. }
  773. .el-overlay{
  774. .startToDia{
  775. .el-dialog__body{
  776. padding: 30px 60px 30px 20px !important;
  777. .periodFrom{
  778. .el-select, .el-input{
  779. width: 100%;
  780. }
  781. .el-input{
  782. height: 30px;
  783. }
  784. }
  785. .flowSty{
  786. width: 100%;
  787. height: 70vh;
  788. }
  789. }
  790. }
  791. }
  792. }
  793. }
  794. </style>