-
-
字典ID:{{ data.id }}
-
说明:{{ data.describe }}
-
创建日期:{{ data.name }}
-
-
-
-
-
-
+
+
+
字典ID:{{ data.id }}
+
说明:{{ data.describe }}
+
创建日期: {{
+ dayjs(
+ data?.createTime,
+ ).format(
+ 'YYYY-MM-DD HH:mm:ss',
+ )
+ }}
+
+
+
+
+
+
新增
-
-
+
+
-
-
-
+
+
+
+
+
-
+
+
-
-
+
\ No newline at end of file
diff --git a/src/views/system/User/index.vue b/src/views/system/User/index.vue
index 71c6b654..866d6303 100644
--- a/src/views/system/User/index.vue
+++ b/src/views/system/User/index.vue
@@ -94,10 +94,11 @@
: '删除',
}"
:popConfirm="{
- title: `确认删除`,
+ title:slotProps?.type?.id === 'application' ? '此操作将同步删除对应的第三方配置,确认删除?':'确认删除',
onConfirm: () =>
table.clickDel(slotProps.id),
}"
+
:disabled="slotProps.status"
>
@@ -215,7 +216,7 @@ const columns = [
dataIndex: 'action',
key: 'action',
fixed: 'right',
- width: 150,
+ width: 200,
scopedSlots: true,
},
];