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