|
@@ -9,9 +9,11 @@ export default {
|
|
|
name: "StudentAccess",
|
|
|
async mounted() {
|
|
|
const search = location.search;
|
|
|
- const obj = Object.fromEntries(
|
|
|
- new URLSearchParams(location.search).entries()
|
|
|
- );
|
|
|
+ let obj = {};
|
|
|
+ for (const [k, v] of new URLSearchParams(location.search).entries()) {
|
|
|
+ obj[k] = v;
|
|
|
+ }
|
|
|
+
|
|
|
const {
|
|
|
accountType,
|
|
|
accountValue,
|