index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  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="58">
  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>
  14. </template>
  15. </search-bar>
  16. </view>
  17. </view>
  18. <view class="banne-content" v-if="bannerDataList.length">
  19. <swiper autoplay :interval="4000" circular indicator-dots>
  20. <view v-for="item in bannerDataList" :key="item.BannerId" @click="bannerSwiperHandler(item)">
  21. <swiper-item>
  22. <image :src="item.IndexImg"></image>
  23. <view class="banner-title">
  24. <text class="text_twoLine" :style="{ 'font-size': item.Subtitle.length > 24 ? '45rpx' : '50rpx' }">
  25. {{ item.Title }}
  26. </text>
  27. <text class="time text_twoLine"> {{ item.Subtitle }}</text>
  28. </view>
  29. </swiper-item>
  30. </view>
  31. </swiper>
  32. </view>
  33. <view
  34. v-if="isTopHeight"
  35. class="lable-select-content"
  36. :style="[{ top: isTopHeight }, { 'background-color': isScrollNumber >= 175 ? '#fff' : '#f5f6fa' }, { 'box-shadow': isScrollNumber >= 175 ? '0rpx 3rpx 8rpx 0rpx rgba(0, 0, 0, 0.16)' : '' }]"
  37. >
  38. <view class="lable-row" v-for="(item, index) in lableIsRows" :key="index">
  39. <view :class="['lable-item', lable.isAct && 'item-active']" v-for="lable in item" :key="lable.TagId" @click="lableKeysHandler(lable)">
  40. {{ lable.TagName }}
  41. </view>
  42. </view>
  43. </view>
  44. <block v-if="newDataList && newDataList.length">
  45. <view class="content-ul">
  46. <view class="item-ul">
  47. <block v-for="(item, index) in newDataList" :key="index">
  48. <view v-if="index % 2 == 0 && item.IsShowData">
  49. <block v-if="item.Source === 'article' || item.Source === 'yanxuanspecial'"> <ReportItem :list="item.Article" /></block>
  50. <block v-if="item.Source === 'newchart'">
  51. <ChartItem :list="item.Newchart" :isMyChartCollection="isMyChartCollection" @myChartIsTop="myChartIsTop" @myChartCollect="myChartCollect" />
  52. </block>
  53. <block v-if="item.Source === 'roadshow' || item.Source === 'activityvideo' || item.Source === 'activityvoice'">
  54. <RoadshowItem :list="item.Roadshow" @isCollectionHandeler="isCollectionHandeler" />
  55. </block>
  56. <block v-if="item.Source === 'activity' || item.Source === 'activityspecial'">
  57. <ActivityItem :list="item.Activity" />
  58. </block>
  59. <block v-if="['researchsummary', 'minutessummary', 'meetingreviewchapt', 'productinterior', 'reportselection'].includes(item.Source)">
  60. <item-content :list="dataListItem(item)" @showMorningDialog="showMorningDialog" />
  61. </block>
  62. </view>
  63. </block>
  64. </view>
  65. <view class="item-ul">
  66. <block v-for="(item, index) in newDataList" :key="index">
  67. <view v-if="index % 2 !== 0 && item.IsShowData">
  68. <block v-if="item.Source === 'article' || item.Source === 'yanxuanspecial'"> <ReportItem :list="item.Article" /></block>
  69. <block v-if="item.Source === 'newchart'">
  70. <ChartItem :list="item.Newchart" :isMyChartCollection="isMyChartCollection" @myChartIsTop="myChartIsTop" @myChartCollect="myChartCollect" />
  71. </block>
  72. <block v-if="item.Source === 'roadshow' || item.Source === 'activityvideo' || item.Source === 'activityvoice'">
  73. <RoadshowItem :list="item.Roadshow" @isCollectionHandeler="isCollectionHandeler" />
  74. </block>
  75. <block v-if="item.Source === 'activity' || item.Source === 'activityspecial'">
  76. <ActivityItem :list="item.Activity" />
  77. </block>
  78. <block v-if="['researchsummary', 'minutessummary', 'meetingreviewchapt', 'productinterior', 'reportselection'].includes(item.Source)">
  79. <item-content :list="dataListItem(item)" @showMorningDialog="showMorningDialog" />
  80. </block>
  81. </view>
  82. </block>
  83. </view>
  84. </view>
  85. <u-loadmore :status="status" icon-type="flower" :load-text="loadText" margin-top="20" v-if="page_no > 1" />
  86. </block>
  87. <view class="nodata" v-else>
  88. <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/act_search.png" mode="" class="nodata_ico"></image>
  89. <text style="">暂无数据</text>
  90. </view>
  91. <!-- <view v-if="newDataList.length === 4" class="bind-btn">
  92. <view @click="goLogin"> 为了给您提供更好的使用体验,<br />请 <text class="login-text">登录</text>后再查看此页面内容</view>
  93. </view> -->
  94. <morning-dlg v-if="isMorningShow" :isMorningShow.sync="isMorningShow" :morningItem.sync="morningItem" />
  95. </view>
  96. <suspenButton :show.sync="wholeShowListData.IsShow" v-if="wholeShowListData.IsShow" ref="suspenButton">
  97. <template slot="center">
  98. <image mode="widthFix" style="height: 120rpx; width: 120rpx" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/new_cygx/most_confidential.png "> </image>
  99. </template>
  100. <template slot="top">
  101. <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>
  102. </template>
  103. <template slot="left">
  104. <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>
  105. </template>
  106. </suspenButton>
  107. <Loading />
  108. <videoModule :showVideoPop.sync="showVideoPopUp" :videoPopList="videoPopListUp" />
  109. <view v-if="showAudioBox">
  110. <audioModule :showAudioPop.sync="showAudioPop" />
  111. </view>
  112. </page-meta>
  113. </template>
  114. <script>
  115. import { Home, Mine, Reports } from "@/config/api";
  116. import ChartItem from "@/components/ItemComponent/chartItem.vue";
  117. import ReportItem from "@/components/ItemComponent/reportItem.vue";
  118. import RoadshowItem from "@/components/ItemComponent/roadshowItem.vue";
  119. import ActivityItem from "@/components/ItemComponent/activityItem.vue";
  120. import SearchBar from "@/components/search-bar/searchBar.vue";
  121. import MorningDlg from "./components/morningDlg.vue";
  122. import ItemContent from "./components/ItemContent.vue";
  123. import videoModule from "@/components/videoModule/index";
  124. import suspenButton from "@/components/suspen_button.vue";
  125. import audioModule from "@/components/audioModule/index";
  126. export default {
  127. data() {
  128. return {
  129. newDataList: [],
  130. page_no: 1,
  131. pageSize: 10,
  132. status: "loadmore",
  133. refresh: false, //正在下拉
  134. loadText: {
  135. loadmore: "上拉加载更多",
  136. loading: "加载中",
  137. nomore: "已经到底了",
  138. },
  139. info: {},
  140. isMorningShow: false, // 晨会的弹框
  141. morningItem: {}, // 晨会的弹框
  142. bannerDataList: [], // banner数据
  143. showVideoPopUp: false, //
  144. videoPopListUp: {},
  145. isScrollNumber: 0,
  146. dataListLable: [], // 标签的数据
  147. actIdLable: "", // 标签选择后的ID
  148. isTopHeight: "",
  149. lableArrList: [],
  150. showAudioPop: false,
  151. };
  152. },
  153. computed: {
  154. bannerClass() {
  155. //判断banner的样式
  156. return this.bannerDataList.length > 0 && this.isScrollNumber < 235;
  157. },
  158. bannerPosition() {
  159. return this.bannerDataList.length > 0;
  160. },
  161. lableIsRows() {
  162. //处理标签的样式
  163. const numTags = this.dataListLable.length;
  164. const rows = [];
  165. if (numTags <= 4) {
  166. rows.push(this.dataListLable);
  167. } else if (numTags > 4 && numTags <= 8) {
  168. const firstRow = this.dataListLable.slice(0, 4);
  169. const secondRow = this.dataListLable.slice(4);
  170. rows.push(firstRow, secondRow);
  171. } else if (numTags >= 9) {
  172. const firstRow = this.dataListLable.filter((_, index) => index % 2 === 0);
  173. const secondRow = this.dataListLable.filter((_, index) => index % 2 !== 0);
  174. rows.push(firstRow, secondRow);
  175. }
  176. return rows;
  177. },
  178. showAudioBox() {
  179. return this.$store.state.audioBg.parseIntShow;
  180. },
  181. },
  182. components: {
  183. ChartItem,
  184. ReportItem,
  185. RoadshowItem,
  186. ActivityItem,
  187. SearchBar,
  188. MorningDlg,
  189. ItemContent,
  190. videoModule,
  191. suspenButton,
  192. audioModule,
  193. },
  194. methods: {
  195. // 获取最先数据
  196. async getNewList() {
  197. const res = await Home.getNewList({
  198. PageSize: this.pageSize,
  199. CurrentIndex: this.page_no,
  200. TagIds: this.actIdLable,
  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 || item.YanxuanSpecial,
  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 || item.ReportSelection,
  214. };
  215. listArr.push({ ...obj, IsShowData: obj.Article || obj.Newchart || obj.Roadshow || obj.Activity || obj.ThreeSummary || item.YanxuanSpecial });
  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: "#376cbb",
  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. uni.navigateTo({ url: "/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. async showMorningDialog(item) {
  278. if (item.Source == "meetingreviewchapt") {
  279. const res = await Reports.morning_meeting_history({ Id: item.Id, SourcePage: "首页" });
  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. async lableKeysHandler(item) {
  335. const checkList = item.CheckList;
  336. if (item.isAct) {
  337. item.isAct = false;
  338. this.lableArrList = this.lableArrList.filter((key) => checkList.includes(key));
  339. this.getLableDataList();
  340. return;
  341. }
  342. let isFlag = false; //是否有交集
  343. for (let e of checkList) {
  344. if (this.lableArrList.includes(e)) {
  345. isFlag = true;
  346. break;
  347. }
  348. }
  349. if (!isFlag) {
  350. this.lableArrList = [...this.lableArrList, ...checkList];
  351. item.isAct = true;
  352. } else {
  353. //有交集
  354. // 找到有交集的那个 设置为false 然后将点击的这个设置为true
  355. this.lableIsRows.forEach((e1) => {
  356. e1.forEach((e2) => {
  357. let flag = false;
  358. for (let i of e2.CheckList) {
  359. if (this.lableArrList.includes(i)) {
  360. flag = true;
  361. break;
  362. }
  363. }
  364. if (flag) {
  365. e2.isAct = false;
  366. }
  367. });
  368. });
  369. item.isAct = true;
  370. }
  371. this.getLableDataList();
  372. if (!item.isAct) return;
  373. const res = await Home.tagAddHistory({
  374. TagId: item.TagId,
  375. });
  376. },
  377. getLableDataList() {
  378. let actId = [];
  379. this.lableIsRows.forEach((item) => {
  380. item.forEach((_) => {
  381. _.isAct && actId.push(_.TagId);
  382. });
  383. });
  384. this.page_no = 1;
  385. this.actIdLable = actId.join(",");
  386. this.getNewList();
  387. },
  388. // 或者标签内容
  389. async homeTagListCustom() {
  390. const res = await Home.homeTagListCustom();
  391. if (res.Ret === 200) {
  392. const arr = res.Data || [];
  393. this.dataListLable = arr.map((item) => {
  394. return {
  395. ...item,
  396. isAct: false,
  397. };
  398. });
  399. }
  400. },
  401. },
  402. mounted() {
  403. uni.$on("updateNewList", (data) => {
  404. this.page_no = 1;
  405. this.getNewList();
  406. });
  407. },
  408. onLoad() {
  409. this.getBannerList();
  410. this.getNewList();
  411. this.homeTagListCustom();
  412. let menuButtonInfo = uni.getMenuButtonBoundingClientRect();
  413. this.isTopHeight = menuButtonInfo.height + menuButtonInfo.top + 7 + "px";
  414. },
  415. onShow() {
  416. this.getUserInfo();
  417. this.getRecordTracking("首页");
  418. this.$store.commit("setRouterActivity", "首页");
  419. this.$store.commit("setRouterReport", "首页");
  420. },
  421. // 加载数据
  422. onReachBottom() {
  423. if (this.status === "nomore" || this.newDataList.length < 8) return;
  424. this.status = "loading";
  425. this.page_no++;
  426. this.getNewList();
  427. },
  428. // 下拉刷新
  429. onPullDownRefresh() {
  430. this.page_no = 1;
  431. this.refresh = true;
  432. this.getNewList();
  433. },
  434. onPageScroll(val) {
  435. this.isScrollNumber = val.scrollTop;
  436. },
  437. /** 用户点击分享*/
  438. onShareAppMessage: function ({ from, target }) {
  439. if (from === "button") {
  440. let item = target.dataset.item;
  441. let audio_id = item.Type == 1 || item.AudioType == 1 ? item.Id : "";
  442. // type=2 -- 活动视频 type=3 -- 产业视频
  443. let video_id = item.Type == 2 || item.Type == 3 ? item.Id : "";
  444. let activity_id = item.Type == 2 && item.ActivityId > 0 ? item.ActivityId : "";
  445. let title_share = item.AudioTitle || item.Title;
  446. this.getRecordTracking("首页转发", { ActivityId: item.ActivityId, Id: item.Id, Type: item.Type });
  447. return {
  448. title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : title_share,
  449. path: "/pages/material/material?topTabsActive=4" + "&audioShareId=" + audio_id + "&videoShareId=" + video_id + "&activityId=" + activity_id,
  450. imageUrl: item.AudioShareImg || item.ShareImg,
  451. };
  452. } else {
  453. return {
  454. title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : "弘则研究—聚焦·前瞻·客观·深度",
  455. path: "/pages/index/index",
  456. success: (res) => {},
  457. fail: (err) => {},
  458. };
  459. }
  460. },
  461. };
  462. </script>
  463. <style lang="scss" scoped>
  464. .New-container {
  465. background-color: $uni-bg-color;
  466. .content-search {
  467. position: sticky;
  468. top: 0;
  469. left: 0;
  470. width: 100%;
  471. z-index: 9;
  472. .top-content-box {
  473. position: sticky;
  474. top: 0;
  475. left: 0;
  476. width: 100%;
  477. z-index: 9;
  478. }
  479. }
  480. .banner-Position {
  481. position: fixed !important;
  482. }
  483. .banne-bg {
  484. /deep/ .nav-bar-wrap {
  485. background-color: transparent;
  486. }
  487. }
  488. .banne-content {
  489. height: 402rpx;
  490. width: 100%;
  491. overflow: hidden;
  492. swiper {
  493. height: 402rpx;
  494. }
  495. image {
  496. width: 100%;
  497. height: 100%;
  498. }
  499. .banner-title {
  500. position: absolute;
  501. bottom: 35rpx;
  502. left: 20rpx;
  503. color: #fff;
  504. font-weight: 500;
  505. line-height: 65rpx;
  506. min-height: 160rpx;
  507. max-height: 225rpx;
  508. overflow: hidden;
  509. .time {
  510. font-size: 28rpx;
  511. line-height: 39rpx;
  512. }
  513. }
  514. .top-content-box {
  515. position: absolute;
  516. top: 0;
  517. left: 0;
  518. width: 100%;
  519. z-index: 9;
  520. }
  521. }
  522. /deep/ .nav-bar-wrap {
  523. padding-left: 35rpx;
  524. .box-img {
  525. position: relative;
  526. height: 64rpx;
  527. width: 64rpx;
  528. display: flex;
  529. align-items: center;
  530. justify-content: center;
  531. margin-right: 20rpx;
  532. border-radius: 50%;
  533. image {
  534. width: 64rpx;
  535. height: 64rpx;
  536. }
  537. .content-img {
  538. position: absolute;
  539. top: 0;
  540. left: 0;
  541. width: 64rpx;
  542. height: 64rpx;
  543. border-radius: 50%;
  544. overflow: hidden;
  545. z-index: 9;
  546. }
  547. }
  548. }
  549. .content-ul {
  550. padding: 20rpx 10rpx;
  551. display: flex;
  552. justify-content: space-between;
  553. .item-ul {
  554. width: 49%;
  555. &:first-child {
  556. margin-right: 10rpx;
  557. }
  558. }
  559. }
  560. .bind-btn {
  561. padding-top: 110rpx;
  562. text-align: center;
  563. font-size: 24rpx;
  564. color: #333;
  565. line-height: 39rpx;
  566. padding-bottom: 100rpx;
  567. .login-text {
  568. display: inline-block;
  569. color: #376cbb;
  570. }
  571. }
  572. .lable-select-content {
  573. position: sticky;
  574. left: 0;
  575. top: 88px;
  576. overflow: hidden;
  577. overflow-x: auto;
  578. width: 100%;
  579. background-color: #fff;
  580. padding: 10rpx 0 20rpx 20rpx;
  581. z-index: 9;
  582. .lable-row {
  583. display: flex;
  584. font-size: 24rpx;
  585. }
  586. .lable-item {
  587. flex-shrink: 0;
  588. padding: 8rpx 40rpx;
  589. background: #ffffff;
  590. border: 1rpx solid #dcdfe6;
  591. border-radius: 39rpx;
  592. margin-right: 20rpx;
  593. white-space: nowrap;
  594. margin-top: 20rpx;
  595. color: #999999;
  596. }
  597. .item-active {
  598. border: none;
  599. font-weight: 500;
  600. background: #e5efff;
  601. color: $uni-color-new;
  602. }
  603. }
  604. }
  605. </style>