index.vue 13 KB

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