123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- <template>
- <view class="container container-secret">
- <view class="global_one_tabs">
- <view :class="['item', isType == item.value && 'tabs-active']" v-for="item in tabsList" :key="item.value" @click="tabsHandler(item)">
- {{ item.name }}
- </view>
- </view>
- <view class="collect-ul" v-if="haveData">
- <view class="global_card_content collect-ltem" v-for="(item, index) in collectList" :key="index" @click="goDetail(item)">
- <view>
- <text class="title global_title text_twoLine">
- {{ item.Title }}
- <text class="reg-text" v-if="item.IsRed"></text>
- </text>
- <view class="content">
- {{ item.Abstract }}
- </view>
- <view class="desc">{{ item.PublishDate }} </view>
- </view>
- <view class="right-icon">
- <u-icon name="arrow-right" color="#BDBDBD" size="34"></u-icon>
- </view>
- </view>
- <u-loadmore :status="status" icon-type="flower" :load-text="loadText" margin-top="20" v-if="totalPage > 1" />
- </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" />
- <Loading />
- </view>
- </template>
- <script>
- 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 {
- isType: 2,
- refresh: false, //正在下拉
- page_no: 1,
- pageSize: 10,
- collectList: [],
- haveData: true,
- totalPage: "",
- status: "loadmore",
- loadText: {
- loadmore: "上拉加载更多",
- loading: "加载中",
- nomore: "已经到底了",
- },
- tabsList: [
- { name: "本周研究汇总", value: 2 },
- { name: "上周纪要汇总", value: 3 },
- // { name: "报告精选", value: 1 },
- ],
- };
- },
- components: {
- freeCharge,
- },
- computed: {},
- methods: {
- //点击头部的tabs
- tabsHandler(item) {
- this.isType = item.value;
- this.page_no = 1;
- this.getList();
- },
- //获取数据
- async getList() {
- const res = await Reports.reportListByType({
- PageSize: this.pageSize,
- CurrentIndex: this.page_no,
- ReportType: this.isType,
- });
- 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.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);
- }
- }
- },
- //跳转详情
- goDetail(item) {
- /* 无需授权且已绑定 检验是或否有权限 */
- item.IsRed = false;
- uni.navigateTo({ url: "/reportPages/reportSecretDetail/reportSecretDetail?type=" + this.isType + "&id=" + item.ArticleId });
- },
- },
- onLoad(option) {
- this.isType = option.type || 2;
- this.getList();
- },
- /* 触底 */
- onReachBottom: Throttle(function () {
- if (this.status === "nomore") return;
- this.status = "loading";
- this.page_no++;
- this.getList();
- }),
- /* 下拉刷新 */
- onPullDownRefresh: Throttle(function () {
- this.page_no = 1;
- this.refresh = true;
- this.getList();
- }),
- /* 用户点击分享 */
- onShareAppMessage: function (res) {
- return {
- title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : "周度汇总",
- path: "/reportPages/secretDetails/secretDetails?type=" + this.isType,
- success: (res) => {},
- fail: (err) => {},
- };
- },
- };
- </script>
- <style lang="scss" scoped>
- .container-secret {
- background: $uni-bg-color;
- padding-bottom: 30rpx;
- .global_one_tabs {
- .item {
- flex: 1;
- }
- }
- .collect-ul {
- padding-top: 4rpx;
- .collect-ltem {
- padding: 20rpx 20rpx;
- border-top: 4rpx solid $uni-color-new;
- background: #fff;
- margin-bottom: 4rpx;
- width: 682rpx;
- margin: 20rpx auto 0;
- display: flex;
- justify-content: space-between;
- .right-icon {
- display: flex;
- align-items: center;
- }
- .title {
- position: relative;
- padding-left: 28rpx;
- margin-bottom: 10rpx;
- .reg-text {
- position: absolute;
- top: 15rpx;
- left: 0rpx;
- width: 14rpx;
- height: 14rpx;
- background-color: #ff0000;
- border-radius: 50%;
- z-index: 9;
- }
- }
- .content {
- width: 610rpx;
- margin-right: 10rpx;
- background-color: #f8f8fa;
- padding: 10rpx 20rpx 10rpx 25rpx;
- color: #999;
- border-radius: 4rpx;
- }
- .desc {
- display: flex;
- align-items: center;
- margin-top: 17rpx;
- padding-left: 24rpx;
- color: #999;
- }
- }
- }
- }
- </style>
|