123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- <template>
- <view class="container industry-content">
- <view v-if="haveData">
- <view class="content-top">
- <view class="top-bg">产业赛道布局于{{ layoutTime }}</view>
- <view class="top-box">
- <view class="top-tab-cont">
- <view class="tab-cont">
- <scroll-view scroll-x="true" scroll-with-animation class="scroll-tab" :scroll-into-view="'_' + tabIndex">
- <block v-for="(item, index) in tabBars" :key="item.CategoryId">
- <view :id="'_' + index" class="scroll-tab-item" :class="{ active: tabAct_id == item.CategoryId }" @click.stop="toggleTab(item, index)">
- {{ item.MatchTypeName }}
- <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/border_act.png" mode="" class="border_act" v-if="tabAct_id == item.CategoryId"></image>
- <text class="reg-hint" v-if="item.IsRed"></text>
- </view>
- </block>
- </scroll-view>
- </view>
- <view class="lucency" v-if="tabBars.length > 6"></view>
- </view>
- </view>
- </view>
- <view class="collect-ul">
- <view class="collect-ltem" v-for="(item, index) in collectList" :key="index" @click="goDetail(item, index)">
- <view class="item-left">
- <text class="title text_twoLine"
- >{{ item.Title }}
- <text class="reg-text" v-if="item.IsRed"></text>
- </text>
- <text class="text_twoLine desc">{{ item.PublishDate }}</text>
- </view>
- <u-icon name="arrow-right" color="#BDBDBD" size="34"></u-icon>
- </view>
- <u-loadmore :status="status" icon-type="flower" :load-text="loadText" margin-top="20" v-if="totalPage > 1" />
- </view>
- </view>
- <view class="nodata" v-else>
- <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/act_search.png" mode="" class="nodata_ico"></image>
- <text>暂时没有报告的内容</text>
- </view>
- <freeCharge class="free-charge" :isShowFreeBtn="isShowFree" />
- </view>
- </template>
- <script>
- import { Mine } from "@/config/api.js"; //模拟
- import { Reports } from "@/config/api.js"; //模拟
- import { Throttle } from "@/config/util.js";
- import freeCharge from "@/components/freeCharge";
- let app = getApp({ allowDefault: true });
- export default {
- data() {
- return {
- tabAct_id: "",
- tabBars: [],
- industrialManagementId: "",
- layoutTime: "",
- refresh: false, //正在下拉
- page_no: 1,
- pageSize: 10,
- categoryId: "",
- collectList: [],
- isShow: false,
- haveData: true,
- status: "loadmore",
- loadText: {
- loadmore: "上拉加载更多",
- loading: "加载中",
- nomore: "已经到底了",
- },
- totalPage: "",
- toggleTabIndex: 0,
- titleReport: "",
- pcTabActive: "",
- };
- },
- onLoad(option) {
- this.industrialManagementId = option.id;
- this.tabAct_id = option.tab;
- this.toArticleCategoryList();
- },
- onShow() {
- this.$store.dispatch("statistics", { PageType: "IndustryList", IndustrialManagementId: this.industrialManagementId });
- },
- components: {
- freeCharge,
- },
- watch: {
- //监听tabs的变化
- tabAct_id: {
- handler() {
- if (this.tabAct_id) {
- (this.page_no = 1), (this.collectList = []);
- this.getCollectList();
- }
- },
- immediate: true,
- },
- },
- methods: {
- //tabs切换事件
- toggleTab(item, index) {
- this.toggleTabIndex = index;
- if (this.tabAct_id !== item.CategoryId) {
- this.tabAct_id = item.CategoryId;
- this.pageNum = 1;
- uni.pageScrollTo({
- scrollTop: 0,
- duration: 0,
- });
- }
- },
- toArticleCategoryList() {
- Reports.toArticleCategoryList({
- IndustrialManagementId: this.industrialManagementId,
- }).then((res) => {
- if (res.Ret == 200) {
- uni.setNavigationBarTitle({
- title: res.Data.IndustryName,
- });
- this.titleReport = res.Data.IndustryName;
- this.layoutTime = res.Data.LayoutTime;
- if (res.Data.List) {
- this.tabAct_id = res.Data.List[0].CategoryId;
- this.tabBars = res.Data.List;
- }
- }
- });
- },
- /* 获取列表 */
- getCollectList() {
- Reports.getArticleList({
- PageSize: this.pageSize,
- CurrentIndex: this.page_no,
- CategoryId: this.tabAct_id,
- IndustrialManagementId: this.industrialManagementId,
- }).then((res) => {
- if (res.Ret === 200) {
- this.status = this.page_no < res.Data.Paging.Pages ? "loadmore" : "nomore";
- this.totalPage = res.Data.Paging.Pages; //总页数
- if (this.page_no === 1) {
- this.pcTabActive = res.Data.ChartPermissionId;
- this.collectList = res.Data.List || [];
- this.haveData = this.collectList.length ? true : false;
- if (this.refresh) {
- uni.stopPullDownRefresh();
- this.refresh = false;
- }
- } else {
- this.collectList = this.collectList.concat(res.Data.List);
- }
- }
- });
- },
- async goDetail(item, index) {
- /* 无需授权且已绑定 检验是或否有权限 */
- if (index == 0) {
- this.tabBars[this.toggleTabIndex].IsRed = false;
- }
- this.collectList[index].IsRed = false;
- await this.$store.dispatch("checkHandle");
- if (!this.$store.state.isAuth && !this.$store.state.isBind) {
- // 已授权已绑定
- if (item.IsHaveVideo) {
- //跳转路演精华
- uni.navigateTo({
- url: "/reportPages/roadEssence/roadEssence?id=" + item.ArticleId,
- });
- } else {
- uni.navigateTo({
- url: "/pageMy/reportDetail/reportDetail?id=" + item.ArticleId,
- });
- }
- }
- },
- },
- /* 触底 */
- onReachBottom: Throttle(function () {
- if (this.status === "nomore") return;
- this.status = "loading";
- this.page_no++;
- if (this.tabAct_id) {
- this.getCollectList();
- }
- }),
- /* 下拉刷新 */
- onPullDownRefresh: Throttle(function () {
- if (this.tabAct_id) {
- this.page_no = 1;
- this.refresh = true;
- this.getCollectList();
- }
- }),
- /**
- * 用户点击分享
- */
- onShareAppMessage: function (res) {
- return {
- title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : this.titleReport,
- path: "/reportPages/IndustryReport/IndustryReport?id=" + this.industrialManagementId + "&tab=" + this.tabAct_id + "&tabs=" + this.pcTabActive,
- success: (res) => {},
- fail: (err) => {},
- };
- },
- };
- </script>
- <style lang="scss">
- .industry-content {
- background-color: #f7f7f7;
- // height: 100vh;
- .top-bg {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- z-index: 999;
- background-color: #d1ebff;
- height: 73rpx;
- color: #2c83ff;
- font-size: 24rpx;
- line-height: 73rpx;
- text-align: center;
- }
- .top-box {
- position: fixed;
- width: 100%;
- top: 73rpx;
- left: 0;
- z-index: 999;
- }
- .top-tab-cont {
- .lucency {
- position: absolute;
- top: 0;
- right: 0;
- width: 32px;
- height: 30px;
- opacity: 0.9;
- background-color: #fff;
- }
- .tab-cont {
- padding: retu;
- padding: 30rpx 26rpx 0;
- background-color: #fff;
- font-size: 32rpx;
- box-shadow: 0 3rpx 6rpx rgba(187, 216, 255, 0.2);
- .scroll-tab {
- width: 100%;
- white-space: nowrap;
- }
- .scroll-tab-item {
- // flex-grow: 1;
- text-align: center;
- display: inline-block;
- padding: 0rpx 8rpx 30rpx 8rpx;
- margin-right: 60rpx;
- border-bottom: 8rpx solid transparent;
- position: relative;
- &:last-child {
- margin-right: 0;
- }
- &.active {
- border-bottom: none;
- color: #2c83ff;
- font-weight: 700;
- }
- .border_act {
- width: 100%;
- height: 8rpx;
- position: absolute;
- bottom: 0;
- left: 0;
- }
- .reg-hint {
- position: absolute;
- top: 0rpx;
- right: -10rpx;
- width: 14rpx;
- height: 14rpx;
- background-color: #ff0000;
- border-radius: 50%;
- }
- }
- }
- }
- .collect-ul {
- // margin-top: 30rpx;s
- padding-top: 175rpx;
- // padding-top: 4rpx;
- .collect-ltem {
- display: flex;
- padding: 30rpx 34rpx;
- background: #fff;
- margin-bottom: 4rpx;
- align-items: center;
- justify-content: space-between;
- .title {
- position: relative;
- max-width: 625rpx;
- color: #4a4a4a;
- font-size: 34rpx;
- padding-left: 28rpx;
- .reg-text {
- position: absolute;
- top: 15rpx;
- left: 0rpx;
- width: 14rpx;
- height: 14rpx;
- background-color: #ff0000;
- border-radius: 50%;
- z-index: 9;
- }
- }
- .desc {
- margin-top: 17rpx;
- padding-left: 28rpx;
- width: 625rpx;
- color: #999;
- }
- }
- }
- }
- </style>
|