|
@@ -28,6 +28,7 @@ import { trainingStatusArray } from '@/utils/searchArray';
|
|
|
import StudentTraomomhDetails from '../modals/studentTraomomhDetails'
|
|
|
import dayjs from 'dayjs';
|
|
|
import { lookup } from 'dns';
|
|
|
+import TheEmpty from '/src/components/TheEmpty';
|
|
|
export default defineComponent({
|
|
|
name: 'student-studentList',
|
|
|
setup(props, { emit }) {
|
|
@@ -158,7 +159,7 @@ export default defineComponent({
|
|
|
<p class={styles.nosub}>未提交</p>
|
|
|
) : null}
|
|
|
{row.trainingStatus == 'SUBMITTED' ? (
|
|
|
- <p class={styles.ison}>不合格</p>
|
|
|
+ <p style={{color:'#EA4132'}} class={styles.ison}>不合格</p>
|
|
|
) : null}
|
|
|
{row.trainingStatus == 'TARGET' ? (
|
|
|
<p class={styles.isok}>合格</p>
|
|
@@ -250,6 +251,9 @@ export default defineComponent({
|
|
|
</div>
|
|
|
<div >
|
|
|
<NDataTable
|
|
|
+ v-slots={{
|
|
|
+ empty:()=><TheEmpty></TheEmpty>
|
|
|
+ }}
|
|
|
class={styles.classTable}
|
|
|
loading={state.loading}
|
|
|
columns={columns()}
|