| | |
| | | |
| | | export const getAsserorDetailList = (current, size, params) => { |
| | | return request({ |
| | | url: '/assessment/assessmentScore/list', |
| | | url: '/assessment/assessmentScore/listInfo', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | |
| | | dialogClickModal: false, |
| | | column: [ |
| | | { |
| | | label: "工号", |
| | | prop: 'code', |
| | | type: "input", |
| | | }, |
| | | { |
| | | label: "考核人", |
| | | prop: "scoreUserName", |
| | | type: "input", |
| | |
| | | { |
| | | label: "考核分", |
| | | prop: "scoreVal", |
| | | type: "input", |
| | | }, |
| | | { |
| | | label: "权值", |
| | | prop: "weight", |
| | | type: "input", |
| | | } |
| | | ] |
| | |
| | | onLoad(page, params = {}) { |
| | | this.loading = true; |
| | | |
| | | const { id } = this.params.data |
| | | const { id, type } = this.params.data |
| | | |
| | | const { |
| | | } = this.query; |
| | |
| | | let values = { |
| | | ...this.query, |
| | | ...params, |
| | | type, |
| | | assessmentTaskId: id |
| | | }; |
| | | getAsserorDetailList(page.currentPage, page.pageSize, values).then(res => { |