123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <template>
- <div class="manuscriptIssued">
- <el-loading></el-loading>
- <el-breadcrumb separator-class="el-icon-arrow-right">
- <el-breadcrumb-item>全媒体平台</el-breadcrumb-item>
- <el-breadcrumb-item>融合号稿件数量排行榜</el-breadcrumb-item>
- </el-breadcrumb>
- <div class="groupType">
- <el-row class="mb-4">
- <el-button
- v-for="(cur, ind) in tabs.btns"
- :key="ind"
- :class="btnFocus.includes(cur) ? 'btnFocus' : ''"
- @click="handleClick(cur)"
- >{{ cur }}</el-button
- >
- <el-checkbox
- v-if="tabs.btns.length"
- v-model="checkedAll"
- label="全选"
- size="large"
- border
- @change="handleCheck"
- class="checkAll"
- />
- </el-row>
- </div>
- <div class="card-rank">
- <div>
- <el-table :data="tableData" header-row-class-name="card-tabs-header">
- <el-table-column align="center" prop="AccountName" label="融合号" />
- <el-table-column align="center" prop="cnt" label="稿件数量" />
- </el-table>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { getRongheArticleCnt, getAccountType } from "@/api/index";
- const ElLoading = require("element-plus/lib/el-loading/index");
- import "element-plus/lib/theme-chalk/el-loading.css";
- export default {
- name: "ManuscriptQuantity",
- data() {
- return {
- btnFocus: [],
- tabs: {
- name: "融合号稿件数量排行榜",
- btns: [],
- },
- tableData: [],
- checkedAll: false,
- };
- },
- mounted() {
- this.setFansCntTypeData();
- },
- methods: {
- handleClick(e) {
- if (this.btnFocus.includes(e) && this.btnFocus.length !== 1) {
- this.btnFocus = this.btnFocus.filter((v) => {
- return v !== e;
- });
- this.checkedAll = false;
- } else if (!this.btnFocus.includes(e)) {
- this.btnFocus.push(e);
- }
- this.setTableData();
- },
- handleCheck() {
- this.btnFocus = this.checkedAll ? this.tabs.btns : [];
- this.setTableData();
- },
- setTableData() {
- const that = this;
- this.tableData = [];
- this.curPage = 0;
- this.load = ElLoading.default.service();
- getRongheArticleCnt({ types: this.btnFocus })
- .then((res) => {
- that.total = res.length;
- that.tableData = res;
- that.load.close();
- })
- .catch((err) => {
- that.tableData = [];
- console.log("catch", err);
- });
- },
- setFansCntTypeData() {
- const that = this;
- getAccountType()
- .then((res) => {
- const [cur] = res;
- that.btnFocus = [cur];
- that.tabs.btns = res;
- that.setTableData();
- })
- .catch((err) => {
- that.tabs.btns = [];
- console.log("catch", err);
- });
- },
- },
- };
- </script>
- <style>
- .manuscriptIssued {
- margin: 10px;
- }
- .card-tabs,
- .el-tabs__header {
- padding: 0 100px;
- }
- .groupType {
- padding: 15px 10px;
- box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.12);
- }
- .card-rank {
- padding: 10px 15px;
- box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- }
- .card-rank div {
- width: 100%;
- }
- h4 {
- text-align: left;
- color: #e18116;
- margin-bottom: 50px;
- font-weight: bold;
- }
- .card-tabs-header th {
- background: #f5f7fa !important;
- }
- .layputPage {
- text-align: right;
- margin: 15px 0px 10px;
- }
- .btnFocus {
- color: #fff !important;
- border-color: #409eff !important;
- background-color: #409eff !important;
- }
- .checkAll{
- margin-left: 10px;
- }
- </style>
|