index.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <view>
  3. <navigation-bar title="首页" background-color="#fff" front-color="#000000" />
  4. <view class="wrap">
  5. <u-swiper :list="list" keyName="image" indicator indicatorMode="line" height="200"></u-swiper>
  6. </view>
  7. <view class="grid">
  8. <u-grid @click="click">
  9. <u-grid-item v-for="(baseListItem,baseListIndex) in menuList" :key="baseListIndex">
  10. <u-icon :customStyle="{paddingTop:20+'rpx'}" :name="baseListItem.name" :size="50"></u-icon>
  11. <text class="grid-text">{{baseListItem.title}}</text>
  12. </u-grid-item>
  13. </u-grid>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. // list: [
  22. // require('@/static/images/swiper/20230728155923.jpg'),
  23. // require('@/static/images/swiper/20230728160039.jpg'),
  24. // require('@/static/images/swiper/20230728160045.jpg'),
  25. // ],
  26. list: [],
  27. menuList: []
  28. }
  29. },
  30. created() {
  31. this.getBanner()
  32. this.getMenu()
  33. },
  34. methods: {
  35. click(name) {
  36. this.$refs.uToast.success(`点击了第${name}个`)
  37. },
  38. getBanner() {
  39. this.$api.getBanner().then(res => {
  40. this.list = res.data
  41. // console.log(this.list)
  42. })
  43. },
  44. getMenu() {
  45. this.$api.getMenu().then(res => {
  46. // this.menuList = res.data
  47. console.log(res)
  48. })
  49. }
  50. }
  51. }
  52. </script>
  53. <style>
  54. page {
  55. padding: 10px;
  56. }
  57. .grid {
  58. margin: 10px 0;
  59. }
  60. .grid-text {
  61. font-size: 18px;
  62. color: #909399;
  63. padding: 10rpx 0 20rpx 0rpx;
  64. /* #ifndef APP-PLUS */
  65. box-sizing: border-box;
  66. /* #endif */
  67. }
  68. </style>