Use With Blueprints

This commit is contained in:
StarsL.cn
2022-01-29 02:45:54 +08:00
parent 97221356ef
commit 8d34008ce8
116 changed files with 199 additions and 166 deletions

25
vue-consul/mock/utils.js Normal file
View File

@@ -0,0 +1,25 @@
/**
* @param {string} url
* @returns {Object}
*/
function param2Obj(url) {
const search = decodeURIComponent(url.split('?')[1]).replace(/\+/g, ' ')
if (!search) {
return {}
}
const obj = {}
const searchArr = search.split('&')
searchArr.forEach(v => {
const index = v.indexOf('=')
if (index !== -1) {
const name = v.substring(0, index)
const val = v.substring(index + 1, v.length)
obj[name] = val
}
})
return obj
}
module.exports = {
param2Obj
}