CN-743 下钻配置增加unit相关内容

This commit is contained in:
hyx
2022-10-12 11:11:22 +08:00
parent e005eb7cb4
commit c025109b49
5 changed files with 49 additions and 25 deletions

View File

@@ -57,8 +57,8 @@ const user = {
tempArr = tempArr[1].split('&')
tempArr.forEach(t => {
let firstEqualIndex = t.indexOf('=')
let key = t.substring(0,firstEqualIndex)
let value = t.substring(firstEqualIndex+1)
let key = t.substring(0, firstEqualIndex)
let value = t.substring(firstEqualIndex + 1)
query[key] = value
})
}