|
@@ -73,7 +73,6 @@ const rightList = ref([])
|
|
|
const leftList = ref([])
|
|
|
const list3 = ref(['']) // Initialize with at least one empty item
|
|
|
const ValueZone = ref(['']) // Initialize with at least one empty item
|
|
|
-const hotList = ref([])
|
|
|
const ValueZoneSwiper = ref([''])
|
|
|
const userType = uni.getStorageSync('userType') || 1; //读取本地存储
|
|
|
const text1 = ref('');
|
|
@@ -216,21 +215,17 @@ onReachBottom(() => {
|
|
|
|
|
|
const getBanners = async () => {
|
|
|
try {
|
|
|
- const res = await slideshow(21)
|
|
|
+ const res = await slideshow(10)
|
|
|
if (res.code === 200 && res.data.picture) {
|
|
|
list3.value = res.data.picture.split(',')
|
|
|
}
|
|
|
|
|
|
- const value_res = await slideshow(111)
|
|
|
+ const value_res = await slideshow(20)
|
|
|
if (value_res.code === 200 && value_res.data.picture) {
|
|
|
ValueZone.value = value_res.data.picture.split(',')
|
|
|
}
|
|
|
-
|
|
|
- const hot_res = await slideshow(11)
|
|
|
- if (hot_res.code === 200 && hot_res.data.picture) {
|
|
|
- hotList.value = hot_res.data.picture.split(',')
|
|
|
- }
|
|
|
- const hot_node = await slideshow(22)
|
|
|
+
|
|
|
+ const hot_node = await slideshow(30)
|
|
|
if (hot_node.code === 200 && hot_node.data.picture) {
|
|
|
ValueZoneSwiper.value = hot_node.data.picture.split(',')
|
|
|
}
|