Commit c46b3d3f933cd75bebb350cc141bf2fc24690d2b
Committed by
xp.Huang
1 parent
0c81eb9e
pref: 优化发布主题去掉感叹号,复制设备id和访问令牌去掉省略号
Showing
3 changed files
with
3 additions
and
3 deletions
@@ -110,7 +110,7 @@ | @@ -110,7 +110,7 @@ | ||
110 | const url = createShareUrl(record); | 110 | const url = createShareUrl(record); |
111 | await copy(url); | 111 | await copy(url); |
112 | if (unref(copied)) { | 112 | if (unref(copied)) { |
113 | - createMessage.success('复制成功~'); | 113 | + createMessage.success('复制成功'); |
114 | } | 114 | } |
115 | }; | 115 | }; |
116 | 116 |
@@ -119,7 +119,7 @@ | @@ -119,7 +119,7 @@ | ||
119 | const handleCreateShareUrl = async (record: BigScreenCenterItemsModel) => { | 119 | const handleCreateShareUrl = async (record: BigScreenCenterItemsModel) => { |
120 | await copy(createShareUrl(record)); | 120 | await copy(createShareUrl(record)); |
121 | if (unref(copied)) { | 121 | if (unref(copied)) { |
122 | - createMessage.success('复制成功~'); | 122 | + createMessage.success('复制成功'); |
123 | } | 123 | } |
124 | }; | 124 | }; |
125 | 125 |
@@ -8,7 +8,7 @@ export const handeleCopy = async (e) => { | @@ -8,7 +8,7 @@ export const handeleCopy = async (e) => { | ||
8 | const { copied, copy } = useClipboard({ legacy: true }); | 8 | const { copied, copy } = useClipboard({ legacy: true }); |
9 | await copy(JSON.parse(JSON.stringify(unref(e), null, 2))); | 9 | await copy(JSON.parse(JSON.stringify(unref(e), null, 2))); |
10 | if (unref(copied)) { | 10 | if (unref(copied)) { |
11 | - createMessage.success('复制成功!'); | 11 | + createMessage.success('复制成功'); |
12 | } | 12 | } |
13 | }; | 13 | }; |
14 | 14 |