|
@@ -48,6 +48,7 @@
|
|
|
</view>
|
|
|
<u-loadmore :status="status" icon-type="flower" :load-text="loadText" margin-top="20" v-if="page_no > 1" />
|
|
|
<view v-if="newDataList.length === 4" class="bind-btn" @click="goLogin">绑定联系方式后查看更多内容>></view>
|
|
|
+ <suspenButton :show.sync="wholeShowListData.IsShow" v-if="wholeShowListData.IsShow" />
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -56,6 +57,7 @@ import { Home, Mine } from "@/config/api";
|
|
|
import ChartItem from "@/components/ItemComponent/chartItem.vue";
|
|
|
import ReportItem from "@/components/ItemComponent/reportItem.vue";
|
|
|
import RoadshowItem from "@/components/ItemComponent/roadshowItem.vue";
|
|
|
+import suspenButton from "@/components/suspen_button.vue";
|
|
|
import ActivityItem from "@/components/ItemComponent/activityItem.vue";
|
|
|
export default {
|
|
|
data() {
|
|
@@ -78,6 +80,7 @@ export default {
|
|
|
ReportItem,
|
|
|
RoadshowItem,
|
|
|
ActivityItem,
|
|
|
+ suspenButton,
|
|
|
},
|
|
|
methods: {
|
|
|
//获取胶囊位置
|
|
@@ -120,7 +123,7 @@ export default {
|
|
|
const res = await Home.microRoadshowCollect({
|
|
|
Id: item.Id,
|
|
|
SourceType: item.Type,
|
|
|
- PageRouter: this.$store.state.pageRouterReport
|
|
|
+ PageRouter: this.$store.state.pageRouterReport,
|
|
|
});
|
|
|
if (res.Ret === 200) {
|
|
|
let index = this.newDataList.findIndex((key) => key.Roadshow && key.Roadshow.Id == item.Id);
|