<template>
  <view class="container container-secret">
    <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" v-if="item.SubjectName">
            {{ "更新:" + item.SubjectName }}
          </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 {
      refresh: false, //正在下拉
      page_no: 1,
      pageSize: 10,
      collectList: [],
      haveData: true,
      totalPage: "",
      status: "loadmore",
      loadText: {
        loadmore: "上拉加载更多",
        loading: "加载中",
        nomore: "已经到底了",
      },
    };
  },
  components: {
    freeCharge,
  },
  computed: {},
  methods: {
    //点击头部的tabs
    tabsHandler(item) {
      this.isType = item.value;
      this.page_no = 1;
      this.getList();
    },
    //获取数据
    async getList() {
      const res = await Reports.hetReport_selectionList({
        PageSize: this.pageSize,
        CurrentIndex: this.page_no,
      });
      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/keyCompany/keyCompany?id=" + item.ArticleId });
    },
  },
  onLoad() {
    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();
  }),
};
</script>

<style lang="scss" scoped>
.container-secret {
  background: $uni-bg-color;
  padding-bottom: 30rpx;
  .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>