|
|
@ -109,46 +109,14 @@ const remark1 = ref(null); |
|
|
|
const remark2 = ref(null); |
|
|
|
|
|
|
|
const columns = ref([ |
|
|
|
{ |
|
|
|
title: '序号', |
|
|
|
dataIndex: 'indexId', |
|
|
|
key: 'indexId', |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '实验名称', |
|
|
|
dataIndex: 'name', |
|
|
|
key: 'name', |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '实验报告', |
|
|
|
dataIndex: 'report', |
|
|
|
key: 'report', |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '实验过程', |
|
|
|
dataIndex: 'course', |
|
|
|
key: 'course', |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '实验数据', |
|
|
|
dataIndex: 'information', |
|
|
|
key: 'information', |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '实验结果', |
|
|
|
dataIndex: 'result', |
|
|
|
key: 'result', |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '程序代码', |
|
|
|
dataIndex: 'sourceCode', |
|
|
|
key: 'sourceCode', |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '审核', |
|
|
|
key: 'action', |
|
|
|
dataIndex: 'action', |
|
|
|
}, |
|
|
|
{ title: '序号', dataIndex: 'indexId', key: 'indexId' }, |
|
|
|
{ title: '实验名称', dataIndex: 'name', key: 'name' }, |
|
|
|
{ title: '实验报告', dataIndex: 'report', key: 'report' }, |
|
|
|
{ title: '实验过程', dataIndex: 'course', key: 'course' }, |
|
|
|
{ title: '实验数据', dataIndex: 'information', key: 'information' }, |
|
|
|
{ title: '程序代码', dataIndex: 'sourceCode', key: 'sourceCode' }, |
|
|
|
{ title: '实验结果', dataIndex: 'result', key: 'result' }, |
|
|
|
{ title: '审核', key: 'action', dataIndex: 'action' }, |
|
|
|
]); |
|
|
|
|
|
|
|
const dataList = ref([]); |
|
|
|