index.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. <template>
  2. <view class="content">
  3. <view class="content_top">
  4. <u-navbar leftText="" height="44px" :bgColor="bgColor" :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="hflex acenter" @click="toWeather">
  9. <image :src="weather.icon" style="width: 32rpx;height: 32rpx;margin-right: 8rpx;"></image>
  10. <view class="text_style1">{{weather.min}}&deg;~{{weather.max}}&deg;</view>
  11. </view>
  12. </view>
  13. </u-navbar>
  14. <view class="search hflex acenter">
  15. <view class="hflex acenter" @click="changeCity">
  16. <view class="city">{{city}}</view>
  17. <u-icon name="arrow-down-fill" color="#000" size="10"></u-icon>
  18. </view>
  19. <u-search v-model="serach_value" borderColor="#506dff" placeholder="搜索关键词" shape="round" :showAction="false"
  20. @click="focus" disabled bgColor="#fff">
  21. </u-search>
  22. </view>
  23. </view>
  24. <view class="swiper">
  25. <u-swiper :list="bannerList" radius="20rpx" @click="toBanner"></u-swiper>
  26. </view>
  27. <view class="notice hflex acenter jbetween">
  28. <!-- <view class="notice_left">公告</view> -->
  29. <u-notice-bar :text="notice_text" direction="column" icon="公告" color="#7a7b7c" bgColor="#f3f7ff"></u-notice-bar>
  30. <view class="hflex acenter" @click="toNotice">
  31. <view class="text1">更多</view>
  32. <u-icon name="arrow-right" color="#bebebf" size="14"></u-icon>
  33. </view>
  34. </view>
  35. <view class="boxs hflex acenter jbetween">
  36. <image :src="class_img1" mode="widthFix" style="width: 336rpx;" @click="toDetail(1)"></image>
  37. <image :src="class_img2" mode="widthFix" style="width: 336rpx;" @click="toDetail(2)"></image>
  38. </view>
  39. <view class="boxs hflex acenter jbetween">
  40. <image :src="class_img3" mode="widthFix" style="width: 220rpx;" @click="toDetail(3)"></image>
  41. <image :src="class_img4" mode="widthFix" style="width: 220rpx;" @click="toDetail(4)"></image>
  42. <image :src="class_img5" mode="widthFix" style="width: 220rpx;" @click="toDetail(5)"></image>
  43. </view>
  44. <view class="boxs">
  45. <u-tabs :list="tabs" @click="changeTaaba"
  46. :scrollable = "false"
  47. :activeStyle="{
  48. color: '#000',
  49. }" :inactiveStyle="{
  50. color: '#888888'
  51. }"></u-tabs>
  52. </view>
  53. <view class="boxs">
  54. <news-module :pageList="pageList"></news-module>
  55. </view>
  56. </view>
  57. </template>
  58. <script>
  59. import $api, { closeLoading } from '@/static/js/api.js'
  60. var that = ''
  61. const app = getApp().globalData
  62. export default {
  63. data() {
  64. return {
  65. title: 'Hello',
  66. weather: {
  67. icon: '/static/icons/100.svg',
  68. min: 0,
  69. max: 10
  70. },
  71. city: '',
  72. location: '',
  73. serach_value: '',
  74. bannerList: [
  75. "/static/images/index/class_img1.png",
  76. "/static/images/index/class_img1.png"
  77. ],
  78. notice_text: [
  79. '找工作有妙招,这里看过来~',
  80. '浔阳江头夜送客'
  81. ],
  82. class_img1: '/static/images/index/class_img1.png',
  83. class_img2: '/static/images/index/class_img2.png',
  84. class_img3: '/static/images/index/class_img3.png',
  85. class_img4: '/static/images/index/class_img4.png',
  86. class_img5: '/static/images/index/class_img5.png',
  87. tabs: [],
  88. pageList: [
  89. ],
  90. bgColor: 'rgb(255,255,255,0)',
  91. exad: '',
  92. page: 1,
  93. total: 1,
  94. }
  95. },
  96. async onLoad() {
  97. that = this
  98. await this.getCity()
  99. that.getCate()
  100. // that.HXlogin()
  101. },
  102. onShow() {
  103. },
  104. watch: {
  105. city(newVal) {
  106. console.log('城市数据发生改变');
  107. that.getCity()
  108. }
  109. },
  110. onPageScroll(e) {
  111. if(e.scrollTop != 0) {
  112. that.bgColor = "#fff"
  113. } else {
  114. that.bgColor = 'rgba(255,255,255,0)'
  115. }
  116. },
  117. methods: {
  118. // 获取当前位置
  119. getCity() {
  120. that.city = uni.getStorageSync('city')
  121. if(!that.city) {
  122. return new Promise((resolve, reject) => {
  123. app.getLoca().then(res=> {
  124. console.log('getLoaction',res);
  125. that.city = res[0].regeocodeData.addressComponent.city
  126. uni.setStorageSync('city',that.city)
  127. uni.setStorageSync('locationCity',that.city)
  128. })
  129. })
  130. }
  131. that.getWeather()
  132. },
  133. changeCity() {
  134. $api.jump('/page_index/pages/index/changeCity')
  135. },
  136. // 获取当前城市天气
  137. getWeather() {
  138. uni.request({
  139. url: 'https://geoapi.qweather.com/v2/city/lookup',
  140. data: {
  141. key: '682de67f4b8d4a5e97bc63ed722ae3cf',
  142. location:that.city
  143. },
  144. header:{
  145. 'content-type': 'application/x-www-form-urlencoded',
  146. },
  147. success(res) {
  148. uni.request({
  149. url: "https://devapi.qweather.com/v7/weather/7d",
  150. data: {
  151. location: res.data.location[0].id,
  152. key: '682de67f4b8d4a5e97bc63ed722ae3cf'
  153. },
  154. header:{
  155. 'content-type': 'application/x-www-form-urlencoded',
  156. },
  157. success(res2) {
  158. that.weather = {
  159. icon: '/static/icons/' + res2.data.daily[0].iconDay + '.svg',
  160. min: res2.data.daily[0].tempMin,
  161. max: res2.data.daily[0].tempMax
  162. }
  163. }
  164. })
  165. }
  166. })
  167. /* $api.req({
  168. url: '/data/api.Weather/area',
  169. data: {
  170. name: that.city
  171. }
  172. }, function(res) {
  173. that.weather = {
  174. icon: '/static/icons/' + res.data.daily[0].iconDay + '.svg',
  175. min: res.data.daily[0].tempMin,
  176. max: res.data.daily[0].tempMax
  177. }
  178. }) */
  179. },
  180. // 点击天气
  181. toWeather() {
  182. // $api.jump('/page_index/pages/index/weather')
  183. },
  184. // 轮播图跳转
  185. toBanner(e) {
  186. console.log("点击轮播",e);
  187. },
  188. // 点击输入框
  189. focus() {
  190. console.log('111111111');
  191. $api.jump('/page_index/pages/index/search')
  192. },
  193. // 公告列表
  194. toNotice() {
  195. $api.jump('/page_index/pages/index/noticeList')
  196. },
  197. toDetail(index) {
  198. var url = ''
  199. switch(index) {
  200. case 1:
  201. url = '/page_index/pages/demand/demand';
  202. break;
  203. case 2:
  204. url = '/page_index/pages/purchase/purchase';
  205. break;
  206. case 3:
  207. url = '/page_index/pages/repair/repair';
  208. break;
  209. case 4:
  210. url = '/page_index/pages/bidding/bidding';
  211. break;
  212. case 5:
  213. url = '/page_index/pages/resources/resources';
  214. break;
  215. }
  216. console.log(url);
  217. $api.jump(url)
  218. },
  219. // 切换tabs
  220. changeTaaba(e) {
  221. console.log(e);
  222. that.getList(e.id)
  223. },
  224. getCate() {
  225. $api.req({
  226. url: '/data/api.Xw/category'
  227. }, function(res) {
  228. if(res.code == 1) {
  229. that.tabs = res.data
  230. that.getList(that.tabs[0].id)
  231. }
  232. })
  233. },
  234. getList(cid) {
  235. $api.req({
  236. url: '/data/api.Xw/index',
  237. data: {
  238. page: that.page,
  239. cid: cid,
  240. exad: that.exad
  241. }
  242. }, function(res) {
  243. if(res.code == 1) {
  244. for(var i=0;i<res.data.news.length;i++) {
  245. for(var j=0;j<res.data.news[i].xw.length;j++) {
  246. if(res.data.news[i].xw[j].images == "") {
  247. that.$set(res.data.news[i].xw[j],'has_img',true)
  248. console.log('没有图片');
  249. }else {
  250. res.data.news[i].xw[j].images = res.data.news[i].xw[j].images.split('|')
  251. console.log('长度',res.data.news[i].xw[j].images.length);
  252. }
  253. }
  254. }
  255. that.pageList = res.data.news
  256. that.exad = res.data.exad.join(',')
  257. }
  258. })
  259. }
  260. }
  261. }
  262. </script>
  263. <style lang="scss" scoped>
  264. .content::v-deep {
  265. // padding: 0 30rpx;
  266. background: #fff;
  267. .content_top {
  268. background: url('../../../static/images/index/bg.png') no-repeat;
  269. background-size: 100%;
  270. box-sizing: border-box;
  271. padding: 0 30rpx;
  272. .navbar_left {
  273. .dian {
  274. width: 8rpx;
  275. height: 8rpx;
  276. background: #232323;
  277. border-radius: 50%;
  278. margin: 0 6rpx 0 12rpx;
  279. }
  280. }
  281. .search {
  282. width: 100%;
  283. box-sizing: border-box;
  284. padding: 20rpx;
  285. margin-top: 36rpx;
  286. .city {
  287. color: #222222;
  288. font-size: 32rpx;
  289. margin-right: 16rpx;
  290. }
  291. .u-input {
  292. border: solid 1rpx #526eff;
  293. background: #fff;
  294. height: 76rpx;
  295. margin-left: 16rpx;
  296. padding: 0 24rpx !important;
  297. }
  298. }
  299. }
  300. .swiper {
  301. width: 690rpx;
  302. // box-sizing: border-box;
  303. // padding: 0 30rpx;
  304. // height: 340rpx;
  305. margin: 24rpx 30rpx 20rpx;
  306. border-radius: 20rpx;
  307. }
  308. .notice {
  309. width: 690rpx;
  310. box-sizing: border-box;
  311. padding: 15rpx 30rpx 15rpx 0;
  312. background-color: #f3f7ff;
  313. margin: 0 20rpx 0;
  314. border-radius: 20rpx;
  315. .u-notice-bar {
  316. // background-color: #f3f7ff !important;
  317. //
  318. .u-icon__icon {
  319. font-size: 32rpx;
  320. // padding-left: 24rpx;
  321. color: #506dff !important;
  322. padding-right: 20rpx;
  323. border-right: 3rpx solid #f1f1f1;
  324. }
  325. }
  326. .notice_left {
  327. }
  328. }
  329. // .class_img {
  330. // width: 100%;
  331. // box-sizing: border-box;
  332. // padding: 0 30rpx;
  333. // }
  334. .boxs {
  335. width: 100%;
  336. box-sizing: border-box;
  337. padding: 0 30rpx;
  338. margin: 24rpx 0 0;
  339. }
  340. .text1 {
  341. font-size: 25rpx;
  342. color: #8f8f90;
  343. }
  344. }
  345. </style>