ci(other): ci update

This commit is contained in:
2025-10-31 19:13:49 +08:00
parent d831ee932b
commit 63b61bbc98
15 changed files with 197 additions and 26 deletions

View File

@@ -2,6 +2,7 @@
<view class="list-box">
<view class="list">
<swiper
v-if="bannerList.length !== 0"
class="item"
:style="{
height: '250px',
@@ -167,7 +168,7 @@ const bannerList = ref<any[]>([]);
const get_banner_list = async () => {
const { data }: any = await getBanner();
bannerList.value = data.data;
bannerList.value = data.data || [];
};
const toPage = async (url: string) => {