|
|
|
@ -89,18 +89,14 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
console.log(location);
|
|
|
|
|
this.getCodeValueo();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
getCodeValueo() {
|
|
|
|
|
// const params = window.location.search.substring(1);
|
|
|
|
|
const params = new URLSearchParams(location.search);
|
|
|
|
|
const name = params.get("codeValue");
|
|
|
|
|
console.log(name);
|
|
|
|
|
getCodeValueo({
|
|
|
|
|
codeValue: name,
|
|
|
|
|
}).then((response) => {
|
|
|
|
|
getCodeValueo({ codeValue: name }).then((response) => {
|
|
|
|
|
this.form = response.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|