| | |
| | | type="text" |
| | | icon="el-icon-edit" |
| | | @click="handleRuleUpdate(item)" |
| | | v-hasPermi="['check:template:edit']" |
| | | >修改 |
| | | </el-button> |
| | | </div> |
| | |
| | | icon="el-icon-download" |
| | | size="mini" |
| | | @click="handleExport" |
| | | v-hasPermi="['check:result:detail:export']" |
| | | >导出 |
| | | </el-button> |
| | | </el-col> |
| | |
| | | width="180px" |
| | | > |
| | | <template slot-scope="scope"> |
| | | <span>{{ scope.row[item.ruleIndex] }}</span> |
| | | <span>{{ (scope.row[item.ruleIndex] * 100).toFixed(2) + '%'}}</span> |
| | | </template> |
| | | </el-table-column> |
| | | </template> |
| | |
| | | id: null, |
| | | date: null, |
| | | quarter: null, |
| | | examineTag: null |
| | | examineTag: null, |
| | | deptId: null |
| | | }, |
| | | // 表单校验 |
| | | rules: {}, |
| | |
| | | //考核成绩详情跳转参数接收 |
| | | if (this.$route.query.id) { |
| | | this.queryParams.id = this.$route.query.id; |
| | | } |
| | | if(this.$route.query.deptId){ |
| | | this.queryParams.deptId = this.$route.query.deptId; |
| | | } |
| | | let examineTag = this.$route.query.examineTag; |
| | | this.activeIndex = examineTag; |
| | |
| | | /** 导出按钮操作 */ |
| | | handleExport() { |
| | | this.download( |
| | | "/check/score/export", |
| | | "/check/score/detailExport", |
| | | { |
| | | ...this.queryParams, |
| | | }, |