index.vue 384 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="">
  3. 首页
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. onLoad() {
  13. this.get_setting()
  14. },
  15. methods: {
  16. get_setting() {
  17. uni.$u.http.get('/page/news').then(res => {
  18. console.log(res, 'leix')
  19. console.log(this.$store, 'leix')
  20. })
  21. },
  22. }
  23. }
  24. </script>
  25. <style>
  26. </style>