diff --git a/.env.development b/.env.development
index f75c67c..f60ed54 100644
--- a/.env.development
+++ b/.env.development
@@ -1,2 +1,2 @@
-VITE_API_BASE_URL= 'http://127.0.0.1:12401'
-# VITE_API_BASE_URL='http://partial2.kkknametrans.buzz'
+# VITE_API_BASE_URL= 'http://127.0.0.1:12401'
+VITE_API_BASE_URL='http://partial2.kkknametrans.buzz'
diff --git a/src/views/merchant/config/components/payway-list.vue b/src/views/merchant/config/components/payway-list.vue
index 96e33f5..995483b 100644
--- a/src/views/merchant/config/components/payway-list.vue
+++ b/src/views/merchant/config/components/payway-list.vue
@@ -15,9 +15,9 @@
useClipboard({ source: data.roadSetting })"
+ @click="() => copyClipboard(data.roadSetting)"
>
@@ -136,7 +136,7 @@ import { isNumber } from '@/utils/is';
import AddDeploy from './deploy/add-deploy.vue';
import { openExternalLink } from './deploy/components/data';
import { useClipboard } from '@vueuse/core';
-import { Message } from '@arco-design/web-vue';
+import { Message, Notification } from '@arco-design/web-vue';
const props = defineProps<{
uid: string;
@@ -177,6 +177,12 @@ const deleteDeploy = async (
fetchData(uid);
};
+const copyClipboard = async (roadSetting: string) => {
+ const { copy } = useClipboard();
+ await copy(roadSetting);
+ Notification.success(`${roadSetting}`);
+};
+
const openLink = async (
platformLabel: string,
isLinkSingle: boolean,