index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733
  1. <template>
  2. <view class="content">
  3. <view class="top_bg">
  4. <image :src="user.backgroud_image || default_bg" mode="aspectFill" class="bg_img" @click="show_bg = true"></image>
  5. <view class="bg-click" @click="show_bg = true"></view>
  6. <u-navbar title=" " @rightClick="tosetting" bgColor="rgba(0,0,0,0)" placeholder :fixed="true"
  7. :autoBack="true">
  8. <view style="display: none;" slot="left"></view>
  9. <view class="u-nav-slot" slot="right">
  10. <image src="../../static/images/setting.png" mode="aspectFill"></image>
  11. </view>
  12. </u-navbar>
  13. <view class="user">
  14. <view class="user-top hflex acenter jbetween">
  15. <view class="name vflex">
  16. <view class="hflex aend" v-if="user.id" @click.stop="touserinfo">
  17. <text>{{user.username || '用户'}}</text>
  18. <text>LV{{user.level}}</text>
  19. <image src="../../static/images/vip.png" mode="aspectFill" v-if="user.is_vip != 0"></image>
  20. </view>
  21. <view v-else @click="tologin">
  22. <view class="intro" style="font-size: 30rpx;font-weight: bold;color: #FFF;">去登陆</view>
  23. </view>
  24. </view>
  25. <image :src="user.avatar || default_avatar" mode="aspectFill" class="user-avatar"
  26. @click.stop="touserinfo"></image>
  27. </view>
  28. <view class="hflex acenter imgs">
  29. <image :src="user.shoot_badge" mode="aspectFill" v-if="user.shoot_badge" @click="topaihang(0)">
  30. </image>
  31. <image :src="user.post_badge" mode="aspectFill" v-if="user.post_badge" @click="topaihang(0)">
  32. </image>
  33. <image :src="user.like_badge" mode="aspectFill" v-if="user.like_badge" @click="topaihang(1)">
  34. </image>
  35. <image :src="user.boutique_post_badge" mode="aspectFill" v-if="user.boutique_post_badge"
  36. @click="topaihang(0)"></image>
  37. </view>
  38. <view class="intro">{{user.introduction}}</view>
  39. <view class="hflex acenter jbetween user-bottom">
  40. <view class="bottom-left hflex acenter">
  41. <view class="vflex bottom-item" @click="toguanzhu('1')">
  42. <text>{{user.follow_count || 0}}</text>
  43. <text>已关注</text>
  44. </view>
  45. <view class="vflex bottom-item" @click="toguanzhu('2')">
  46. <text>{{user.fans_count || 0}}</text>
  47. <text>被关注</text>
  48. </view>
  49. <view class="vflex bottom-item" @click="tocollect">
  50. <text>{{user.collect_count || 0}}</text>
  51. <text>收藏</text>
  52. </view>
  53. </view>
  54. <view class="bottom-right hflex acenter" @click="tovip">
  55. <image src="../../static/images/sign.png" mode="aspectFill" class="sign" v-if="is_sign == 0"></image>
  56. <text class="text">积分待领取</text>
  57. <u-icon name="arrow-right" color="#ffffff" size="14"></u-icon>
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. <view class="box">
  63. <view class="vip hflex acenter jbetween" @click="tovip">
  64. <view class="vflex jbetween left">
  65. <view class="hflex acenter">
  66. <image src="../../static/images/vip_bg1.png" mode="aspectFill"></image>
  67. <text class="vip-text" :style="user.is_vip == 0 ? 'color: #FFEDC1' : ''">忆象会员</text>
  68. <text class="vip-time" v-if="user.vip_time">{{user.vip_expired_at}}到期</text>
  69. </view>
  70. <text>会员福利享不断</text>
  71. </view>
  72. <view class="btn" v-if="user.is_vip == 0">立即开通</view>
  73. <view class="btn" v-else>去升级</view>
  74. </view>
  75. <view class="tabs hflex acenter jbetween fwrap">
  76. <view class="tabs-item vflex acenter jcenter" @click="toyouhui">
  77. <image src="../../static/images/icon1.png" mode="aspectFill"></image>
  78. <text>优惠券</text>
  79. </view>
  80. <view class="tabs-item vflex acenter jcenter" @click="tojifen">
  81. <image src="../../static/images/icon2.png" mode="aspectFill"></image>
  82. <text>积分钱包</text>
  83. </view>
  84. <view class="tabs-item vflex acenter jcenter" @click="tozuji">
  85. <image src="../../static/images/icon3.png" mode="aspectFill"></image>
  86. <text>我的足迹</text>
  87. </view>
  88. <view class="tabs-item vflex acenter jcenter" @click="toqiandao">
  89. <image src="../../static/images/icon4.png" mode="aspectFill"></image>
  90. <text>签到奖励</text>
  91. </view>
  92. <view class="tabs-item vflex acenter jcenter" @click="toyuyue">
  93. <image src="../../static/images/icon5.png" mode="aspectFill"></image>
  94. <text>预约拍摄</text>
  95. </view>
  96. <view class="tabs-item vflex acenter jcenter" @click="tozulin">
  97. <image src="../../static/images/icon6.png" mode="aspectFill"></image>
  98. <text>设备租赁</text>
  99. </view>
  100. <view class="tabs-item vflex acenter jcenter" @click="tovideo">
  101. <image src="../../static/images/icon7.png" mode="aspectFill"></image>
  102. <text>视频管理</text>
  103. </view>
  104. <view class="tabs-item vflex acenter jcenter" @click="toaddress">
  105. <image src="../../static/images/icon8.png" mode="aspectFill"></image>
  106. <text>地址管理</text>
  107. </view>
  108. <view class="tabs-item vflex acenter jcenter" @click="toinvite">
  109. <image src="../../static/images/icon9.png" mode="aspectFill"></image>
  110. <text>邀请好友</text>
  111. </view>
  112. <view class="tabs-item vflex acenter jcenter" @click="toadd">
  113. <image src="../../static/images/icon10.png" mode="aspectFill"></image>
  114. <text>加入忆象</text>
  115. </view>
  116. <view class="tabs-item vflex acenter jcenter" @click="todrafts">
  117. <image src="../../static/images/icon11.png" mode="aspectFill"></image>
  118. <text>草稿箱</text>
  119. </view>
  120. <view class="tabs-item vflex acenter jcenter" @click="tochangjian">
  121. <image src="../../static/images/icon12.png" mode="aspectFill"></image>
  122. <text>常见问题</text>
  123. </view>
  124. </view>
  125. </view>
  126. <view class="list">
  127. <view class="menu hflex acenter">
  128. <view class="menu-item" :class="active == index ? 'active-item' : ''" v-for="(item,index) in menu"
  129. :key="index" @click="tochangemenu(index)">
  130. <text>{{item.name}}</text>
  131. </view>
  132. </view>
  133. <view v-if="list.length>0 && active == 0">
  134. <list-info :data="item" v-for="(item,index) in list" :key="index" @del="del"></list-info>
  135. </view>
  136. <view v-if="list.length>0 && active > 0">
  137. <list-info :type="menu[active].id" :data="item" v-for="(item,index) in list" :key="index" @del="del"></list-info>
  138. </view>
  139. <view v-if="list.length == 0" class="empty">
  140. <u-empty mode="data"></u-empty>
  141. </view>
  142. </view>
  143. <u-popup :show="show_bg" @close="toclose" mode="bottom" :round="14">
  144. <view class="popu">
  145. <view class="top hflex acenter jbetween">
  146. <text>选择背景图</text>
  147. <text @click="tochangebg">完成</text>
  148. </view>
  149. <view class="bg-list hflex acenter">
  150. <view class="bg-item" v-for="(item,index) in bg_list" :key="index" @click="selectbg(index)">
  151. <image :src="item" mode="aspectFill" class="item-img"></image>
  152. <image src="../../static/images/select.png" mode="aspectFill" class="item-icon"
  153. v-if="bg_active == index"></image>
  154. </view>
  155. </view>
  156. </view>
  157. </u-popup>
  158. </view>
  159. </template>
  160. <script>
  161. import $api from '@/static/js/api.js'
  162. import listInfo from '@/components/list-info/index.vue'
  163. export default {
  164. components: {
  165. listInfo
  166. },
  167. data() {
  168. return {
  169. default_avatar: require('@/static/logo.png'),
  170. default_bg: require('../../static/images/vip_bg.png'),
  171. bg_list: [],
  172. show_bg: false,
  173. bg_active: -1,
  174. user: {},
  175. active: 0,
  176. list: [],
  177. menu: [{
  178. id: 'all',
  179. name: '全部'
  180. },
  181. {
  182. id: 'post',
  183. name: '论坛'
  184. },
  185. {
  186. id: 'video',
  187. name: '视频'
  188. },
  189. {
  190. id: 'article',
  191. name: '文章'
  192. },
  193. {
  194. id: 'info',
  195. name: '资讯'
  196. },
  197. ],
  198. page: 1,
  199. last_page: 1,
  200. is_sign: 0,
  201. }
  202. },
  203. onLoad() {
  204. },
  205. onShow() {
  206. this.getbg()
  207. this.page = 1
  208. this.list = []
  209. this.getuser()
  210. this.getsign()
  211. // this.getlist()
  212. },
  213. onReachBottom() {
  214. if (this.page < this.last_page) {
  215. this.page++
  216. this.getlist()
  217. } else {
  218. uni.$u.toast('已经到底了')
  219. return
  220. }
  221. },
  222. methods: {
  223. getsign() {
  224. var that = this
  225. $api.req({
  226. url: 'sign/is-sign'
  227. }, function(res) {
  228. that.is_sign = res.data
  229. })
  230. },
  231. topaihang(index) {
  232. uni.navigateTo({
  233. url: '/pageC/paihang'
  234. })
  235. },
  236. toqiandao() {
  237. uni.navigateTo({
  238. url: '/pageC/calendar'
  239. })
  240. },
  241. tovip() {
  242. uni.navigateTo({
  243. url: '/pageC/vip'
  244. })
  245. },
  246. tologin() {
  247. uni.navigateTo({
  248. url: '/pages/login/index'
  249. })
  250. },
  251. todrafts() {
  252. uni.navigateTo({
  253. url: '/pageC/drafts'
  254. })
  255. },
  256. toadd() {
  257. uni.navigateTo({
  258. url: '/pageC/zhiwei-list'
  259. })
  260. },
  261. tochangjian() {
  262. uni.navigateTo({
  263. url: '/pageC/changjian-list'
  264. })
  265. },
  266. tozulin() {
  267. uni.navigateTo({
  268. url: '/pageB/zulin'
  269. })
  270. },
  271. toyuyue() {
  272. uni.navigateTo({
  273. url: '/pageB/yuyue-capture'
  274. })
  275. },
  276. toaddress() {
  277. uni.navigateTo({
  278. url: '/pageC/address-list'
  279. })
  280. },
  281. tovideo() {
  282. uni.navigateTo({
  283. url: '/pageC/video-list'
  284. })
  285. },
  286. tozuji() {
  287. uni.navigateTo({
  288. url: '/pageC/zuji-list'
  289. })
  290. },
  291. tojifen() {
  292. uni.navigateTo({
  293. url: '/pageC/jifen-qianbao'
  294. })
  295. },
  296. toyouhui() {
  297. uni.navigateTo({
  298. url: '/pageC/youhuiquan'
  299. })
  300. },
  301. tocollect() {
  302. uni.navigateTo({
  303. url: '/pageC/collect-list'
  304. })
  305. },
  306. toguanzhu(type) {
  307. uni.navigateTo({
  308. url: '/pageC/guanzhu-list?type=' + type
  309. })
  310. },
  311. touserinfo() {
  312. uni.navigateTo({
  313. url: '/pageC/userinfo'
  314. })
  315. },
  316. selectbg(index) {
  317. this.bg_active = index
  318. },
  319. tochangebg() {
  320. this.mine_bg = this.bg_list[this.bg_active]
  321. var _this = this
  322. $api.req({
  323. url: 'user',
  324. method: 'PUT',
  325. data: {
  326. backgroud_image: this.mine_bg
  327. }
  328. }, function(res) {
  329. $api.info(res.msg)
  330. _this.toclose()
  331. setTimeout(() => {
  332. _this.getuser()
  333. }, 1000)
  334. })
  335. },
  336. del(e) {
  337. console.log(e,'---------');
  338. this.page = 1
  339. this.list = []
  340. this.getlist()
  341. },
  342. toclose() {
  343. this.show_bg = false
  344. },
  345. getbg() {
  346. var that = this
  347. $api.req({
  348. url: 'config',
  349. data: {
  350. module: 'user'
  351. }
  352. }, function(res) {
  353. that.bg_list = res.data.backgroud_images
  354. })
  355. },
  356. toinvite() {
  357. uni.navigateTo({
  358. url: '/pageC/invite'
  359. })
  360. },
  361. getlist() {
  362. var that = this
  363. $api.req({
  364. url: 'summary',
  365. data: {
  366. page: that.page,
  367. limit: 10,
  368. is_page: 1,
  369. type: that.active == 0 ? 'all' : 'single',
  370. source_type: that.menu[that.active].id,
  371. author_id: that.user.id
  372. }
  373. }, function(res) {
  374. that.list = that.list.concat(res.data.list)
  375. that.last_page = res.data.last_page
  376. })
  377. },
  378. tochangemenu(index) {
  379. this.active = index
  380. this.page = 1
  381. this.list = []
  382. this.getlist()
  383. },
  384. tosetting() {
  385. uni.navigateTo({
  386. url: '/pageC/setting'
  387. })
  388. },
  389. getuser() {
  390. var _this = this
  391. $api.req({
  392. url: 'user/info',
  393. method: 'GET'
  394. }, function(res) {
  395. if (res.code == 10000) {
  396. _this.user = res.data
  397. _this.getlist()
  398. }
  399. })
  400. },
  401. }
  402. }
  403. </script>
  404. <style lang="scss">
  405. .content::v-deep {
  406. background: unset;
  407. .popu {
  408. background: #FFFFFF;
  409. border-radius: 28rpx 28rpx 0rpx 0rpx;
  410. padding: 38rpx 28rpx;
  411. .top {
  412. width: 100%;
  413. text:first-child {
  414. font-size: 36rpx;
  415. font-family: PingFangSC, PingFang SC;
  416. font-weight: 600;
  417. color: #333333;
  418. }
  419. text:last-child {
  420. font-size: 32rpx;
  421. font-family: PingFangSC, PingFang SC;
  422. font-weight: 400;
  423. color: #333333;
  424. }
  425. }
  426. .bg-list {
  427. width: 100%;
  428. overflow: auto;
  429. margin: 36rpx 0 0;
  430. .bg-item {
  431. width: 248rpx;
  432. height: 248rpx;
  433. margin: 0 10rpx 0 0;
  434. position: relative;
  435. .item-img {
  436. width: 248rpx;
  437. height: 100%;
  438. }
  439. .item-icon {
  440. position: absolute;
  441. width: 32rpx;
  442. height: 32rpx;
  443. top: 12rpx;
  444. right: 12rpx;
  445. }
  446. }
  447. }
  448. }
  449. .list {
  450. width: 100%;
  451. background: #F4F4F4;
  452. padding: 20rpx 0;
  453. .menu {
  454. background: #fff;
  455. box-sizing: border-box;
  456. padding: 28rpx;
  457. .menu-item {
  458. width: 96rpx;
  459. height: 56rpx;
  460. background: #E9E9E9;
  461. border-radius: 36rpx;
  462. margin: 0 20rpx 0 0;
  463. text-align: center;
  464. text {
  465. font-size: 26rpx;
  466. font-family: PingFangSC, PingFang SC;
  467. font-weight: 500;
  468. color: #444444;
  469. line-height: 56rpx;
  470. }
  471. }
  472. .active-item {
  473. background: #00B0B0;
  474. text {
  475. color: #FFFFFF !important;
  476. }
  477. }
  478. }
  479. .empty {
  480. background: #FFF;
  481. padding: 40rpx 0;
  482. }
  483. }
  484. .box {
  485. // margin: 30rpx 0 0;
  486. box-sizing: border-box;
  487. padding: 28rpx;
  488. width: 100%;
  489. background: #FFFFFF;
  490. border-radius: 28rpx 28rpx 0rpx 0rpx;
  491. .vip {
  492. width: 694rpx;
  493. height: 148rpx;
  494. background: url('../../static/images/vip_bg.png') no-repeat;
  495. background-size: 100%;
  496. border-radius: 20rpx;
  497. box-sizing: border-box;
  498. padding: 20rpx;
  499. .left {
  500. height: 100%;
  501. image {
  502. width: 60rpx;
  503. height: 60rpx;
  504. }
  505. .vip-text {
  506. font-size: 32rpx;
  507. font-family: PingFangSC, PingFang SC;
  508. font-weight: 600;
  509. color: #FFFFFF;
  510. padding: 0 10rpx 0 16rpx;
  511. }
  512. .vip-time {
  513. font-size: 20rpx;
  514. font-family: SFPro, SFPro;
  515. font-weight: 400;
  516. color: #FFFFFF;
  517. padding-top: 10rpx;
  518. }
  519. text {
  520. font-size: 22rpx;
  521. font-family: PingFangSC, PingFang SC;
  522. font-weight: 400;
  523. color: #999999;
  524. }
  525. }
  526. .btn {
  527. width: 144rpx;
  528. height: 60rpx;
  529. background: linear-gradient(270deg, #FFE5D0 0%, #C5A899 100%);
  530. border-radius: 30rpx;
  531. text-align: center;
  532. font-size: 24rpx;
  533. font-family: PingFangSC, PingFang SC;
  534. font-weight: 500;
  535. color: #222222;
  536. line-height: 60rpx;
  537. }
  538. }
  539. .tabs {
  540. .tabs-item {
  541. margin: 48rpx 100rpx 0 0;
  542. image {
  543. width: 44rpx;
  544. height: 44rpx;
  545. margin: 0 0 12rpx;
  546. }
  547. text {
  548. font-size: 24rpx;
  549. font-family: PingFangSC, PingFang SC;
  550. font-weight: 400;
  551. color: #222222;
  552. }
  553. }
  554. .tabs-item:nth-child(4n+4) {
  555. margin: 48rpx 0 0;
  556. }
  557. }
  558. }
  559. .top_bg {
  560. width: 100%;
  561. // height: ;
  562. background: rgba(0, 0, 0, 0.5);
  563. position: relative;
  564. .bg-click {
  565. position: absolute;
  566. top: 0;
  567. left: 0;
  568. height: 500rpx;
  569. width: 100%;
  570. background: rgba(0, 0, 0, 0);
  571. // z-index: -1;
  572. }
  573. .bg_img {
  574. position: absolute;
  575. top: 0;
  576. left: 0;
  577. height: 596rpx;
  578. width: 100%;
  579. z-index: -1;
  580. }
  581. .u-navbar {
  582. height: 88rpx;
  583. width: 100%;
  584. image {
  585. width: 44rpx;
  586. height: 44rpx;
  587. }
  588. }
  589. .user {
  590. width: 100%;
  591. box-sizing: border-box;
  592. padding: 56rpx 24rpx;
  593. .user-top {
  594. .name {
  595. position: relative;
  596. text:first-child {
  597. font-size: 44rpx;
  598. font-family: PingFangSC, PingFang SC;
  599. font-weight: 500;
  600. color: #FFFFFF;
  601. }
  602. text:last-child {
  603. font-size: 20rpx;
  604. font-family: Silom;
  605. color: #FFFFFF;
  606. margin: 0 12rpx 8rpx 18rpx;
  607. padding: 2rpx 8rpx;
  608. background: url('../../static/images/level-bg.png') no-repeat;
  609. background-size: 100% 100%;
  610. }
  611. image {
  612. width: 40rpx;
  613. height: 40rpx;
  614. }
  615. }
  616. .user-avatar {
  617. width: 104rpx;
  618. height: 104rpx;
  619. border-radius: 50%;
  620. }
  621. }
  622. .imgs {
  623. image {
  624. width: 36rpx;
  625. height: 36rpx;
  626. padding-right: 10rpx;
  627. }
  628. }
  629. .intro {
  630. padding: 32rpx 0;
  631. font-size: 24rpx;
  632. font-family: PingFangSC, PingFang SC;
  633. font-weight: 400;
  634. color: rgba(255, 255, 255, .7);
  635. }
  636. .user-bottom {
  637. .bottom-left {
  638. position: relative;
  639. .bottom-item {
  640. padding: 0 44rpx 0 0;
  641. text:first-child {
  642. font-size: 32rpx;
  643. font-family: JDZhengHT, JDZhengHT;
  644. font-weight: 400;
  645. color: #FFFFFF;
  646. line-height: 40rpx;
  647. letter-spacing: 1px;
  648. padding: 0 0 12rpx;
  649. }
  650. text:last-child {
  651. font-size: 20rpx;
  652. font-family: PingFangSC, PingFang SC;
  653. font-weight: 400;
  654. color: #FFFFFF;
  655. line-height: 28rpx;
  656. }
  657. }
  658. }
  659. .bottom-right {
  660. position: relative;
  661. padding: 6rpx 20rpx;
  662. background: rgba(255, 255, 255, 0.1);
  663. border-radius: 22rpx;
  664. text-align: center;
  665. .sign {
  666. position: absolute;
  667. top: -44rpx;
  668. left: 20rpx;
  669. width: 128rpx;
  670. height: 48rpx;
  671. }
  672. .text {
  673. font-size: 22rpx;
  674. font-weight: 400;
  675. color: #FFFFFF;
  676. }
  677. }
  678. }
  679. }
  680. }
  681. }
  682. </style>