index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560
  1. <template>
  2. <page-meta :page-style="isMorningShow ? 'overflow: hidden;' : ''">
  3. <view class="container New-container">
  4. <view :class="['content-search', bannerClass && 'banne-bg', bannerPosition && 'banner-Position']">
  5. <view class="top-content-box">
  6. <search-bar @goSearch="goSearch" :searchTitle="searchPlaceholderList.SummarySearch" :width="44">
  7. <template slot="content-left">
  8. <view class="box-img" @click="goMyInfo">
  9. <view class="content-img">
  10. <image v-if="info.Headimgurl" :src="info.Headimgurl" alt=""></image>
  11. <image v-else src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/logo.png" class="avatar"></image>
  12. </view>
  13. <view class="content-my"> 我的 </view>
  14. </view>
  15. </template>
  16. </search-bar>
  17. </view>
  18. </view>
  19. <view class="banne-content" v-if="bannerDataList.length">
  20. <swiper autoplay :interval="4000" circular indicator-dots>
  21. <view v-for="item in bannerDataList" :key="item.BannerId" @click="bannerSwiperHandler(item)">
  22. <swiper-item>
  23. <image :src="item.IndexImg"></image>
  24. <view class="banner-title">
  25. <text class="text_twoLine" :style="{ 'font-size': item.Subtitle.length > 24 ? '45rpx' : '50rpx' }">
  26. {{ item.Title }}
  27. </text>
  28. <text class="time text_twoLine"> {{ item.Subtitle }}</text>
  29. </view>
  30. </swiper-item>
  31. </view>
  32. </swiper>
  33. </view>
  34. <view class="lable-select-content" :style="{ 'background-color': isScrollNumber >= 175 ? '#fff' : '#f5f6fa', 'box-shadow': isScrollNumber >= 175 ? '0px 8rpx 8rpx -8rpx rgba(0, 0, 0, 0.16)' : '' }">
  35. <view class="lable-row" v-for="(item, index) in lableIsRows" :key="index">
  36. <view :class="['lable-item', lable.isAct && 'item-active']" v-for="lable in item" :key="lable.key" @click="lableKeysHandler(lable)">
  37. {{ lable.name }}
  38. </view>
  39. </view>
  40. </view>
  41. <view class="content-ul">
  42. <view class="item-ul">
  43. <block v-for="(item, index) in newDataList" :key="index">
  44. <view v-if="index % 2 == 0 && item.IsShowData">
  45. <block v-if="item.Source === 'article'"> <ReportItem :list="item.Article" /></block>
  46. <block v-if="item.Source === 'newchart'">
  47. <ChartItem :list="item.Newchart" :isMyChartCollection="isMyChartCollection" @myChartIsTop="myChartIsTop" @myChartCollect="myChartCollect" />
  48. </block>
  49. <block v-if="item.Source === 'roadshow' || item.Source === 'activityvideo' || item.Source === 'activityvoice'">
  50. <RoadshowItem :list="item.Roadshow" @isCollectionHandeler="isCollectionHandeler" />
  51. </block>
  52. <block v-if="item.Source === 'activity' || item.Source === 'activityspecial'">
  53. <ActivityItem :list="item.Activity" />
  54. </block>
  55. <block v-if="['researchsummary', 'minutessummary', 'meetingreviewchapt', 'productinterior'].includes(item.Source)">
  56. <item-content :list="dataListItem(item)" @showMorningDialog="showMorningDialog" />
  57. </block>
  58. </view>
  59. </block>
  60. </view>
  61. <view class="item-ul">
  62. <block v-for="(item, index) in newDataList" :key="index">
  63. <view v-if="index % 2 !== 0 && item.IsShowData">
  64. <block v-if="item.Source === 'article'"> <ReportItem :list="item.Article" /></block>
  65. <block v-if="item.Source === 'newchart'">
  66. <ChartItem :list="item.Newchart" :isMyChartCollection="isMyChartCollection" @myChartIsTop="myChartIsTop" @myChartCollect="myChartCollect" />
  67. </block>
  68. <block v-if="item.Source === 'roadshow' || item.Source === 'activityvideo' || item.Source === 'activityvoice'">
  69. <RoadshowItem :list="item.Roadshow" @isCollectionHandeler="isCollectionHandeler" />
  70. </block>
  71. <block v-if="item.Source === 'activity' || item.Source === 'activityspecial'">
  72. <ActivityItem :list="item.Activity" />
  73. </block>
  74. <block v-if="['researchsummary', 'minutessummary', 'meetingreviewchapt', 'productinterior'].includes(item.Source)">
  75. <item-content :list="dataListItem(item)" @showMorningDialog="showMorningDialog" />
  76. </block>
  77. </view>
  78. </block>
  79. </view>
  80. </view>
  81. <u-loadmore :status="status" icon-type="flower" :load-text="loadText" margin-top="20" v-if="page_no > 1" />
  82. <view v-if="newDataList.length === 4" class="bind-btn">
  83. <view @click="goLogin"> 为了给您提供更好的使用体验,<br />请 <text class="login-text">登录</text>后再查看此页面内容</view>
  84. </view>
  85. <morning-dlg v-if="isMorningShow" :isMorningShow.sync="isMorningShow" :morningItem.sync="morningItem" />
  86. </view>
  87. <suspenButton :show.sync="wholeShowListData.IsShow" v-if="wholeShowListData.IsShow" ref="suspenButton">
  88. <template slot="center">
  89. <image mode="widthFix" style="height: 120rpx; width: 120rpx" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/most_confidential.png"> </image>
  90. </template>
  91. <template slot="top">
  92. <image @click.stop="goSecretDetail(1)" mode="widthFix" style="height: 120rpx; width: 120rpx" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/company_icon.png"> </image>
  93. </template>
  94. <template slot="left">
  95. <image @click.stop="goSecretDetail(3)" mode="widthFix" style="height: 120rpx; width: 120rpx" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/week_summary.png"> </image>
  96. </template>
  97. </suspenButton>
  98. </page-meta>
  99. </template>
  100. <script>
  101. import { Home, Mine } from "@/config/api";
  102. import ChartItem from "@/components/ItemComponent/chartItem.vue";
  103. import ReportItem from "@/components/ItemComponent/reportItem.vue";
  104. import RoadshowItem from "@/components/ItemComponent/roadshowItem.vue";
  105. import ActivityItem from "@/components/ItemComponent/activityItem.vue";
  106. import SearchBar from "@/components/search-bar/searchBar.vue";
  107. import MorningDlg from "./components/morningDlg.vue";
  108. import ItemContent from "./components/ItemContent.vue";
  109. import videoModule from "@/components/videoModule/index";
  110. import suspenButton from "@/components/suspen_button.vue";
  111. export default {
  112. data() {
  113. return {
  114. newDataList: [],
  115. page_no: 1,
  116. pageSize: 10,
  117. status: "loadmore",
  118. refresh: false, //正在下拉
  119. loadText: {
  120. loadmore: "上拉加载更多",
  121. loading: "加载中",
  122. nomore: "已经到底了",
  123. },
  124. info: {},
  125. isMorningShow: false, // 晨会的弹框
  126. morningItem: {}, // 晨会的弹框
  127. bannerDataList: [], // banner数据
  128. showVideoPopUp: false, //
  129. videoPopListUp: {},
  130. isScrollNumber: 0,
  131. dataListLable: [
  132. {
  133. name: "上拉加载更多",
  134. key: 2,
  135. isAct: false,
  136. },
  137. {
  138. name: "加载中",
  139. key: 3,
  140. isAct: false,
  141. },
  142. {
  143. name: "已经到底了",
  144. key: 1,
  145. isAct: false,
  146. },
  147. {
  148. name: "正在下拉",
  149. key: 5,
  150. isAct: false,
  151. },
  152. {
  153. name: "正在下拉1",
  154. key: 51,
  155. isAct: false,
  156. },
  157. ],
  158. };
  159. },
  160. computed: {
  161. bannerClass() {
  162. return this.bannerDataList.length > 0 && this.isScrollNumber < 235;
  163. },
  164. bannerPosition() {
  165. return this.bannerDataList.length > 0;
  166. },
  167. lableIsRows() {
  168. const numTags = this.dataListLable.length;
  169. const rows = [];
  170. if (numTags <= 4) {
  171. rows.push(this.dataListLable);
  172. } else if (numTags > 4 && numTags <= 8) {
  173. const firstRow = this.dataListLable.slice(0, 4);
  174. const secondRow = this.dataListLable.slice(4);
  175. rows.push(firstRow, secondRow);
  176. } else if (numTags >= 9) {
  177. const firstRow = this.dataListLable.filter((_, index) => index % 2 === 0);
  178. const secondRow = this.dataListLable.filter((_, index) => index % 2 !== 0);
  179. rows.push(firstRow, secondRow);
  180. }
  181. return rows;
  182. },
  183. },
  184. components: {
  185. ChartItem,
  186. ReportItem,
  187. RoadshowItem,
  188. ActivityItem,
  189. SearchBar,
  190. MorningDlg,
  191. ItemContent,
  192. videoModule,
  193. suspenButton,
  194. },
  195. methods: {
  196. // 获取最先数据
  197. async getNewList() {
  198. const res = await Home.getNewList({
  199. PageSize: this.pageSize,
  200. CurrentIndex: this.page_no,
  201. });
  202. if (res.Ret === 200) {
  203. this.status = !res.Data.Paging.IsEnd ? "loadmore" : "nomore";
  204. let listArr = [];
  205. res.Data.List &&
  206. res.Data.List.forEach((item) => {
  207. let obj = {
  208. Source: item.Source,
  209. Article: item.Article,
  210. Newchart: item.Newchart,
  211. Activity: item.Activity || item.Activityspecial,
  212. Roadshow: item.Roadshow || item.Activityvideo || item.Activityvoice,
  213. ThreeSummary: item.Researchsummary || item.Minutessummary || item.Meetingreviewchapt || item.ProductInterior,
  214. };
  215. listArr.push({ ...obj, IsShowData: obj.Article || obj.Newchart || obj.Roadshow || obj.Activity || obj.ThreeSummary });
  216. });
  217. this.newDataList = this.page_no === 1 ? listArr : [...this.newDataList, ...listArr];
  218. if (this.refresh) {
  219. uni.stopPullDownRefresh();
  220. this.refresh = false;
  221. }
  222. }
  223. },
  224. // 微路演收藏
  225. async isCollectionHandeler(item) {
  226. await this.$store.dispatch("showLoginModal");
  227. const res = await Home.microRoadshowCollect({
  228. Id: item.Id,
  229. SourceType: item.Type,
  230. PageRouter: this.$store.state.pageRouterReport,
  231. });
  232. if (res.Ret === 200) {
  233. let index = this.newDataList.findIndex((key) => key.Roadshow && key.Roadshow.Id == item.Id);
  234. res.Data.Status == 1 ? (this.newDataList[index].Roadshow.IsCollect = true) : (this.newDataList[index].Roadshow.IsCollect = false);
  235. uni.showToast({
  236. title: res.Msg,
  237. duration: 2000,
  238. });
  239. }
  240. },
  241. // 跳转到我的页面
  242. goMyInfo() {
  243. uni.navigateTo({
  244. url: "/pageMy/myPage/myPage",
  245. });
  246. },
  247. // 跳转绑定页面
  248. goLogin() {
  249. uni.showModal({
  250. title: "即将前往登录页面,请确认是否继续",
  251. content: "为了给您提供更好的使用体验,请登录后再进行查看或操作",
  252. confirmColor: "#3385FF",
  253. cancelColor: "#606266",
  254. success: function (res) {
  255. if (res.confirm) {
  256. //已授权未绑定
  257. uni.navigateTo({
  258. url: "/pageMy/login/login",
  259. });
  260. } else if (res.cancel) {
  261. console.log("用户点击取消");
  262. }
  263. },
  264. });
  265. },
  266. /* 搜索 */
  267. goSearch() {
  268. this.$store.dispatch("checkHandle", "/pages-search/indedxSearch/indedxSearch?isType=" + this.topTabsActive + "&source=首页页面");
  269. },
  270. async getUserInfo() {
  271. const res = await Mine.getInfo();
  272. if (res.Ret === 200) {
  273. this.info = res.Data;
  274. }
  275. },
  276. // 晨会弹框显示
  277. showMorningDialog(item) {
  278. console.log(item);
  279. if (item.Source == "meetingreviewchapt") {
  280. this.isMorningShow = true;
  281. this.morningItem = item;
  282. }
  283. },
  284. dataListItem(item) {
  285. let obj = item.ThreeSummary ? { ...item.ThreeSummary, Source: item.Source } : {};
  286. return obj;
  287. },
  288. /* 绝密标签点击后的跳转 */
  289. goSecretDetail(type) {
  290. if (type == 1) {
  291. uni.navigateTo({
  292. url: "/reportPages/keyCompany/keyCompany",
  293. });
  294. } else {
  295. uni.navigateTo({
  296. url: "/reportPages/secretDetails/secretDetails",
  297. });
  298. }
  299. this.$refs.suspenButton.onOpen();
  300. },
  301. // 获取banner 列表
  302. async getBannerList() {
  303. const res = await Home.bannerList();
  304. if (res.Ret === 200) {
  305. this.bannerDataList = res.Data.List || [];
  306. }
  307. },
  308. // bannaer 点击事件
  309. async bannerSwiperHandler(item) {
  310. let { Type, SourceId, Path } = item.BannerUrlResp;
  311. if (Type == 1) return;
  312. await Home.bannerHistory({
  313. BannerId: item.BannerId,
  314. });
  315. if (Type == 5) {
  316. let obj = {
  317. BackgroundImg: "https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/my_log.png",
  318. Id: SourceId,
  319. PlaySeconds: "15",
  320. ResourceUrl: "https://hzstatic.hzinsights.com/static/yb/video/8617330c2a76e0c35999f6466b4470c4.mp4",
  321. Title: "三分钟了解弘则研究体系和方法论",
  322. Type: "三分钟了解弘则研究体系和方法论",
  323. };
  324. this.videoPopListUp = obj;
  325. this.showVideoPopUp = true;
  326. await Mine.addHistory();
  327. } else {
  328. Path &&
  329. uni.navigateTo({
  330. url: Path + SourceId,
  331. });
  332. }
  333. },
  334. lableKeysHandler(item) {
  335. let actId = [];
  336. item.isAct = !item.isAct;
  337. this.lableIsRows.forEach((item) => {
  338. item.forEach((_) => {
  339. _.isAct && actId.push(_.key);
  340. });
  341. });
  342. },
  343. },
  344. mounted() {
  345. uni.$on("updateNewList", (data) => {
  346. this.page_no = 1;
  347. this.getNewList();
  348. });
  349. },
  350. onLoad() {
  351. this.getBannerList();
  352. this.getNewList();
  353. },
  354. onShow() {
  355. this.getUserInfo();
  356. this.getRecordTracking("首页");
  357. this.$store.commit("setRouterActivity", "首页");
  358. this.$store.commit("setRouterReport", "首页");
  359. },
  360. // 加载数据
  361. onReachBottom() {
  362. if (this.status === "nomore" || this.newDataList.length < 8) return;
  363. this.status = "loading";
  364. this.page_no++;
  365. this.getNewList();
  366. },
  367. // 下拉刷新
  368. onPullDownRefresh() {
  369. this.page_no = 1;
  370. this.refresh = true;
  371. this.getNewList();
  372. },
  373. onPageScroll(val) {
  374. this.isScrollNumber = val.scrollTop;
  375. },
  376. /** 用户点击分享*/
  377. onShareAppMessage: function ({ from, target }) {
  378. if (from === "button") {
  379. let item = target.dataset.item;
  380. let audio_id = item.Type == 1 || item.AudioType == 1 ? item.Id : "";
  381. // type=2 -- 活动视频 type=3 -- 产业视频
  382. let video_id = item.Type == 2 || item.Type == 3 ? item.Id : "";
  383. let activity_id = item.Type == 2 && item.ActivityId > 0 ? item.ActivityId : "";
  384. let title_share = item.AudioTitle || item.Title;
  385. this.getRecordTracking("首页转发", { ActivityId: item.ActivityId, Id: item.Id, Type: item.Type });
  386. return {
  387. title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : title_share,
  388. path: "/pages/material/material?topTabsActive=4" + "&audioShareId=" + audio_id + "&videoShareId=" + video_id + "&activityId=" + activity_id,
  389. imageUrl: item.AudioShareImg || item.ShareImg,
  390. };
  391. } else {
  392. return {
  393. title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : "弘则研究—聚焦 前瞻 客观 深度",
  394. path: "/pages/index/index",
  395. success: (res) => {},
  396. fail: (err) => {},
  397. };
  398. }
  399. },
  400. };
  401. </script>
  402. <style lang="scss" scoped>
  403. .New-container {
  404. background-color: #f5f6fa;
  405. .content-search {
  406. position: sticky;
  407. top: 0;
  408. left: 0;
  409. width: 100%;
  410. z-index: 9;
  411. .top-content-box {
  412. position: sticky;
  413. top: 0;
  414. left: 0;
  415. width: 100%;
  416. z-index: 9;
  417. }
  418. }
  419. .banner-Position {
  420. position: fixed !important;
  421. }
  422. .banne-bg {
  423. /deep/ .nav-bar-wrap {
  424. background-color: transparent;
  425. }
  426. }
  427. .banne-content {
  428. height: 402rpx;
  429. width: 100%;
  430. overflow: hidden;
  431. swiper {
  432. height: 402rpx;
  433. }
  434. image {
  435. width: 100%;
  436. height: 100%;
  437. }
  438. .banner-title {
  439. position: absolute;
  440. bottom: 35rpx;
  441. left: 20rpx;
  442. color: #fff;
  443. font-weight: 500;
  444. line-height: 65rpx;
  445. min-height: 160rpx;
  446. max-height: 225rpx;
  447. overflow: hidden;
  448. .time {
  449. font-size: 28rpx;
  450. line-height: 39rpx;
  451. }
  452. }
  453. .top-content-box {
  454. position: absolute;
  455. top: 0;
  456. left: 0;
  457. width: 100%;
  458. z-index: 9;
  459. }
  460. }
  461. /deep/ .nav-bar-wrap {
  462. padding-left: 35rpx;
  463. .box-img {
  464. position: relative;
  465. height: 88rpx;
  466. width: 165rpx;
  467. display: flex;
  468. align-items: center;
  469. justify-content: center;
  470. margin-right: 20rpx;
  471. border-radius: 50%;
  472. image {
  473. width: 80rpx;
  474. height: 80rpx;
  475. }
  476. .content-img {
  477. position: absolute;
  478. top: 0;
  479. left: 0;
  480. width: 80rpx;
  481. height: 80rpx;
  482. border-radius: 50%;
  483. overflow: hidden;
  484. z-index: 9;
  485. }
  486. .content-my {
  487. width: 163rpx;
  488. height: 64rpx;
  489. margin-left: 2rpx;
  490. display: flex;
  491. align-items: center;
  492. background-color: #f7f7f7;
  493. border-radius: 38rpx;
  494. color: #333333;
  495. font-size: 28rpx;
  496. padding-right: 18rpx;
  497. justify-content: flex-end;
  498. }
  499. }
  500. }
  501. .content-ul {
  502. padding: 30rpx 10rpx;
  503. display: flex;
  504. justify-content: space-between;
  505. .item-ul {
  506. width: 49%;
  507. &:first-child {
  508. margin-right: 10rpx;
  509. }
  510. }
  511. }
  512. .bind-btn {
  513. padding-top: 110rpx;
  514. text-align: center;
  515. font-size: 24rpx;
  516. color: #333;
  517. line-height: 39rpx;
  518. padding-bottom: 100rpx;
  519. .login-text {
  520. display: inline-block;
  521. color: #3385ff;
  522. }
  523. }
  524. .lable-select-content {
  525. position: sticky;
  526. left: 0;
  527. top: 175rpx;
  528. overflow: hidden;
  529. overflow-x: auto;
  530. width: 100%;
  531. background-color: #fff;
  532. padding: 10rpx 0 10rpx 20rpx;
  533. z-index: 9;
  534. .lable-row {
  535. display: flex;
  536. }
  537. .lable-item {
  538. flex-shrink: 0;
  539. padding: 8rpx 40rpx;
  540. background: #ffffff;
  541. border: 1rpx solid #dcdfe6;
  542. border-radius: 48rpx;
  543. margin-right: 20rpx;
  544. white-space: nowrap;
  545. margin-top: 20rpx;
  546. }
  547. .item-active {
  548. background: #3385ff;
  549. color: #fff;
  550. }
  551. }
  552. }
  553. </style>