From 8534025c45b4736975730678b9ccf23570a75f95 Mon Sep 17 00:00:00 2001
From: liuyu <yu.liu@cqgbkj.com>
Date: 星期二, 22 九月 2026 09:25:48 +0800
Subject: [PATCH] feat(tms): 新增试卷、培训任务、个人任务页面
---
apps/jnpf-web-apps-main/src/views/x/tms/trainRecord/index.vue | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/apps/jnpf-web-apps-main/src/views/x/tms/trainRecord/index.vue b/apps/jnpf-web-apps-main/src/views/x/tms/trainRecord/index.vue
index 06f049d..31b2456 100644
--- a/apps/jnpf-web-apps-main/src/views/x/tms/trainRecord/index.vue
+++ b/apps/jnpf-web-apps-main/src/views/x/tms/trainRecord/index.vue
@@ -9,6 +9,9 @@
import { BasicVxeTable, TableAction, useVxeTable } from '@jnpf/ui/vxeTable';
import { getTrainRecordList } from '#/api/x/tms/trainRecord';
+import { TMS_BTN } from '#/views/x/tms/shared/ui';
+
+import '#/views/x/tms/shared/page.css';
defineOptions({ name: 'TmsTrainRecord' });
@@ -84,7 +87,7 @@
}
function getTableActions(record: TrainRecordListItem): ActionItem[] {
- return [{ label: '鏌ョ湅', onClick: handleView.bind(null, record) }];
+ return [{ label: TMS_BTN.detail, onClick: handleView.bind(null, record) }];
}
</script>
@@ -95,8 +98,8 @@
<BasicVxeTable @register="registerTable">
<template #tableTitle>
<a-space>
- <a-button type="primary" @click="handleViewSelected">鏌ョ湅</a-button>
- <span class="text-gray-400 text-sm">涓汉鍩硅璁板綍琛紝閫夋嫨浜哄憳鏌ョ湅鍩硅鐩綍銆�</span>
+ <a-button type="primary" @click="handleViewSelected">{{ TMS_BTN.detail }}</a-button>
+ <span class="tms-toolbar-hint">閫夋嫨浜哄憳鏌ョ湅鍩硅鐩綍</span>
</a-space>
</template>
<template #action="{ record }">
--
Gitblit v1.8.0