refactor: 移除未使用的工具函数导入
移除了 `getUrlParams` 和 `stringifyQuery` 两个未使用的工具函数导入,以简化代码并提高可维护性。
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -18,7 +18,7 @@ import vConsole from "@/utils/vconsole"; | ... | @@ -18,7 +18,7 @@ import vConsole from "@/utils/vconsole"; |
| 18 | import wx from "weixin-js-sdk"; | 18 | import wx from "weixin-js-sdk"; |
| 19 | import { wxJsAPI } from "@/api/wx/config"; | 19 | import { wxJsAPI } from "@/api/wx/config"; |
| 20 | import { apiList } from "@/api/wx/jsApiList.js"; | 20 | import { apiList } from "@/api/wx/jsApiList.js"; |
| 21 | -import { wxInfo, getUrlParams, stringifyQuery } from "@/utils/tools"; | 21 | +import { wxInfo } from "@/utils/tools"; |
| 22 | 22 | ||
| 23 | import 'vant/es/toast/style' | 23 | import 'vant/es/toast/style' |
| 24 | 24 | ... | ... |
-
Please register or login to post a comment