my.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651
  1. <template>
  2. <view class="page">
  3. <view class="topBody">
  4. <view class="header">
  5. <view class="reserveASeat"></view>
  6. <view class="card-box">
  7. <view class="card-top">
  8. <view class="top-box">
  9. <view class="hello-box"> Hello! </view>
  10. <view class="settingBtn-box">
  11. <image @click="clickShare()" src="@/static/me/wd_icon_fenxian.png" mode=""></image>
  12. <image src="@/static/me/wd_icon_shezhi.png" mode="" @click="navigateToSettings"></image>
  13. </view>
  14. </view>
  15. <view class="userinfo-box" @click="goPage('/pages/my/editInfo')">
  16. <view class="userinfo-left">
  17. <CircleAvatar class="avator" :src="myinfo.avator"></CircleAvatar>
  18. </view>
  19. <view class="userinfo-right">
  20. <view class="nickname">
  21. <text class="one-omit">{{ myinfo.nickname }}</text>
  22. <image src="../../static/icon/wd_icon_nan.png" mode="widthFix"
  23. v-if="myinfo.sex_id == 1"></image>
  24. <image src="../../static/icon/wd_icon_nv.png" mode="widthFix"
  25. v-else-if="myinfo.sex_id == 2"></image>
  26. <view class="level">Lv{{ myinfo.my_level }}</view>
  27. </view>
  28. <view class="label">
  29. <view v-for="(item, index) in aihao_tags" :key="index + item">
  30. {{ item }}
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. <view class="intro_row">
  36. <block v-if="myinfo.content == ''">
  37. <text class="intro_text two-omit">添加简介</text>
  38. <image src="@/static/icon/wd_icon_edit.png" mode="widthFix" class="add_icon"></image>
  39. </block>
  40. <uv-text v-else class="intro_text two-omit">
  41. {{ myinfo.content }}
  42. </uv-text>
  43. </view>
  44. <view class="bom">
  45. <view class="follow_info" @click="navigateToFollow">
  46. <view class="follow-box">
  47. <view class="num">{{ myinfo.num_attention }}</view>
  48. <view class="label">关注</view>
  49. </view>
  50. <view class="separator"></view>
  51. <view class="follow-box">
  52. <view class="num">{{ myinfo.num_fans }}</view>
  53. <view class="label">粉丝</view>
  54. </view>
  55. <view class="separator"></view>
  56. <view class="follow-box">
  57. <view class="num">{{ myinfo.num_like }}</view>
  58. <view class="label">获赞</view>
  59. </view>
  60. </view>
  61. <view class="points-box">
  62. <view class="points" @click="goPage('/pages/vip/M_purchase')">
  63. <image src="@/static/icon/wd_icon_coin.png" mode=""></image>
  64. {{ myinfo.num_gmm | formatNumberToK}}
  65. <view class="money-add">+</view>
  66. </view>
  67. <view class="points" @click="goPage('/pages/my/job?type=recharge')">
  68. <image src="@/static/icon/wd_icon_xingyuan.png" mode=""></image>
  69. {{ myinfo.num_gmd | formatNumberToK}}
  70. <view class="money-add">+</view>
  71. </view>
  72. </view>
  73. </view>
  74. </view>
  75. <view class="card-bom" @click="goPage('/pages/vip/index')">
  76. <view class="content-box">
  77. <image v-if="false" src="@/static/me/icon-vip2.png" mode=""></image>
  78. <image v-else-if="0" src="@/static/me/icon-vip1.png" mode=""></image>
  79. <image v-else src="@/static/me/icon-vip0.png" mode=""></image>
  80. <text v-if="true">开启专属会员权益</text>
  81. <text v-else>会员权益生效中</text>
  82. </view>
  83. <image src="@/static/me/wd_icon_jiantou.png" mode=""></image>
  84. </view>
  85. </view>
  86. </view>
  87. <view class="myinfo">
  88. <!-- <view class="line"></view> -->
  89. <view class="tablist">
  90. <view class="item" :class="{ active: firstLevelNavActive === 0 }"
  91. @click="firstLevelNavActiveSwitch(0)">我的作品
  92. <view class="indicator-triangle"> </view>
  93. </view>
  94. <view class="item" :class="{ active: firstLevelNavActive === 1 }"
  95. @click="firstLevelNavActiveSwitch(1)">我的帖子
  96. <view class="indicator-triangle"> </view>
  97. </view>
  98. </view>
  99. <!-- 作品列表 -->
  100. <template v-if="firstLevelNavActive == 0">
  101. <view class="line"></view>
  102. <view class="subtitle">
  103. <view class="item" :class="{ active: activeTab === 0 }" @click="switchTab(0)">
  104. 作品
  105. </view>
  106. <view class="item" :class="{ active: activeTab === 1 }" @click="switchTab(1)">
  107. 生成中
  108. </view>
  109. </view>
  110. <view class="numlist1" v-if="activeTab === 0" style="margin-top: 30rpx">
  111. <WorkItem v-for="(item, index) in worksList" :secrecy="true" :subtitle="true" :key="index"
  112. :item="item" @click="goWork(item)" />
  113. <!-- 暂无内容提示 -->
  114. <view v-if="worksList.length === 0" class="empty-state">
  115. <image src="@/static/icon/xx_img_zanwuxiaoxi.png" mode="aspectFit" class="empty-image">
  116. </image>
  117. <text class="empty-text">暂无作品</text>
  118. <text class="empty-subtext">快来创作你的第一个作品吧~</text>
  119. </view>
  120. </view>
  121. <view class="numlist2" v-if="activeTab === 1" style="margin-top: 30rpx">
  122. <view class="item" v-for="(item, index) in worksList" :key="index" style="margin-bottom: 28rpx">
  123. <view class="num" @click="goWork(item)">
  124. <WorkItem :item="item" style="margin-bottom: 12rpx" />
  125. <image class="incomplete-bg" v-if="item.status != 9"
  126. src="@/static/me/wd_bg_zhizuozhong.png"></image>
  127. <view class="maskLayer"></view>
  128. <!-- 当activeTab为1时显示队列状态 -->
  129. <view class="queue-status">
  130. <!-- 排队中 -->
  131. <view v-if="item.status === 1" class="status-text">
  132. <image class="state-img" src="@/static/me/wd_icon_paiduizhong.png"></image>
  133. </view>
  134. <!-- 生成失败 -->
  135. <view v-if="item.status === 3 || item.status === 4" class="status-text">
  136. <image class="state-img" src="@/static/me/wd_icon_zhizuoshibai.png"></image>
  137. </view>
  138. <!-- 制作中 -->
  139. <view v-else-if="item.status < 9" class="status-text">
  140. <image class="state-img" src="@/static/me/wd_icon_zhizuozhong.png"></image>
  141. </view>
  142. <!-- 创作完成 -->
  143. <view v-else-if="item.status === 9" class="status-text">
  144. <image class="state-img" src="@/static/me/wd_icon_chuangzuowancheng.png">
  145. </image>
  146. </view>
  147. </view>
  148. <view class="name" style="
  149. font-family: 'PingFang SC-Medium';
  150. font-weight: 500;
  151. font-size: 28rpx;
  152. color: #1a4d2e;
  153. ">
  154. {{ item.title || item.description || "作品" + index }}
  155. </view>
  156. <!-- 显示任务类型标签 -->
  157. <view class="task-type-tag">
  158. <image style="width: 120rpx; height: 36rpx" v-if="item.task_type === 1"
  159. src="@/static/me/wd_icon_lingganchuangzuo.png"></image>
  160. <image style="width: 82rpx; height: 36rpx" v-else-if="item.task_type === 2"
  161. src="@/static/me/wd_icon_yinyue.png"></image>
  162. <!-- <text v-if="item.task_type === 1">灵感创作</text>
  163. <text v-else-if="item.task_type === 2">音乐</text> -->
  164. </view>
  165. </view>
  166. </view>
  167. <!-- 暂无内容提示 -->
  168. <view v-if="worksList.length === 0" class="empty-state">
  169. <image src="@/static/icon/xx_img_zanwuxiaoxi.png" mode="aspectFit" class="empty-image">
  170. </image>
  171. <text class="empty-text">暂无生成中的作品</text>
  172. <text class="empty-subtext">快去创作新作品吧~</text>
  173. </view>
  174. </view>
  175. </template>
  176. <template v-else>
  177. <view class="numlist2" style="margin-top: 30rpx">
  178. <view class="item" v-for="(item, index) in worksList" :key="index" style="margin-bottom: 15rpx">
  179. <view class="num" @click="goWork2(item)">
  180. <WorkItem :item="item" style="margin-bottom: 20rpx" />
  181. <view class="incomplete-bg" style="background: #f8f9fa"></view>
  182. <image class="incomplete-bg" v-if="item.status != 1"
  183. src="@/static/me/wd_bg_zhizuozhong.png"></image>
  184. <image class="incomplete-bg2" v-else-if="item.status == 1" :src="item.image"
  185. mode="widthFix"></image>
  186. <view class="maskLayer" v-if="item.status != 1"></view>
  187. <!-- 当activeTab为1时显示队列状态 -->
  188. <view class="queue-status">
  189. <!-- 已发布 -->
  190. <view v-if="item.status == 1" class="status-text">
  191. <!-- <image class="state-img" src="@/static/me/wd_icon_paiduizhong.png"></image> -->
  192. <!-- ({{ item.queue_position }}/{{ item.all_position }}) -->
  193. </view>
  194. <!-- 待审核 -->
  195. <view v-if="item.status == 2 || item.status === 4" class="status-text">
  196. <image class="state-img" src="@/static/me/wd_icon_shenhezhong.png"></image>
  197. </view>
  198. <!-- 审核失败 -->
  199. <view v-else-if="item.status == 3" class="status-text">
  200. <image class="state-img" src="@/static/me/wd_icon_fabushibai.png"></image>
  201. </view>
  202. </view>
  203. <view class="name" style="
  204. font-family: 'PingFang SC-Medium';
  205. font-weight: 500;
  206. font-size: 28rpx;
  207. color: #1a4d2e;
  208. ">
  209. {{ item.title || item.description || "作品" + index }}
  210. </view>
  211. </view>
  212. </view>
  213. <!-- 暂无内容提示 -->
  214. <view v-if="worksList.length === 0" class="empty-state">
  215. <image src="@/static/icon/xx_img_zanwuxiaoxi.png" mode="aspectFit" class="empty-image">
  216. </image>
  217. <text class="empty-text">暂无帖子</text>
  218. <text class="empty-subtext">快来发布你的第一个帖子吧~</text>
  219. </view>
  220. </view>
  221. </template>
  222. <!-- 加载更多提示 -->
  223. <!-- <view class="loading-more" v-if="isLoading">加载中...</view>
  224. <view class="no-more" v-if="!hasMore && worksList.length > 0">没有更多作品了</view>
  225. <view class="no-more" v-if="!hasMore && worksList.length === 0">暂无作品</view> -->
  226. </view>
  227. <view class="blankHeight"></view>
  228. </view>
  229. <view class="reserveASeatBom"></view>
  230. <!-- 确认框 -->
  231. <CustomConfirm ref="customConfirm"></CustomConfirm>
  232. <!-- 提示框 -->
  233. <DialogBox ref="DialogBox"></DialogBox>
  234. <tabbar-view :tabbars="tabbars" :currentIndex="4" ref="tabbar"></tabbar-view>
  235. <!-- SharePopup组件 -->
  236. <SharePopup :visible="showShare" :share-url="shareUrl" :share-title="shareTitle" :share-desc="shareDesc"
  237. :share-img="shareImg" @close="showShare = false" />
  238. </view>
  239. </template>
  240. <script>
  241. import tabbarView from "@/components/tabbar/tabbar.vue";
  242. import tabbar from "@/mixins/tabbar";
  243. import CustomConfirm from "@/components/custome-confirm/customeConfirm.vue";
  244. import CircleAvatar from "@/components/CircleAvatar/CircleAvatar.vue";
  245. import meCard from "@/components/meCard/meCard.vue";
  246. import WorkItem from "@/components/WorkItem/WorkItem.vue";
  247. export default {
  248. components: {
  249. tabbarView,
  250. CustomConfirm,
  251. CircleAvatar,
  252. meCard,
  253. WorkItem,
  254. },
  255. mixins: [tabbar],
  256. data() {
  257. return {
  258. title: "",
  259. sel: 1,
  260. firstLevelNavActive: 0,
  261. myinfo: {
  262. avator: "../../static/logo.png",
  263. nickname: "",
  264. join_name: "",
  265. num_1: 0,
  266. num_2: 0,
  267. num_3: 0,
  268. num_4: 0,
  269. is_login: "no",
  270. num_history: 0,
  271. num_collection: 0,
  272. },
  273. aihao_tags: [],
  274. menu_list: [],
  275. data_list: [],
  276. activeTab: 0,
  277. offset: 0,
  278. hasMore: true,
  279. isLoading: false,
  280. worksList: [],
  281. showShare: false,
  282. shareUrl: "https://your-share-url.com",
  283. shareTitle: "分享标题",
  284. shareDesc: "分享描述",
  285. shareImg: "https://your-share-image.com/image.jpg",
  286. };
  287. },
  288. onLoad(e) {
  289. // setTimeout(function() {
  290. // uni.setNavigationBarColor({
  291. // frontColor: '#ffffff',
  292. // backgroundColor: '#00000000',
  293. // animation: {
  294. // duration: 400,
  295. // timingFunc: 'easeIn'
  296. // }
  297. // })
  298. // }, 200);
  299. },
  300. onShow() {
  301. uni.$emit("check_login", () => {});
  302. // this.loadData();
  303. this.offset = 0;
  304. this.hasMore = true;
  305. this.worksList = [];
  306. this.loadInfo();
  307. // 检查全局变量,如果需要切换到生成中标签
  308. if (getApp().globalData.needSwitchToGenerating) {
  309. setTimeout(() => {
  310. this.switchTab(1);
  311. // 重置全局变量
  312. getApp().globalData.needSwitchToGenerating = false;
  313. }, 300);
  314. }else{
  315. this.loadWorksList();
  316. }
  317. },
  318. onReachBottom() {
  319. if (this.hasMore && !this.isLoading) {
  320. this.loadMoreWorks();
  321. }
  322. },
  323. methods: {
  324. clickShare(item) {
  325. this.showShare = true;
  326. },
  327. async showConfirm() {
  328. let that = this;
  329. this.$refs["customConfirm"]
  330. .confirm({
  331. title: "确认解绑",
  332. content: "解绑微信账号后将无法继续使用它登录该App账号?",
  333. DialogType: "inquiry",
  334. btn1: "再考虑一下",
  335. btn2: "确认解绑",
  336. animation: 0,
  337. })
  338. .then((res) => {});
  339. },
  340. onBack() {},
  341. chkSel() {
  342. if (this.sel == 1) {
  343. this.sel = 0;
  344. } else {
  345. this.sel = 1;
  346. }
  347. },
  348. goPage(page) {
  349. if (page == "kefu") {
  350. let that = this;
  351. // #ifdef APP-PLUS
  352. plus.share.getServices((res) => {
  353. const wechat = res.find((i) => i.id === "weixin");
  354. if (wechat) {
  355. wechat.openCustomerServiceChat({
  356. corpid: "wwbc06aa8311b6ac08",
  357. // url: 'https://work.weixin.qq.com/kfid/kfc4b0bcb4038d00a50'
  358. url: that.myinfo.wxkf,
  359. },
  360. (src) => {
  361. console.log("success:");
  362. },
  363. (err) => {
  364. console.log("error:");
  365. }
  366. );
  367. } else {
  368. uni.showToast({
  369. title: "没有检测到微信,请先安装",
  370. icon: "error",
  371. });
  372. }
  373. });
  374. // #endif
  375. } else if (page != "") {
  376. uni.navigateTo({
  377. url: page,
  378. });
  379. }
  380. },
  381. loadInfo() {
  382. console.log({
  383. uuid: getApp().globalData.uuid,
  384. skey: getApp().globalData.skey,
  385. });
  386. uni.request({
  387. url: this.$apiHost + "/User/getinfo",
  388. data: {
  389. uuid: getApp().globalData.uuid,
  390. skey: getApp().globalData.skey,
  391. },
  392. header: {
  393. "content-type": "application/json",
  394. sign: getApp().globalData.headerSign,
  395. },
  396. success: (res) => {
  397. console.log("----:", JSON.parse(JSON.stringify(res.data)));
  398. if (res.data.need_login == "yes") {
  399. // getApp().globalData.skey = "";
  400. // getApp().globalData.uuid = "";
  401. uni.removeStorageSync("wapptoken");
  402. uni.redirectTo({
  403. url: "/pages/login/login",
  404. });
  405. return;
  406. }
  407. if (res.data.aihao) {
  408. this.aihao_tags = res.data.aihao.split(",");
  409. }
  410. this.myinfo = res.data;
  411. },
  412. complete: (com) => {
  413. // uni.hideLoading();
  414. },
  415. fail: (e) => {
  416. console.log("----e:", e);
  417. },
  418. });
  419. },
  420. onLogout() {
  421. let that = this;
  422. this.$refs["DialogBox"]
  423. .confirm({
  424. title: "提示",
  425. content: "确定退出吗?",
  426. DialogType: "inquiry",
  427. btn1: "取消",
  428. btn2: "退出",
  429. animation: 0,
  430. })
  431. .then((res) => {
  432. uni.request({
  433. url: that.$apiHost + "/My/logout",
  434. data: {
  435. uuid: getApp().globalData.uuid,
  436. skey: getApp().globalData.skey,
  437. },
  438. header: {
  439. "content-type": "application/json",
  440. sign: getApp().globalData.headerSign,
  441. },
  442. success: (res) => {
  443. console.log("----:", res.data);
  444. // getApp().globalData.skey = "";
  445. // getApp().globalData.uuid = "";
  446. uni.removeStorageSync("wapptoken");
  447. uni.redirectTo({
  448. url: "/pages/login/login",
  449. });
  450. },
  451. complete: (com) => {
  452. // uni.hideLoading();
  453. },
  454. fail: (e) => {
  455. console.log("----e:", e);
  456. },
  457. });
  458. });
  459. },
  460. switchTab(index) {
  461. this.activeTab = index;
  462. this.offset = 0;
  463. this.hasMore = true;
  464. this.worksList = [];
  465. this.loadWorksList();
  466. },
  467. loadWorksList() {
  468. if (this.isLoading) return;
  469. this.isLoading = true;
  470. // 根据activeTab选择不同的API
  471. let apiUrl = "";
  472. if (this.firstLevelNavActive == 0) {
  473. if (this.activeTab === 0) {
  474. apiUrl = "/Work/getlist";
  475. } else {
  476. apiUrl = "/WorkAI/getMyQueueList";
  477. }
  478. } else if (this.firstLevelNavActive == 1) {
  479. apiUrl = "/Article/getlist";
  480. }
  481. uni.request({
  482. url: this.$apiHost + apiUrl,
  483. data: {
  484. uuid: getApp().globalData.uuid,
  485. skey: getApp().globalData.skey,
  486. type: "my", // 固定为my,表示获取自己的作品
  487. offset: this.offset,
  488. status: this.activeTab === 0 ? 1 : undefined, // 只有我的作品需要status参数
  489. },
  490. header: {
  491. "content-type": "application/json",
  492. sign: getApp().globalData.headerSign,
  493. },
  494. success: (res) => {
  495. console.log("列表数据:", JSON.parse(JSON.stringify(res.data)));
  496. if (res.data.success == "yes" && res.data.list) {
  497. if (res.data.list.length > 0) {
  498. this.worksList = [...this.worksList, ...res.data.list];
  499. this.offset += res.data.list.length;
  500. }
  501. if (res.data.list.length < 20) {
  502. this.hasMore = false;
  503. }
  504. } else {
  505. this.hasMore = false;
  506. }
  507. // 只有在"我的作品"标签下才更新data_list
  508. if (this.activeTab === 0) {
  509. this.updateDataList();
  510. }
  511. console.log("作品列表数据:", this.worksList);
  512. },
  513. complete: () => {
  514. this.isLoading = false;
  515. },
  516. fail: (e) => {
  517. console.log("请求列表失败:", e);
  518. this.isLoading = false;
  519. },
  520. });
  521. },
  522. firstLevelNavActiveSwitch(n) {
  523. this.firstLevelNavActive = n;
  524. this.offset = 0;
  525. this.hasMore = true;
  526. this.worksList = [];
  527. if (this.firstLevelNavActive == 0) {
  528. this.activeTab = 0;
  529. }
  530. this.loadWorksList();
  531. },
  532. loadMoreWorks() {
  533. if (this.hasMore && !this.isLoading) {
  534. this.loadWorksList();
  535. }
  536. },
  537. updateDataList() {
  538. this.data_list = this.worksList.map((item) => {
  539. return {
  540. url: item.images || item.img_url || item.url || "../../static/logo.png",
  541. title: item.title || item.description || "作品",
  542. id: item.id,
  543. };
  544. });
  545. },
  546. goWork(item) {
  547. uni.$emit("check_login", () => {});
  548. // , //任务状态(1:排队中,3:生成失败,4:生成失败,9:创作完成)
  549. if (this.activeTab == 0) {
  550. uni.navigateTo({
  551. // url: "/pages/index/workDetail?id=" + item.id,
  552. url: "/pages/makedetail/makeDetail?id=" +
  553. item.queue_id +
  554. "&queueId=" +
  555. item.id,
  556. });
  557. } else {
  558. if (item.status >= 9) {
  559. uni.navigateTo({
  560. url: "/pages/makedetail/makeDetail?id=" + item.id,
  561. });
  562. }
  563. if (item.status < 9 && item.status != 3 && item.status != 4) {
  564. // <!-- <text v-if="item.task_type === 1">灵感创作</text>
  565. // <text v-else-if="item.task_type === 2">音乐</text> -->
  566. var url = "";
  567. if (item.task_type === 1) {
  568. url = "/makedetail/makeImgDetail";
  569. }
  570. if (item.task_type === 2) {
  571. url = "/makedetail/makeMusicDetail";
  572. }
  573. if (url) {
  574. uni.navigateTo({
  575. url: "/pages" + url + "?id=" + item.id,
  576. });
  577. }
  578. }
  579. }
  580. },
  581. goWork2(item) {
  582. uni.navigateTo({
  583. // url: "/pages/index/workDetail?id=" + item.id,
  584. url: "/pages/index/articleDetail?id=" + item.id,
  585. });
  586. },
  587. navigateToSettings() {
  588. uni.$emit("check_login", () => {
  589. uni.navigateTo({
  590. url: "/pages/my/setting",
  591. });
  592. });
  593. },
  594. navigateToFollow() {
  595. uni.navigateTo({
  596. url: "/pages/my/follow",
  597. });
  598. },
  599. },
  600. };
  601. </script>
  602. <style scoped lang="scss">
  603. @import "my.scss";
  604. .empty-state {
  605. display: flex;
  606. flex-direction: column;
  607. align-items: center;
  608. justify-content: center;
  609. padding: 60rpx 0;
  610. margin-top: 40rpx;
  611. background: #FFFFFF;
  612. border-radius: 20rpx;
  613. width: 710rpx;
  614. .empty-image {
  615. width: 240rpx;
  616. height: 240rpx;
  617. margin-bottom: 30rpx;
  618. }
  619. .empty-text {
  620. font-size: 32rpx;
  621. color: #333333;
  622. margin-bottom: 16rpx;
  623. font-weight: 500;
  624. }
  625. .empty-subtext {
  626. font-size: 28rpx;
  627. color: #999999;
  628. }
  629. }
  630. </style>