diff --git a/src/views/Login/Login.vue b/src/views/Login/Login.vue
index 5d349ce3..bdc33179 100644
--- a/src/views/Login/Login.vue
+++ b/src/views/Login/Login.vue
@@ -48,14 +48,14 @@
>
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/src/views/Login/components/LoginForm.vue b/src/views/Login/components/LoginForm.vue
index 09d4bca3..e779e0e7 100644
--- a/src/views/Login/components/LoginForm.vue
+++ b/src/views/Login/components/LoginForm.vue
@@ -82,33 +82,33 @@
mode="pop"
@success="handleLogin"
/>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
+
+
+
+ 复制数据
+
+
+
{
queryParams.machineId = row.id
await getList()
}
+
+//复制数据
+function copyTextToClipboard(text: string): Promise {
+ return navigator.clipboard.writeText(text)
+ .then(() => {
+ message.success('Text copied to clipboard')
+ })
+ .catch((error) => {
+ message.success('Could not copy text: '+ error);
+ });
+}