确认订单

This commit is contained in:
2024-03-11 23:02:41 +08:00
parent 00013cb46c
commit 0883e88df0
11 changed files with 371 additions and 11 deletions

View File

@@ -53,7 +53,7 @@
<view class='bottom-banner-view'>
<swiper :indicator-dots='true' :autoplay='true' :interval='3000' :duration='1000'>
<swiper-item v-for='(item, index) in bannerList' :key='index'>
<swiper-item v-for='(item, index) in recommendBannerList' :key='index'>
<image :src='item' mode='aspectFill' />
</swiper-item>
</swiper>
@@ -63,17 +63,16 @@
</template>
<script setup lang='ts'>
import { getCompanyInfo } from '@/api/company';
import { useUserStore } from '@/store';
import { assetsUrl } from '@/utils/assets';
import { goPath } from '@/utils';
const store = useUserStore();
const bannerList = ref<string[]>(['https://desk-fd.zol-img.com.cn/t_s960x600c5/g5/M00/0D/0D/ChMkJ1eV_EiIckZnAAxoKo4d-a0AAT0gwJxjq4ADGhC893.jpg',
'https://img95.699pic.com/photo/50059/8720.jpg_wh860.jpg',
'https://sc.68design.net/photofiles/201312/oSOHcEln8X.jpg',
'https://img.zcool.cn/community/01c8f15aeac135a801207fa16836ae.jpg@1280w_1l_2o_100sh.jpg']);
const bannerList = ref<string[]>([]);
const currentBannerIndex = ref(0);
const recommendBannerList = ref<string[]>([]);
const submenuList = [
{
@@ -93,6 +92,13 @@ const submenuList = [
}
];
onLoad(async (e) => {
const data = await getCompanyInfo('1471673498334113794');
console.log(data);
bannerList.value = data.bannerinx?.map((res: { src: string }) => res.src);
recommendBannerList.value = data.bannerhot?.map((res: { src: string }) => res.src);
});
const swiperChange = (e: any) => {
currentBannerIndex.value = e.detail.current;
};