Sign in
简柏林
/
thingskit-front
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
d9700411add670a1c4376d81e217e6d046cc6c07
Authored by
ww
2022-09-23 16:15:57 +0800
1 parent
5bde1fae
perf: message manage sms && email tabel add remark column
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletions
src/views/message/log/item/SmsLog.vue
src/views/message/log/item/email.data.ts
src/views/message/log/item/sms.data.ts
src/views/message/log/item/SmsLog.vue
View file @
d970041
...
...
@@ -86,7 +86,7 @@
86
86
});
87
87
function handleQuery(record: Recordable) {
88
88
Modal.info({
89
-
title: '
当前配置
',
89
+
title: '
消息内容
',
90
90
width: 480,
91
91
centered: true,
92
92
maskClosable: true,
...
...
src/views/message/log/item/email.data.ts
View file @
d970041
...
...
@@ -36,6 +36,11 @@ export const columns: BasicColumn[] = [
36
36
width: 160,
37
37
},
38
38
{
39
+
title: '备注',
40
+
dataIndex: 'remark',
41
+
width: 120,
42
+
},
43
+
{
39
44
title: '发送时间',
40
45
dataIndex: 'sendTime',
41
46
width: 180,
...
...
src/views/message/log/item/sms.data.ts
View file @
d970041
...
...
@@ -36,6 +36,11 @@ export const columns: BasicColumn[] = [
36
36
},
37
37
},
38
38
{
39
+
title: '备注',
40
+
dataIndex: 'remark',
41
+
width: 120,
42
+
},
43
+
{
39
44
title: '发送时间',
40
45
dataIndex: 'sendTime',
41
46
width: 160,
...
...