diff --git a/.env b/.env index ad48d2b..5933374 100644 --- a/.env +++ b/.env @@ -2,3 +2,4 @@ VITE_API_URL=http://admin.ceshi.guo123.cn VITE_TINYMCE_KEY=agmu6i1c6k7bcp36oenzyz7yi1yplptq7goyx88y1g6ofnqu VITE_AES_KEY=st123456654321st VITE_WEB_HOST=http://business.ceshi.guo123.cn +VITE_WEB_MEMBER_HOST=http://member.ceshi.guo123.cn diff --git a/src/pages/manage/pages/account-management/expert-account.vue b/src/pages/manage/pages/account-management/expert-account.vue index 9fd0aca..a90a63d 100644 --- a/src/pages/manage/pages/account-management/expert-account.vue +++ b/src/pages/manage/pages/account-management/expert-account.vue @@ -4,6 +4,7 @@ import {reactive} from "vue"; import useTableQuery from "../../../../hooks/useTableQuery.js"; import Api from "../../../../api/index.js"; import EditExpertInfoModal from "./components/EditExpertInfoModal.vue"; +import AESCrypto from "../../../../utils/AESCrypto.js"; const columns = [ { @@ -134,6 +135,11 @@ const {loading, pagination, initFetchData, fetchData} = useTableQuery({ Object.assign(vo, data); } }); + +const fastInput = (item) => { + const po = new URLSearchParams(AESCrypto.encrypt(`${item.id}`)).toString(); + window.open(`${import.meta.env.VITE_API_URL}/pages/fastInput/index?${po}`); +}