index.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. <template>
  2. <view class="content">
  3. <view class="content_top">
  4. <u-navbar leftText="" height="44px" bgColor="rgb(255,255,255,0)" :placeholder="true">
  5. <view class="navbar_left hflex acenter" slot="left">
  6. <image src="../../../static/images/index/logo.png" style="width: 160rpx;height: 60rpx;"></image>
  7. <view class="dian"></view>
  8. <view class="text_style1">{{weather}}</view>
  9. </view>
  10. </u-navbar>
  11. <view class="search hflex acenter">
  12. <view class="hflex acenter" @click="changeCity">
  13. <view class="city">{{city}}</view>
  14. <u-icon name="arrow-down-fill" color="#000" size="10"></u-icon>
  15. </view>
  16. <u-input v-model="serach_value" type="text" :border="true" placeholder="搜索关键词" shape="circle"
  17. prefixIcon="search" prefixIconStyle="font-size: 22px;color: #909399">
  18. </u-input>
  19. </view>
  20. </view>
  21. <view class="swiper">
  22. <u-swiper :list="bannerList" radius="20rpx" @click="toBanner"></u-swiper>
  23. </view>
  24. <view class="notice hflex acenter jbetween">
  25. <!-- <view class="notice_left">公告</view> -->
  26. <u-notice-bar :text="notice_text" direction="column" icon="公告" color="#7a7b7c" bgColor="#f3f7ff"></u-notice-bar>
  27. <view class="hflex acenter" @click="toNotice">
  28. <view class="text1">更多</view>
  29. <u-icon name="arrow-right" color="#bebebf" size="14"></u-icon>
  30. </view>
  31. </view>
  32. <view class="boxs hflex acenter jbetween">
  33. <image :src="class_img1" mode="widthFix" style="width: 336rpx;"></image>
  34. <image :src="class_img2" mode="widthFix" style="width: 336rpx;"></image>
  35. </view>
  36. <view class="boxs hflex acenter jbetween">
  37. <image :src="class_img3" mode="widthFix" style="width: 220rpx;"></image>
  38. <image :src="class_img4" mode="widthFix" style="width: 220rpx;"></image>
  39. <image :src="class_img5" mode="widthFix" style="width: 220rpx;"></image>
  40. </view>
  41. <view class="boxs">
  42. <u-tabs :list="tabs" @click="changeTaaba"
  43. :activeStyle="{
  44. color: '#000',
  45. }" :inactiveStyle="{
  46. color: '#888888'
  47. }"></u-tabs>
  48. </view>
  49. <view class="boxs">
  50. <block v-for="(item,index) in pageList" :key="index">
  51. <news-module :title="item.title" :imgs="item.imgs" :type="item.type" :client="item.client" :comment="item.comment"></news-module>
  52. </block>
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. import $api from '@/static/js/api.js'
  58. var that = ''
  59. export default {
  60. data() {
  61. return {
  62. title: 'Hello',
  63. weather: '',
  64. city: '北京',
  65. serach_value: '',
  66. bannerList: [
  67. "/static/images/index/class_img1.png",
  68. "/static/images/index/class_img1.png"
  69. ],
  70. notice_text: [
  71. '找工作有妙招,这里看过来~',
  72. '浔阳江头夜送客'
  73. ],
  74. class_img1: '/static/images/index/class_img1.png',
  75. class_img2: '/static/images/index/class_img2.png',
  76. class_img3: '/static/images/index/class_img3.png',
  77. class_img4: '/static/images/index/class_img3.png',
  78. class_img5: '/static/images/index/class_img3.png',
  79. tabs: [
  80. {
  81. name: '推荐',
  82. },
  83. {
  84. name: '发现',
  85. },
  86. {
  87. name: '资讯',
  88. },
  89. {
  90. name: '实时',
  91. },
  92. {
  93. name: '娱乐',
  94. },
  95. {
  96. name: '美食',
  97. }
  98. ],
  99. pageList: [
  100. {
  101. title: '2022年上半年十部好剧,《开端》第7名,《人世间》第4名,值得观看',
  102. imgs: [
  103. "/static/images/index/class_img1.png",
  104. "/static/images/index/class_img1.png",
  105. "/static/images/index/class_img1.png"
  106. ],
  107. type: '资讯',
  108. client: '澎湃新闻客户端',
  109. commnet: 77
  110. }
  111. ]
  112. }
  113. },
  114. onLoad() {
  115. that = this
  116. this.getCity()
  117. },
  118. methods: {
  119. // 获取当前位置
  120. getCity() {
  121. console.log("当前接口需要申请")
  122. uni.authorize({
  123. scope: 'scope.userLocation',
  124. success() {
  125. uni.getLocation({
  126. type: "wgs84",
  127. success:function(res){
  128. console.log("当前位置:",res);
  129. }
  130. })
  131. }
  132. })
  133. },
  134. changeCity() {
  135. // console.log("城市");
  136. $api.jump('/page_index/pages/index/changeCity?city=' + this.city)
  137. },
  138. // 轮播图跳转
  139. toBanner(e) {
  140. console.log("点击轮播",e);
  141. },
  142. // 公告列表
  143. toNotice() {
  144. $api.jump('/page_index/pages/index/noticeList')
  145. },
  146. }
  147. }
  148. </script>
  149. <style lang="scss" scoped>
  150. .content::v-deep {
  151. // padding: 0 30rpx;
  152. background: #fff;
  153. .content_top {
  154. background: url('../../../static/images/index/bg.png') no-repeat;
  155. background-size: 100%;
  156. box-sizing: border-box;
  157. padding: 0 30rpx;
  158. .navbar_left {
  159. .dian {
  160. width: 8rpx;
  161. height: 8rpx;
  162. background: #232323;
  163. border-radius: 50%;
  164. margin: 0 6rpx 0 12rpx;
  165. }
  166. }
  167. .search {
  168. width: 100%;
  169. box-sizing: border-box;
  170. padding: 20rpx;
  171. margin-top: 36rpx;
  172. .city {
  173. color: #222222;
  174. font-size: 32rpx;
  175. margin-right: 16rpx;
  176. }
  177. .u-input {
  178. border: solid 1rpx #526eff;
  179. background: #fff;
  180. height: 76rpx;
  181. margin-left: 16rpx;
  182. }
  183. }
  184. }
  185. .swiper {
  186. width: 690rpx;
  187. // box-sizing: border-box;
  188. // padding: 0 30rpx;
  189. // height: 340rpx;
  190. margin: 24rpx 30rpx 20rpx;
  191. border-radius: 20rpx;
  192. }
  193. .notice {
  194. width: 690rpx;
  195. box-sizing: border-box;
  196. padding: 15rpx 30rpx 15rpx 0;
  197. background-color: #f3f7ff;
  198. margin: 0 20rpx 0;
  199. border-radius: 20rpx;
  200. .u-notice-bar {
  201. // background-color: #f3f7ff !important;
  202. //
  203. .u-icon__icon {
  204. font-size: 32rpx;
  205. // padding-left: 24rpx;
  206. color: #506dff !important;
  207. padding-right: 20rpx;
  208. border-right: 3rpx solid #f1f1f1;
  209. }
  210. }
  211. .notice_left {
  212. }
  213. }
  214. // .class_img {
  215. // width: 100%;
  216. // box-sizing: border-box;
  217. // padding: 0 30rpx;
  218. // }
  219. .boxs {
  220. width: 100%;
  221. box-sizing: border-box;
  222. padding: 0 30rpx;
  223. margin: 24rpx 0 0;
  224. }
  225. .text1 {
  226. font-size: 25rpx;
  227. color: #8f8f90;
  228. }
  229. }
  230. </style>