index.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  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/13@2x.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. </view>
  88. </template>
  89. <script>
  90. export default {
  91. data() {
  92. return {
  93. info: {},
  94. banner: [],
  95. notice: {},
  96. video: [],
  97. member: [],
  98. article: [],
  99. list: [{
  100. img: '/static/index/4@2x.png',
  101. name: '注册会员',
  102. path: '/pages/index/registerVip',
  103. isWhite: true
  104. },
  105. {
  106. img: '/static/index/5@2x.png',
  107. name: '认证会员',
  108. path: '/pages/index/renzhengVip',
  109. isWhite: true
  110. },
  111. {
  112. img: '/static/index/6@2x.png',
  113. name: '智能匹配',
  114. path: '/pages/index/pipei',
  115. isWhite: false
  116. },
  117. {
  118. img: '/static/index/7@2x.png',
  119. name: '推荐分享',
  120. path: '/pages/index/recommend',
  121. isWhite: true
  122. },
  123. {
  124. img: '/static/index/9@2x.png',
  125. name: '消息中心',
  126. path: '/pages/index/message',
  127. isWhite: false
  128. },
  129. {
  130. img: '/static/index/8@2x.png',
  131. name: '我要举报',
  132. path: '/pages/index/indexjubao',
  133. isWhite: false
  134. },
  135. {
  136. img: '/static/index/10@2x.png',
  137. name: '入会攻略',
  138. path: '/pages/index/gonglue',
  139. isWhite: true
  140. },
  141. {
  142. img: '/static/index/11@2x.png',
  143. name: '情感咨询',
  144. path: '/pages/index/zixun',
  145. isWhite: true
  146. }
  147. ]
  148. }
  149. },
  150. onPullDownRefresh() {
  151. this.getInfo()
  152. this.getNotice()
  153. this.getBanner()
  154. setTimeout(function() {
  155. uni.stopPullDownRefresh();
  156. }, 1000);
  157. },
  158. onLoad() {
  159. this.getNotice()
  160. this.getBanner()
  161. },
  162. onShow() {
  163. if (!uni.getStorageSync('token')) {
  164. uni.reLaunch({
  165. url: '../profile/login'
  166. })
  167. } else {
  168. this.getInfo()
  169. }
  170. },
  171. methods: {
  172. getBanner() {
  173. uni.$u.http.post('/api/index/banner').then(res => {
  174. if (res.code == 1) {
  175. this.banner = res.data
  176. }
  177. })
  178. },
  179. getInfo() {
  180. uni.$u.http.post('/api/user/userinfo').then(res => {
  181. if (res.code == 1) {
  182. this.info = res.data
  183. uni.setStorageSync('userId', res.data.id)
  184. uni.setStorageSync('userInfo', JSON.stringify(res.data))
  185. }
  186. })
  187. },
  188. torecommendinfo(item) {
  189. uni.navigateTo({
  190. url: '../profile/otherPage?id=' + item.id
  191. })
  192. },
  193. toVideoInfo(item) {
  194. uni.navigateTo({
  195. url: './videoInfo?item=' + JSON.stringify(item)
  196. })
  197. },
  198. getNotice() {
  199. uni.$u.http.post('/api/Index/notice').then(res => {
  200. this.notice = res.data.notice
  201. this.video = res.data.video
  202. this.member = res.data.member
  203. this.article = res.data.article
  204. })
  205. },
  206. toinfo(item) {
  207. uni.navigateTo({
  208. url: './talkInfo?id=' + item.id
  209. })
  210. },
  211. tomore() {
  212. uni.navigateTo({
  213. url: './talkLove'
  214. })
  215. },
  216. tolist() {
  217. uni.navigateTo({
  218. url: './videoList'
  219. })
  220. },
  221. toitem(item) {
  222. if (item.isWhite) {
  223. uni.navigateTo({
  224. url: item.path
  225. })
  226. } else {
  227. if (this.info.vip_level == 0) {
  228. this.$u.toast('您暂未认证')
  229. return
  230. }
  231. if (this.info.vip_level == 2) {
  232. this.$u.toast('经用户反馈,您账户存在违规行为,暂不支持使用该功能')
  233. return
  234. }
  235. if (this.info.vip_level == 3) {
  236. this.$u.toast('您的账户已注销,暂不支持使用该功能')
  237. return
  238. }
  239. uni.navigateTo({
  240. url: item.path
  241. })
  242. }
  243. }
  244. }
  245. }
  246. </script>
  247. <style lang="scss">
  248. .home {
  249. padding: 0 30rpx 20rpx;
  250. }
  251. .videoModule {
  252. width: 690rpx;
  253. margin: 28rpx 0;
  254. .talkList {
  255. box-sizing: border-box;
  256. margin: 18rpx auto 0;
  257. width: 690rpx;
  258. background: #FFFFFF;
  259. border-radius: 28rpx;
  260. padding: 0 20rpx;
  261. .talkItem {
  262. padding: 20rpx 0;
  263. border-bottom: 2rpx solid #F3F3F3;
  264. image {
  265. width: 220rpx;
  266. height: 148rpx;
  267. border-radius: 16rpx;
  268. }
  269. .talkRight {
  270. width: 402rpx;
  271. margin-left: 20rpx;
  272. .talkTitle {
  273. color: #222222;
  274. font-size: 32rpx;
  275. }
  276. .talkInfo {
  277. overflow: hidden;
  278. white-space: nowrap;
  279. text-overflow: ellipsis;
  280. margin-top: 10rpx;
  281. color: #666666;
  282. font-size: 24rpx;
  283. }
  284. }
  285. }
  286. }
  287. .videoTitle {
  288. width: 690rpx;
  289. image {
  290. width: 134rpx;
  291. height: 50rpx;
  292. }
  293. .lookMore {
  294. font-size: 28rpx;
  295. color: #666666;
  296. }
  297. }
  298. .videoContent {
  299. margin-top: 22rpx;
  300. .videoItem {
  301. position: relative;
  302. width: 220rpx;
  303. // height: 280rpx;
  304. background: #FFFFFF;
  305. border-radius: 16rpx;
  306. image {
  307. border-radius: 16rpx;
  308. width: 220rpx;
  309. height: 180rpx;
  310. }
  311. .name {
  312. height: 92rpx;
  313. box-sizing: border-box;
  314. width: 220rpx;
  315. padding: 10rpx 14rpx 18rpx 14rpx;
  316. text-align: left;
  317. font-size: 24rpx;
  318. color: #222222;
  319. font-weight: 400;
  320. }
  321. .time {
  322. position: absolute;
  323. top: 140rpx;
  324. right: 12rpx;
  325. color: #fff;
  326. width: 64rpx;
  327. height: 28rpx;
  328. line-height: 28rpx;
  329. text-align: center;
  330. font-size: 20rpx;
  331. background: rgba(0, 0, 0, 0.4000);
  332. border-radius: 16rpx;
  333. z-index: 1;
  334. }
  335. }
  336. }
  337. }
  338. .recommend {
  339. width: 690rpx;
  340. margin: 28rpx 0;
  341. .recommendImg {
  342. margin-bottom: 22rpx;
  343. image {
  344. width: 134rpx;
  345. height: 50rpx;
  346. }
  347. }
  348. .recommendContent {
  349. flex-wrap: wrap;
  350. .recommendItem {
  351. margin-right: 15rpx;
  352. width: 220rpx;
  353. height: 304rpx;
  354. background: #FFFFFF;
  355. border-radius: 16rpx;
  356. image {
  357. border-radius: 16rpx;
  358. width: 220rpx;
  359. height: 240rpx;
  360. }
  361. .name {
  362. width: 100%;
  363. padding-left: 50rpx;
  364. text-align: left;
  365. line-height: 64rpx;
  366. font-size: 26rpx;
  367. color: #222222;
  368. font-weight: 600;
  369. margin-right: 8rpx;
  370. image {
  371. margin-bottom: 7rpx;
  372. margin-left: 8rpx;
  373. width: 28rpx;
  374. height: 28rpx;
  375. vertical-align: middle;
  376. }
  377. }
  378. }
  379. .recommendItem:nth-child(3n) {
  380. margin-right: 0;
  381. }
  382. }
  383. }
  384. .list {
  385. margin: 0 0 28rpx;
  386. width: 690rpx;
  387. height: 372rpx;
  388. background: #FFFFFF;
  389. border-radius: 28rpx;
  390. font-size: 24rpx;
  391. color: #000000;
  392. image {
  393. margin-bottom: 16rpx;
  394. width: 80rpx;
  395. height: 80rpx;
  396. }
  397. }
  398. .swiper-item {
  399. border-radius: 28rpx;
  400. overflow: hidden;
  401. width: 690rpx;
  402. height: 280rpx;
  403. image {
  404. width: 690rpx;
  405. height: 280rpx;
  406. }
  407. }
  408. .swiperDom {
  409. margin: 40rpx 0 20rpx;
  410. }
  411. page {
  412. // background-color: #F6F2FD;
  413. }
  414. .top {
  415. padding-top: 44rpx;
  416. padding-left: 30rpx;
  417. image {
  418. width: 102rpx;
  419. height: 60rpx;
  420. }
  421. }
  422. </style>