|
|
@@ -60,7 +60,18 @@ const isAfterJuly28 = () => {
|
|
|
|
|
|
|
|
|
const handleAction = (type) => { /* 处理交易/入金等 */ };
|
|
|
-const handleCopy = (text) => { uni.setClipboardData({ data: text }); };
|
|
|
+const handleCopy = (text: string) => {
|
|
|
+ uni.setClipboardData({
|
|
|
+ data: text,
|
|
|
+ success: function () {
|
|
|
+ uni.showToast({
|
|
|
+ title: t('Btn.item8'),
|
|
|
+ icon: 'none',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+}
|
|
|
const handleChangePassword = () => { /* 跳转修改密码 */ };
|
|
|
const typeMap = computed(() => ({
|
|
|
1: t('AccountType.ClassicAccount'),
|