statistical_analysis_table.vue 361 B

1234567891011121314151617181920212223
  1. <template>
  2. <view>
  3. <web-view :src="href"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. href: ""
  11. };
  12. },
  13. onLoad(option) {
  14. this.href = 'http://anstatic.nxmy.com:8011/assets/html/zhks-quankuang/zaoquan/shujufenxi/?token=' + uni.getStorageSync('Authorization')
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. </style>