index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555
  1. <template>
  2. <view class="index">
  3. <image src="../../static/bg.png" mode="" class="bg"></image>
  4. <view class="top">
  5. <image src="../../static/index/15@2x.png" mode=""></image>
  6. </view>
  7. <view class="home">
  8. <view class="swiperDom">
  9. <swiper :autoplay="true" :interval="3000" :duration="1000">
  10. <swiper-item v-for="(item,index) in banner" :key="index">
  11. <view class="swiper-item">
  12. <image :src="item.show_image" mode=""></image>
  13. </view>
  14. </swiper-item>
  15. </swiper>
  16. </view>
  17. <view class=""
  18. style="border-radius: 20rpx;box-shadow: 0px 2px 12px 4px rgba(0,0,0,0.04);overflow: hidden;margin: 0 0 20rpx 0;width: 690rpx;">
  19. <u-notice-bar :text="notice.title" color="#777777" bgColor="#fff" url="/pages/auth/auth"></u-notice-bar>
  20. </view>
  21. <view class="list u-flex u-row-between u-warp">
  22. <view class="u-flex-col u-col-center" style="flex: 25%;" v-for="(item,index) in list"
  23. @click="toitem(item)" :key="index">
  24. <image :src="item.img" mode=""></image>
  25. <text>{{item.name}}</text>
  26. </view>
  27. </view>
  28. <view class="recommend">
  29. <view class="recommendImg">
  30. <image src="../../static/index/14@2x.png" mode=""></image>
  31. </view>
  32. <view class="recommendContent u-flex">
  33. <view class="recommendItem u-flex-col" v-for="(item,index) in member" :key="index"
  34. @click="torecommendinfo(item)">
  35. <image :src="item.headimg" mode=""></image>
  36. <view class="name">
  37. <text>{{item.nickname}}</text>
  38. <image src="../../static/index/1@2x.png" mode="" v-show="item.sex==2"></image>
  39. <image src="../../static/index/2@2x.png" mode="" v-show="item.sex==1"></image>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. <!-- <view class="videoModule">
  45. <view class="videoTitle u-flex u-row-between">
  46. <image src="../../static/index/12@2x.png" mode=""></image>
  47. <view class="lookMore u-flex" @click="tolist">
  48. <text>查看更多</text>
  49. <u-icon name="arrow-right" color="#666666"></u-icon>
  50. </view>
  51. </view>
  52. <view class="videoContent u-flex u-row-between">
  53. <view class="videoItem u-flex-col" v-for="(item,index) in video" :key="index"
  54. @click="toVideoInfo(item)">
  55. <view class="time">{{item.video_time}}</view>
  56. <image :src="item.show_image" mode=""></image>
  57. <view class="name">
  58. {{item.title}}
  59. </view>
  60. </view>
  61. </view>
  62. </view> -->
  63. <view class="videoModule">
  64. <view class="videoTitle u-flex u-row-between">
  65. <image src="../../static/index/17.png" mode=""></image>
  66. <view class="lookMore u-flex" @click="tomore">
  67. <text>查看更多</text>
  68. <u-icon name="arrow-right" color="#666666"></u-icon>
  69. </view>
  70. </view>
  71. <view class="talkList">
  72. <view class="talkItem u-flex u-row-between" v-for="(item,index) in article" :key="index"
  73. @click="toinfo(item)">
  74. <image :src="item.show_image" mode=""></image>
  75. <view class="talkRight">
  76. <view class="talkTitle">
  77. {{item.title}}
  78. </view>
  79. <view class="talkInfo">
  80. {{item.subtitle}}
  81. </view>
  82. </view>
  83. </view>
  84. </view>
  85. </view>
  86. </view>
  87. <Showtoast @canceltoast='canceltoast' :showtoast='showtoast' />
  88. </view>
  89. </template>
  90. <script>
  91. import Showtoast from '../../components/Showtoast.vue'
  92. export default {
  93. components: {
  94. Showtoast
  95. },
  96. data() {
  97. return {
  98. is_login:false,
  99. is_info: null,
  100. showtoast: false,
  101. info: {},
  102. banner: [],
  103. notice: {},
  104. video: [],
  105. member: [],
  106. article: [],
  107. list: [{
  108. img: '/static/index/4@2x.png',
  109. name: '注册会员',
  110. path: '/pages/index/registerVip',
  111. isWhite: true
  112. },
  113. {
  114. img: '/static/index/5@2x.png',
  115. name: '认证会员',
  116. path: '/pages/index/renzhengVip',
  117. isWhite: true
  118. },
  119. {
  120. img: '/static/index/6@2x.png',
  121. name: '智能匹配',
  122. path: '/pages/index/pipei',
  123. isWhite: false
  124. },
  125. {
  126. img: '/static/index/7@2x.png',
  127. name: '推荐分享',
  128. path: '/pages/index/recommend',
  129. isWhite: true
  130. },
  131. {
  132. img: '/static/index/9@2x.png',
  133. name: '消息中心',
  134. path: '/pages/index/message',
  135. isWhite: false
  136. },
  137. {
  138. img: '/static/index/16@2x.png',
  139. name: '喜上加喜',
  140. path: '/pages/index/twoHappy',
  141. isWhite: false
  142. },
  143. {
  144. img: '/static/index/10@2x.png',
  145. name: '入会攻略',
  146. path: '/pages/index/gonglue',
  147. isWhite: true
  148. },
  149. {
  150. img: '/static/index/11@2x.png',
  151. name: '情感咨询',
  152. path: '/pages/index/zixun',
  153. isWhite: true
  154. }
  155. ]
  156. }
  157. },
  158. onPullDownRefresh() {
  159. this.getInfo()
  160. this.getNotice()
  161. this.getBanner()
  162. this.getArticle()
  163. setTimeout(function() {
  164. uni.stopPullDownRefresh();
  165. }, 1000);
  166. },
  167. onLoad() {
  168. this.getBanner()
  169. this.getArticle()
  170. },
  171. onShow() {
  172. if (!uni.getStorageSync('token')) {
  173. this.is_login=false
  174. // uni.reLaunch({
  175. // url: '../profile/login'
  176. // })
  177. } else {
  178. this.is_login=true
  179. this.getNotice()
  180. this.getInfo()
  181. }
  182. },
  183. methods: {
  184. toLogin(){
  185. if (!uni.getStorageSync('token')) {
  186. uni.navigateTo({
  187. url:'/pages/profile/login'
  188. })
  189. }
  190. },
  191. canceltoast() {
  192. this.showtoast = false
  193. },
  194. torenzheng() {
  195. uni.switchTab({
  196. url: '../auth/auth'
  197. })
  198. },
  199. getBanner() {
  200. uni.$u.http.post('/api/index/banner').then(res => {
  201. if (res.code == 1) {
  202. this.banner = res.data
  203. }
  204. })
  205. },
  206. tozhuce() {
  207. uni.navigateTo({
  208. url: './base'
  209. })
  210. },
  211. getInfo() {
  212. uni.$u.http.post('/api/user/userinfo').then(res => {
  213. if (res.code == 1) {
  214. if (res.data.vip_level == 2) {
  215. uni.reLaunch({
  216. url: './base1'
  217. })
  218. return
  219. }
  220. this.is_info = res.data.is_info
  221. uni.setStorageSync('is_info',res.data.is_info)
  222. // if(res.data.is_info!=2){
  223. // uni.reLaunch({
  224. // url:'./base'
  225. // })
  226. // return
  227. // }
  228. this.info = res.data
  229. uni.setStorageSync('userId', res.data.id)
  230. uni.setStorageSync('userInfo', JSON.stringify(res.data))
  231. }
  232. })
  233. },
  234. torecommendinfo(item) {
  235. if(!this.is_login){
  236. this.toLogin()
  237. return
  238. }
  239. if (this.is_info != 2) {
  240. this.tozhuce()
  241. return
  242. }
  243. uni.navigateTo({
  244. url: '../profile/otherPage?id=' + item.id
  245. })
  246. },
  247. toVideoInfo(item) {
  248. uni.navigateTo({
  249. url: './videoInfo?item=' + JSON.stringify(item)
  250. })
  251. },
  252. getNotice() {
  253. uni.$u.http.post('/api/Index/notice').then(res => {
  254. this.notice = res.data.notice
  255. this.video = res.data.video
  256. this.member = res.data.member
  257. // this.article = res.data.article
  258. })
  259. },
  260. getArticle() {
  261. uni.$u.http.post('/api/Index/articlelist', {
  262. page: 1
  263. }).then(res => {
  264. this.article = res.data.data
  265. })
  266. },
  267. toinfo(item) {
  268. if(!this.is_login){
  269. this.toLogin()
  270. return
  271. }
  272. if (this.is_info != 2) {
  273. this.tozhuce()
  274. return
  275. }
  276. if (item.type == 1) {
  277. uni.navigateTo({
  278. url: './talkInfo?id=' + item.id
  279. })
  280. } else {
  281. uni.navigateTo({
  282. url: './videoInfo?id=' + item.id
  283. })
  284. }
  285. },
  286. tomore() {
  287. if(!this.is_login){
  288. this.toLogin()
  289. return
  290. }
  291. if (this.is_info != 2) {
  292. this.tozhuce()
  293. return
  294. }
  295. uni.navigateTo({
  296. url: './talkLove'
  297. })
  298. },
  299. tolist() {
  300. uni.navigateTo({
  301. url: './videoList'
  302. })
  303. },
  304. toitem(item) {
  305. if(!this.is_login){
  306. this.toLogin()
  307. return
  308. }
  309. if (this.is_info != 2) {
  310. this.tozhuce()
  311. return
  312. }
  313. if (item.isWhite || this.info.vip_level == 1) {
  314. uni.navigateTo({
  315. url: item.path
  316. })
  317. } else {
  318. if (this.info.vip_level == 0) {
  319. // this.$u.toast('您暂未认证')
  320. // return
  321. this.showtoast = true
  322. }
  323. if (this.info.vip_level == 2) {
  324. this.$u.toast('经用户反馈,您账户存在违规行为,暂不支持使用该功能')
  325. return
  326. }
  327. if (this.info.vip_level == 3) {
  328. this.$u.toast('您的账户已注销,暂不支持使用该功能')
  329. return
  330. }
  331. // uni.navigateTo({
  332. // url: item.path
  333. // })
  334. }
  335. }
  336. }
  337. }
  338. </script>
  339. <style lang="scss">
  340. .home {
  341. padding: 0 30rpx 20rpx;
  342. }
  343. .videoModule {
  344. width: 690rpx;
  345. margin: 28rpx 0;
  346. .talkList {
  347. box-sizing: border-box;
  348. margin: 18rpx auto 0;
  349. width: 690rpx;
  350. background: #FFFFFF;
  351. border-radius: 28rpx;
  352. padding: 0 20rpx;
  353. .talkItem {
  354. padding: 20rpx 0;
  355. border-bottom: 2rpx solid #F3F3F3;
  356. image {
  357. width: 220rpx;
  358. height: 148rpx;
  359. border-radius: 16rpx;
  360. }
  361. .talkRight {
  362. width: 402rpx;
  363. margin-left: 20rpx;
  364. .talkTitle {
  365. color: #222222;
  366. font-size: 32rpx;
  367. }
  368. .talkInfo {
  369. overflow: hidden;
  370. white-space: nowrap;
  371. text-overflow: ellipsis;
  372. margin-top: 10rpx;
  373. color: #666666;
  374. font-size: 24rpx;
  375. }
  376. }
  377. }
  378. }
  379. .videoTitle {
  380. width: 690rpx;
  381. image {
  382. width: 166rpx;
  383. height: 50rpx;
  384. }
  385. .lookMore {
  386. font-size: 28rpx;
  387. color: #666666;
  388. }
  389. }
  390. .videoContent {
  391. margin-top: 22rpx;
  392. .videoItem {
  393. position: relative;
  394. width: 220rpx;
  395. // height: 280rpx;
  396. background: #FFFFFF;
  397. border-radius: 16rpx;
  398. image {
  399. border-radius: 16rpx;
  400. width: 220rpx;
  401. height: 180rpx;
  402. }
  403. .name {
  404. height: 92rpx;
  405. box-sizing: border-box;
  406. width: 220rpx;
  407. padding: 10rpx 14rpx 18rpx 14rpx;
  408. text-align: left;
  409. font-size: 24rpx;
  410. color: #222222;
  411. font-weight: 400;
  412. }
  413. .time {
  414. position: absolute;
  415. top: 140rpx;
  416. right: 12rpx;
  417. color: #fff;
  418. width: 64rpx;
  419. height: 28rpx;
  420. line-height: 28rpx;
  421. text-align: center;
  422. font-size: 20rpx;
  423. background: rgba(0, 0, 0, 0.4000);
  424. border-radius: 16rpx;
  425. z-index: 1;
  426. }
  427. }
  428. }
  429. }
  430. .recommend {
  431. width: 690rpx;
  432. margin: 28rpx 0;
  433. .recommendImg {
  434. margin-bottom: 22rpx;
  435. image {
  436. width: 134rpx;
  437. height: 50rpx;
  438. }
  439. }
  440. .recommendContent {
  441. flex-wrap: wrap;
  442. .recommendItem {
  443. margin-right: 15rpx;
  444. width: 220rpx;
  445. height: 304rpx;
  446. background: #FFFFFF;
  447. border-radius: 16rpx;
  448. image {
  449. border-radius: 16rpx;
  450. width: 220rpx;
  451. height: 240rpx;
  452. }
  453. .name {
  454. width: 100%;
  455. padding-left: 50rpx;
  456. text-align: left;
  457. line-height: 64rpx;
  458. font-size: 26rpx;
  459. color: #222222;
  460. font-weight: 600;
  461. margin-right: 8rpx;
  462. image {
  463. margin-bottom: 7rpx;
  464. margin-left: 8rpx;
  465. width: 28rpx;
  466. height: 28rpx;
  467. vertical-align: middle;
  468. }
  469. }
  470. }
  471. .recommendItem:nth-child(3n) {
  472. margin-right: 0;
  473. }
  474. }
  475. }
  476. .list {
  477. margin: 0 0 28rpx;
  478. width: 690rpx;
  479. height: 372rpx;
  480. background: #FFFFFF;
  481. border-radius: 28rpx;
  482. font-size: 24rpx;
  483. color: #000000;
  484. image {
  485. margin-bottom: 16rpx;
  486. width: 80rpx;
  487. height: 80rpx;
  488. }
  489. }
  490. .swiper-item {
  491. border-radius: 28rpx;
  492. overflow: hidden;
  493. width: 690rpx;
  494. height: 280rpx;
  495. image {
  496. width: 690rpx;
  497. height: 280rpx;
  498. }
  499. }
  500. .swiperDom {
  501. margin: 40rpx 0 20rpx;
  502. }
  503. page {
  504. // background-color: #F6F2FD;
  505. }
  506. .top {
  507. padding-top: 44rpx;
  508. padding-left: 30rpx;
  509. image {
  510. width: 102rpx;
  511. height: 60rpx;
  512. }
  513. }
  514. </style>