diff --git a/src/views/course/ManageListRemote.vue b/src/views/course/ManageListRemote.vue
index c3e5f28d..a2d74b41 100644
--- a/src/views/course/ManageListRemote.vue
+++ b/src/views/course/ManageListRemote.vue
@@ -276,7 +276,7 @@
{{ scope.row.sysCreateTime }}
-
+
@@ -2059,12 +2059,12 @@ export default {
buildActions(row) {
const actions = [];
// 优先级按原有展示顺序
- if (row.isPermission && !this.forChoose && row.status == 2) {
- actions.push({ key: 'withdraw', label: '撤回', className: 'action-link--primary' });
- }
if (this.aiPermission) {
actions.push({ key: 'aiSetting', label: 'AI设置', className: 'action-link--primary' });
}
+ if (row.isPermission && !this.forChoose && row.status == 2) {
+ actions.push({ key: 'withdraw', label: '撤回', className: 'action-link--primary' });
+ }
if (row.isPermission && row.status != 2) {
actions.push({ key: 'edit', label: '编辑', className: 'action-link--primary' });
}