| | |
| | | <!-- <el-button type="primary" text plain icon="el-icon-download">导出</el-button> --> |
| | | <el-button type="danger" text plain icon="el-icon-delete" @click="rowDel(row)">删除</el-button> |
| | | </template> |
| | | <template #candidateCutoffTimeEnd="{ row }"> |
| | | {{ row.candidateCutoffTimeStart || '开始时间为完善' }} |
| | | <div style="text-align: center;">-</div> |
| | | {{ row.candidateCutoffTimeEnd || '结束时间为完善' }} |
| | | </template> |
| | | <template #evaluateCutoffTimeEnd="{ row }"> |
| | | {{ row.evaluateCutoffTimeStart || '开始时间为完善' }} |
| | | <div style="text-align: center;">-</div> |
| | | {{ row.candidateCutoffTimeEnd || '结束时间为完善' }} |
| | | </template> |
| | | </avue-crud> |
| | | <!-- 新增编辑弹窗 --> |
| | | <add-dialog :params="addParams" @refreshTable="this.onLoad" /> |
| | |
| | | taskSettingDialog(row) { |
| | | this.taskSettingParams = { |
| | | visible: true, |
| | | type: this.defaultTaskType, |
| | | task: row |
| | | } |
| | | } |
| | | }, |
| | | provide() { |
| | | return { |
| | | type: () => this.defaultTaskType |
| | | } |
| | | } |
| | | }; |
| | | </script> |
| | | |