|
@@ -3,7 +3,7 @@
|
|
|
* @Author: 空白格
|
|
|
* @Date: 2023-05-24 09:23:58
|
|
|
* @LastEditors: 空白格
|
|
|
- * @LastEditTime: 2023-05-24 10:14:25
|
|
|
+ * @LastEditTime: 2023-05-25 11:25:19
|
|
|
* @FilePath: \parking_h5_all\components\ad-banner\ad-banner.vue
|
|
|
* @Copyright: Copyright (c) 2016~2023 by 空白格, All Rights Reserved.
|
|
|
-->
|
|
@@ -22,20 +22,20 @@ export default {
|
|
|
list: []
|
|
|
};
|
|
|
},
|
|
|
- created() {
|
|
|
- this.getBannerList();
|
|
|
- },
|
|
|
+ created() {
|
|
|
+ this.getBannerList();
|
|
|
+ },
|
|
|
methods: {
|
|
|
/**
|
|
|
* @description: 获取轮播列表
|
|
|
* @return {*}
|
|
|
*/
|
|
|
async getBannerList() {
|
|
|
- const { code, rows } = await this.$u.api.adBannerModuleApi.getAdBannerListApi({ pageNum: 1, pageSize: 10 });
|
|
|
+ const { code, rows } = await this.$u.api.adBannerModuleApi.getAdBannerListApi({ pageNum: 1, pageSize: 10, onlineStatus: 1 });
|
|
|
if (code === 200) {
|
|
|
- this.list = rows.map(item => {
|
|
|
- return { id: item.id, image: item.bannerUrl, type: item.contentType, link: item.jumpUrl, ...item }
|
|
|
- });
|
|
|
+ this.list = rows.map((item) => {
|
|
|
+ return { id: String(item.id), image: item.bannerUrl, type: item.contentType, link: item.jumpUrl, ...item };
|
|
|
+ });
|
|
|
}
|
|
|
},
|
|
|
/**
|