123456789101112131415161718192021222324 |
- <template>
- <view>
- <web-view :src="href"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- href: ""
- };
- },
- onLoad(option) {
- if (option.url == 'jinjiaqu_pingce') {
- this.href = 'http://webdevelop.nxjiewei.com/assets/html/pingce/?mine_code=jinjiaqu&token=' + uni.getStorageSync('Authorization') + '#/'
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|