File was renamed from culture/src/views/deliveryAssessment/assayTaskList/index.vue |
| | |
| | | <el-table-column prop="age" label="操作"> |
| | | <template #default="{ row }"> |
| | | <el-button type="text">详情</el-button> |
| | | <el-button type="text">评定</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </template> |
| | | </TableCustom> |
| | | |
| | | <!-- 化验师 审批人 --> |
| | | <AssessmentDialog :modelValue="assessmentVisible" :reportData="currentReport" /> |
| | | |
| | | <!-- 工艺工程师 --> |
| | | <!-- 审批人 --> |
| | | <CraftDialog :modelValue="craftVisible" :reportData="currentReport" /> |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | import AssessmentDialog from './components/AssessmentDialog.vue' |
| | | import CraftDialog from './components/CraftDialog.vue' |
| | | |
| | | export default { |
| | | name: 'AssayTaskList', |
| | | name: 'ReportEvaluation', |
| | | components: { |
| | | AssessmentDialog, |
| | | CraftDialog |
| | | }, |
| | | data() { |
| | |
| | | pageNum: 1 |
| | | }, |
| | | total: 0, |
| | | assessmentVisible: false, |
| | | currentReport: {}, |
| | | craftVisible: false, |
| | | } |