|
@@ -1,29 +1,28 @@
|
|
|
-<template>
|
|
|
-
|
|
|
-</template>
|
|
|
-
|
|
|
-<script>
|
|
|
- import { Indicator } from 'mint-ui'
|
|
|
- import baseJs from '@/function/common/base.js';
|
|
|
- export default {
|
|
|
- data(){
|
|
|
- return {
|
|
|
- rounternum:''
|
|
|
- }
|
|
|
- },
|
|
|
- mounted(){
|
|
|
- this.rounternum=this.$route.query.speUrl;
|
|
|
- Indicator.open()
|
|
|
- var flagIndex = this.rounternum.indexOf('#/');
|
|
|
- var flagInfo = this.rounternum.substr(flagIndex+1);
|
|
|
- console.log('lll')
|
|
|
- console.log(flagInfo);
|
|
|
- // this.$router.replace(flagInfo);
|
|
|
- window.location.replace(this.rounternum)
|
|
|
- },
|
|
|
- methods : {
|
|
|
- }
|
|
|
- }
|
|
|
-</script>
|
|
|
- <style lang="less" scoped></style>
|
|
|
-
|
|
|
+<template>
|
|
|
+
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { Indicator } from 'mint-ui'
|
|
|
+import baseJs from '@/function/common/base.js'
|
|
|
+export default {
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ rounternum: ''
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted () {
|
|
|
+ this.rounternum = this.$route.query.speUrl
|
|
|
+ Indicator.open()
|
|
|
+ var flagIndex = this.rounternum.indexOf('#/')
|
|
|
+ var flagInfo = this.rounternum.substr(flagIndex + 1)
|
|
|
+ console.log('lll')
|
|
|
+ console.log(flagInfo)
|
|
|
+ // this.$router.replace(flagInfo);
|
|
|
+ window.location.replace(this.rounternum)
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+ <style lang="less" scoped></style>
|