1234567891011121314151617181920212223242526272829 |
- <template>
- <view class="">
- 首页
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- this.get_setting()
- },
- methods: {
- get_setting() {
- uni.$u.http.get('/page/news').then(res => {
- console.log(res, 'leix')
- console.log(this.$store, 'leix')
- })
- },
- }
- }
- </script>
- <style>
- </style>
|