index.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516
  1. <template>
  2. <view class="content">
  3. <!-- 导航 -->
  4. <view class="nav">
  5. <view class="leftView" @click="back">
  6. <image v-if="type == 'app'" src="../../static/mobile/backBtn.png" mode=""
  7. style="width: 22rpx; height: 40rpx; padding-left: 24rpx;"></image>
  8. </view>
  9. <view class="navTitle">门店学院</view>
  10. <view class="rightView">
  11. <image src="../../static/mobile/icona_fenlei@2x.png" mode="" class="rightImg" @click="goSift"></image>
  12. <image src="../../static/mobile/icon_search@2x.png" mode="" class="rightImg" style="margin-left: 40rpx;"
  13. @click="goSearch"></image>
  14. </view>
  15. </view>
  16. <!-- 推荐 -->
  17. <view class="commend" v-if="bannerArr.length != 0">
  18. <view class="top">
  19. <image src="../../static/mobile/icon_tuijian@2x.png" mode="" style="width: 28rpx; height: 28rpx;">
  20. <text class="tuijian">推荐文章</text>
  21. </image>
  22. </view>
  23. <!-- item -->
  24. <view class="scrollBg">
  25. <scroll-view scroll-x="true" @scroll="scroll">
  26. <view class="itemBg">
  27. <view v-for="(item,index) in bannerArr" :key="index" class="item" @click="goDetail(item)">
  28. <image :src="item.logoImg" mode="" class="swpImg"></image>
  29. <view class="title">{{item.title}}</view>
  30. <view style="display: flex;">
  31. <view class="title2" @click.stop="goTuijianTab(item)">{{item.categoryName}}</view>
  32. </view>
  33. </view>
  34. </view>
  35. </scroll-view>
  36. </view>
  37. </view>
  38. <!-- 分类 -->
  39. <view v-for="(item,index) in itemArr" :key="index">
  40. <view class="fenleiBg">
  41. <!-- 头 -->
  42. <view class="fenTop" :class="{fenTopNo:item.children == 0}">
  43. <view class="leftTop">
  44. <view class="tuijian">{{item.name}}</view>
  45. <view class="sum">共{{item.count}}篇文章</view>
  46. </view>
  47. <view class="rightTop">
  48. <view class="allBtn" @click="goTopTab(item)">查看全部
  49. <image src="../../static/mobile/icon_arrow@2x.png" mode=""
  50. style="width: 11rpx; height: 18rpx; margin-left: 10rpx;"></image>
  51. </view>
  52. </view>
  53. </view>
  54. <!-- item -->
  55. <view class="itemBg">
  56. <view v-for="(item2,index2) in item.children" :key="index2" v-if="index2<2" class="twoItem"
  57. @click="goList(item2)">
  58. <image :src="item2.logoImg" mode="" class="img2"></image>
  59. <view class="itemTitle">{{item2.title}}</view>
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. <!-- 下拉菜单 -->
  65. <view class="sift" v-show="showSift" @click="goHide()">
  66. <view class="siftItemBg">
  67. <view v-for="(item,index) in siftData" :key="index" class="siftItem">
  68. <view @click="goTopTab(item)">{{item.name}}</view>
  69. </view>
  70. </view>
  71. </view>
  72. <view class="gotop" @click="gotoTop">
  73. <image src="../../static/pcimg/btn_top@2x.png" mode="" class="gotopImg"></image>
  74. </view>
  75. </view>
  76. </template>
  77. <script>
  78. export default {
  79. data() {
  80. return {
  81. bannerArr: [],
  82. scrollTop: 0,
  83. old: {
  84. scrollTop: 0
  85. },
  86. itemArr: [],
  87. showSift: false,
  88. siftData: [],
  89. type: '',
  90. }
  91. },
  92. onLoad(opt) {
  93. this.getDetailData()
  94. this.getSiftData()
  95. this.type = opt.type
  96. if (this.type) {
  97. uni.setStorage({
  98. key: 'userType',
  99. data: this.type,
  100. success: function() {
  101. }
  102. });
  103. }
  104. },
  105. methods: {
  106. back() {
  107. console.log('type', this.type);
  108. if (this.type == "app") {
  109. var standalone = window.navigator.standalone
  110. var userAgent = window.navigator.userAgent.toLowerCase()
  111. var safari = /safari/.test(userAgent)
  112. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  113. var android = /android/.test(userAgent)
  114. if (ios) {
  115. if (true) { //!standalone&& !safari
  116. window.webkit.messageHandlers.goMyNav.postMessage(null)
  117. }
  118. } else if (android) {
  119. window.android.postMessage()
  120. }
  121. } else {
  122. uni.navigateBack({
  123. })
  124. }
  125. },
  126. gotoTop() {
  127. uni.pageScrollTo({
  128. scrollTop: 0,
  129. duration: 300
  130. });
  131. },
  132. goHide() {
  133. this.showSift = false
  134. },
  135. goDetail(item) {
  136. if(item.linkType==1){
  137. window.location.href =item.linkUrl
  138. }else{
  139. uni.navigateTo({
  140. url: 'detail?id=' + item.id
  141. })
  142. }
  143. },
  144. goTuijianTab(item) {
  145. uni.navigateTo({
  146. url: 'topTab?topCode=' + item.categoryCode + '&comment=' + item.comment + '&topName=' + item
  147. .categoryName
  148. })
  149. },
  150. goList(item) {
  151. // 1分类2文章
  152. if (item.type == 1) {
  153. uni.navigateTo({
  154. url: 'list?topCode=' + item.code + '&comment=' + item.comment + '&topName=' + item.name
  155. })
  156. }
  157. if (item.type == 2) {
  158. uni.navigateTo({
  159. url: 'detail?id=' + item.id
  160. })
  161. }
  162. },
  163. goTopTab(item) {
  164. this.showSift = false
  165. uni.navigateTo({
  166. url: 'topTab?topCode=' + item.code + '&comment=' + item.comment + '&topName=' + item.name
  167. })
  168. },
  169. goSift() {
  170. this.showSift = !this.showSift
  171. },
  172. goSearch() {
  173. uni.navigateTo({
  174. url: 'search'
  175. })
  176. },
  177. scroll: function(e) {
  178. console.log(e)
  179. this.old.scrollTop = e.detail.scrollTop
  180. },
  181. goNav(urlStr) {
  182. uni.navigateTo({
  183. url: urlStr
  184. })
  185. },
  186. getDetailData() {
  187. uni.showLoading({
  188. title: '加载中'
  189. })
  190. let url = '/trainingOpenApi/indexData',
  191. params = {
  192. }
  193. this.$http(url, params, 'GET').then(res => {
  194. uni.hideLoading();
  195. var data = res.data
  196. // 处理 undefined和null转为空白字符串
  197. for (const key in data) {
  198. data[key] = this.$praseStrEmpty(data[key])
  199. }
  200. this.detailData = data
  201. this.bannerArr = this.detailData.recommendList
  202. this.itemArr = this.detailData.categoryList
  203. })
  204. },
  205. getSiftData() {
  206. uni.showLoading({
  207. title: '加载中'
  208. })
  209. let url = '/trainingOpenApi/allCategory',
  210. params = {
  211. }
  212. this.$http(url, params, 'GET').then(res => {
  213. uni.hideLoading();
  214. var data = res.data
  215. // 处理 undefined和null转为空白字符串
  216. for (const key in data) {
  217. data[key] = this.$praseStrEmpty(data[key])
  218. }
  219. this.siftData = data
  220. })
  221. },
  222. // 下拉刷新 上拉加载更多
  223. onPullDownRefresh() {
  224. // this.page = 1;
  225. // this.getItemData()
  226. this.getDetailData()
  227. setTimeout(function() {
  228. uni.stopPullDownRefresh();
  229. }, 1000);
  230. },
  231. // onReachBottom() {
  232. // this.page++;
  233. // this.getItemData()
  234. // },
  235. }
  236. }
  237. </script>
  238. <style scoped>
  239. .content {
  240. min-height: 100vh;
  241. background-color: #f4f5f7;
  242. padding-top: 88rpx;
  243. padding-bottom: 20rpx;
  244. }
  245. .nav {
  246. position: fixed;
  247. left: 0;
  248. top: 0;
  249. width: 100vw;
  250. height: 88rpx;
  251. background-color: #FFFFFF;
  252. display: flex;
  253. justify-content: space-between;
  254. align-items: center;
  255. z-index: 999;
  256. border-bottom: #eeeeee 2rpx solid;
  257. }
  258. .navTitle {
  259. font-size: 36rpx;
  260. font-weight: bold;
  261. color: #3c3c3c;
  262. }
  263. .leftView {
  264. width: 30%;
  265. }
  266. .rightView {
  267. width: 30%;
  268. display: flex;
  269. justify-content: flex-end;
  270. padding-right: 24rpx;
  271. }
  272. .rightImg {
  273. width: 40rpx;
  274. height: 40rpx;
  275. }
  276. .commend {
  277. background-color: #FFFFFF;
  278. margin: 20rpx 0;
  279. padding: 30rpx 25rpx;
  280. }
  281. .top {
  282. padding-bottom: 24rpx;
  283. }
  284. .tuijian {
  285. font-size: 32rpx;
  286. font-weight: bold;
  287. color: #3c3c3c;
  288. margin-left: 10rpx;
  289. }
  290. .scrollBg {
  291. background-color: #FFFFFF;
  292. }
  293. .scroll-view {
  294. white-space: nowrap;
  295. }
  296. .itemBg {
  297. display: flex;
  298. }
  299. .item {
  300. width: 398rpx;
  301. margin-right: 25rpx;
  302. }
  303. .swpImg {
  304. border-radius: 10rpx;
  305. width: 398rpx;
  306. height: 224rpx;
  307. }
  308. .title {
  309. font-size: 28rpx;
  310. color: #3c3c3c;
  311. /* 隐藏文字显示 ...不换行 */
  312. overflow: hidden;
  313. text-overflow: ellipsis;
  314. white-space: nowrap;
  315. margin: 14rpx 0;
  316. }
  317. .itemTitle {
  318. font-size: 28rpx;
  319. color: #3c3c3c;
  320. /* 隐藏文字显示 ...不换行 */
  321. overflow: hidden;
  322. text-overflow: ellipsis;
  323. white-space: nowrap;
  324. margin-top: 14rpx;
  325. }
  326. .title2 {
  327. background: rgba(63, 144, 247, 0.1);
  328. font-size: 22rpx;
  329. color: #3F90F7;
  330. height: 36rpx;
  331. line-height: 36rpx;
  332. border-radius: 18rpx;
  333. padding: 3rpx 14rpx;
  334. min-width: 0;
  335. max-width: 138rpx;
  336. margin-bottom: 10rpx;
  337. text-align: center;
  338. /* 隐藏文字显示 ...不换行 */
  339. overflow: hidden;
  340. text-overflow: ellipsis;
  341. white-space: nowrap;
  342. }
  343. .fenleiBg {
  344. background-color: #FFFFFF;
  345. margin: 20rpx 0;
  346. padding: 30rpx 25rpx;
  347. }
  348. .fenTop {
  349. padding-bottom: 24rpx;
  350. display: flex;
  351. justify-content: space-between;
  352. align-items: center;
  353. }
  354. .fenTopNo {
  355. padding-bottom: 0;
  356. display: flex;
  357. justify-content: space-between;
  358. align-items: center;
  359. }
  360. .leftTop {
  361. display: flex;
  362. align-items: center;
  363. }
  364. .allBtn {
  365. font-size: 24rpx;
  366. color: #999999;
  367. }
  368. .sum {
  369. font-size: 24rpx;
  370. color: #999999;
  371. margin-left: 16rpx;
  372. }
  373. .twoItem {
  374. width: 339rpx;
  375. margin-right: 25rpx;
  376. }
  377. .img2 {
  378. width: 339rpx;
  379. height: 191rpx;
  380. border-radius: 10rpx;
  381. border: #EEEEEE 2rpx solid;
  382. }
  383. .sift {
  384. position: fixed;
  385. left: 0;
  386. top: 88rpx;
  387. width: 100vw;
  388. min-height: 100vh;
  389. background-color: rgba(0, 0, 0, 0.4);
  390. }
  391. .siftItemBg {
  392. background-color: #FFFFFF;
  393. width: 100%;
  394. height: 500rpx;
  395. overflow-y: scroll;
  396. }
  397. .siftItem {
  398. background-color: #FFFFFF;
  399. color: #333333;
  400. font-size: 30rpx;
  401. text-align: center;
  402. padding: 30rpx 0;
  403. }
  404. .gotopImg {
  405. width: 100rpx;
  406. height: 100rpx;
  407. }
  408. .gotop {
  409. position: fixed;
  410. right: 15rpx;
  411. bottom: 100rpx;
  412. cursor: pointer;
  413. }
  414. </style>