authen.vue 961 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <div>
  3. 123
  4. </div>
  5. </template>
  6. <script>
  7. import Vue from 'vue';
  8. export default Vue.extend({
  9. head() {
  10. return {
  11. title: '认证过渡页面'
  12. }
  13. },
  14. data() {
  15. return {
  16. };
  17. },
  18. // created() {
  19. // console.log(this.$route.query);
  20. // this.stationId = this.$route.query.stationId;
  21. // this.stationName = this.$route.query.stationName;
  22. // this.gasNum = this.$route.query.gasNum;
  23. // this.oilName = this.$route.query.oilName;
  24. // this.account = this.$route.query.account;
  25. // },
  26. mounted() {
  27. console.log("route");
  28. console.log(this.$route)
  29. console.log(this.$route.query);
  30. console.log("this")
  31. // console.log(this.$axios.$get("/getGzhAuthorizeInfo",{
  32. // params: {
  33. // code:this.$route.query.code,
  34. // stationId:"1"
  35. // }
  36. // }))
  37. },
  38. methods: {
  39. }
  40. })
  41. </script>
  42. <style lang="less">
  43. </style>