|
@@ -57,6 +57,7 @@ async function bannerSwiperHandler(item) {
|
|
|
}
|
|
|
|
|
|
onMounted(() => {
|
|
|
+ localStorage.setItem("hzyb-token", route.query.token);
|
|
|
getBannerList();
|
|
|
getSurveyHistoryList();
|
|
|
document.title = "调研列表";
|
|
@@ -69,7 +70,7 @@ onMounted(() => {
|
|
|
<div class="activity-content" v-for="item in bannerDataList" :key="item.id" @click="bannerSwiperHandler(item)">
|
|
|
<img :src="item.image_url_mobile" alt="" />
|
|
|
</div>
|
|
|
- <div class="state-content" style="margin-top:20px">已结束</div>
|
|
|
+ <div class="state-content" style="margin-top: 20px">已结束</div>
|
|
|
<List v-model:loading="loading" :finished="finished" finished-text="没有更多了" @load="surveyHistoryLoad">
|
|
|
<div class="activity-content" v-for="item in bannerHistoryDataList" :key="item.id" @click="bannerSwiperHandler(item)">
|
|
|
<img :src="item.image_url_mobile" alt="" />
|