1234567891011121314151617181920212223 |
- <template>
- <view>
- <web-view :src="href"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- href: ""
- };
- },
- onLoad(option) {
- this.href = 'http://anstatic.nxmy.com:8011/assets/html/zhks-quankuang/zaoquan/shujufenxi/?token=' + uni.getStorageSync('Authorization')
-
- }
- }
- </script>
- <style lang="scss">
- </style>
|