sn
This commit is contained in:
parent
fa268dc54a
commit
2e0049712d
@ -231,13 +231,16 @@
|
|||||||
let storeId = "19";
|
let storeId = "19";
|
||||||
|
|
||||||
let staffId = "";
|
let staffId = "";
|
||||||
|
let sn = "";
|
||||||
if (str.includes("&")) {
|
if (str.includes("&")) {
|
||||||
let arr = str.split("&");
|
let arr = str.split("&");
|
||||||
arr.forEach(item => {
|
arr.forEach(item => {
|
||||||
if (item.includes("storeId")) {
|
if (item.includes("storeId")) {
|
||||||
storeId = item.split("=")[1]
|
storeId = item.split("=")[1]
|
||||||
} else {
|
} else if (item.includes("staffId")) {
|
||||||
staffId = item.split("=")[1]
|
staffId = item.split("=")[1]
|
||||||
|
} else {
|
||||||
|
sn = item.split("=")[1]
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user