12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <div>
- 123
- </div>
- </template>
- <script>
- import Vue from 'vue';
- export default Vue.extend({
- head() {
- return {
- title: '认证过渡页面'
- }
- },
- data() {
- return {
- };
- },
- // created() {
- // console.log(this.$route.query);
- // this.stationId = this.$route.query.stationId;
- // this.stationName = this.$route.query.stationName;
- // this.gasNum = this.$route.query.gasNum;
- // this.oilName = this.$route.query.oilName;
- // this.account = this.$route.query.account;
- // },
- mounted() {
- console.log("route");
- console.log(this.$route)
- console.log(this.$route.query);
- console.log("this")
- // console.log(this.$axios.$get("/getGzhAuthorizeInfo",{
- // params: {
- // code:this.$route.query.code,
- // stationId:"1"
- // }
- // }))
- },
- methods: {
- }
- })
- </script>
- <style lang="less">
- </style>
|