ad-banner.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!--
  2. * @Description: 广告横幅
  3. * @Author: 空白格
  4. * @Date: 2023-05-24 09:23:58
  5. * @LastEditors: 空白格
  6. * @LastEditTime: 2023-05-25 11:25:19
  7. * @FilePath: \parking_h5_all\components\ad-banner\ad-banner.vue
  8. * @Copyright: Copyright (c) 2016~2023 by 空白格, All Rights Reserved.
  9. -->
  10. <template>
  11. <view class="ad-banner">
  12. <u-swiper v-if="list.length" :list="list" @click="adBannerClick" height="300" />
  13. <u-empty v-else text="暂无广告数据" mode="data" />
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. name: 'AdBanner',
  19. data() {
  20. return {
  21. list: []
  22. };
  23. },
  24. created() {
  25. this.getBannerList();
  26. },
  27. methods: {
  28. /**
  29. * @description: 获取轮播列表
  30. * @return {*}
  31. */
  32. async getBannerList() {
  33. const { code, rows } = await this.$u.api.adBannerModuleApi.getAdBannerListApi({ pageNum: 1, pageSize: 10, onlineStatus: 1 });
  34. if (code === 200) {
  35. this.list = rows.map((item) => {
  36. return { id: String(item.id), image: item.bannerUrl, type: item.contentType, link: item.jumpUrl, ...item };
  37. });
  38. }
  39. },
  40. /**
  41. * @description: 轮播图点击
  42. * @param {*} e
  43. * @return {*}
  44. */
  45. adBannerClick(e) {
  46. const listItem = this.list[e];
  47. switch (Number(listItem.type)) {
  48. case 0:
  49. this.$u.route({
  50. url: '/pages/adBannerDetails/adBannerDetails',
  51. params: {
  52. id: listItem.id
  53. }
  54. });
  55. break;
  56. case 1:
  57. location.href = listItem.link;
  58. break;
  59. }
  60. }
  61. }
  62. };
  63. </script>
  64. <style lang="scss" scoped>
  65. .ad-banner {
  66. padding: 0 30rpx;
  67. }
  68. </style>