cloud_disk.vue 427 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view>
  3. <web-view :src="url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. staff_num: "",
  11. url: ""
  12. };
  13. },
  14. onLoad() {
  15. this.staff_num = uni.getStorageSync('user').staff_num
  16. this.set_user()
  17. },
  18. methods: {
  19. set_user() {
  20. this.url = "http://pan.nxjiewei.com/index.php/login?user=" + this.staff_num
  21. }
  22. }
  23. }
  24. </script>
  25. <style lang="scss">
  26. </style>