修改搜索条件被截掉的问题,新增电表列表

This commit is contained in:
2025-01-14 17:10:46 +08:00
parent b905da6035
commit 2b653ea3ed
10 changed files with 33 additions and 18 deletions

View File

@@ -45,9 +45,9 @@ export function getConfigByEnv() {
switch (envVersion) {
// 开发版
case 'develop':
// api = "http://localhost:8000"
api = "http://localhost:8000"
// api = "https://zgd.hbhcbn.com/api3"
// api = "https://zgd.hbhcbn.com/api3"
api = "https://zgd.hbhcbn.com/api3"
// api = "https://zgd.hbhcbn.com/wxApi"
// api = "http://127.0.0.1:4523/m1/4143821-0-default"
break;
@@ -245,4 +245,8 @@ export function getPageUrl() {
/** 根据文件路径获取文件名 */
export function getFileName(path) {
return path.slice(path.lastIndexOf("/") + 1, -1)
}
export function replaceSpecialIcon(str) {
return str.replace(/#/g, escape("#"))
}