| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onLoad({token, sharecode, is_channel, is_notice, print}){
- this.$api.getServiceurl({token}).then(({code, data}) => {
- if(print){
- console.log(data)
- return
- }
- location.href = `${data}/h5/#/pages/tabbar/index?token=${token || ''}&sharecode=${sharecode || ''}&is_channel=${is_channel || ''}&is_notice=${is_notice || ''}`
- })
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|