sn
This commit is contained in:
parent
2e0049712d
commit
f4809f753d
@ -53,6 +53,7 @@
|
|||||||
let staffId = "";
|
let staffId = "";
|
||||||
let userId = "";
|
let userId = "";
|
||||||
let type = "";
|
let type = "";
|
||||||
|
let sn = "";
|
||||||
if (str.includes("&")) {
|
if (str.includes("&")) {
|
||||||
let arr = str.split("&");
|
let arr = str.split("&");
|
||||||
arr.forEach(item => {
|
arr.forEach(item => {
|
||||||
@ -64,6 +65,8 @@
|
|||||||
userId = item.split("=")[1]
|
userId = item.split("=")[1]
|
||||||
} else if (item.includes("type")) {
|
} else if (item.includes("type")) {
|
||||||
type = item.split("=")[1]
|
type = item.split("=")[1]
|
||||||
|
} else {
|
||||||
|
sn = item.split("=")[1]
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user