classify.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <template>
  2. <view class="classify-page">
  3. <swiper class="swiper" autoplay interval>
  4. <swiper-item>
  5. <image @click="goFiccService" :src="globalImgUrls.ficcServiceImg" mode="aspectFill"/>
  6. </swiper-item>
  7. </swiper>
  8. <view class="list">
  9. <van-row gutter="10">
  10. <van-col span="6" v-for="item in list" :key="item">
  11. <view class="item" @click="goDetail(item)">
  12. <image :src="item.icon_img_url" mode="aspectFill"/>
  13. <view>{{item.classify_name_first}}</view>
  14. </view>
  15. </van-col>
  16. </van-row>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. import {apiReportClassify} from '@/api/report'
  22. export default {
  23. data () {
  24. return {
  25. list:[]
  26. }
  27. },
  28. onLoad(options) {
  29. this.getClassifyList()
  30. },
  31. onPullDownRefresh() {
  32. this.getClassifyList()
  33. setTimeout(() => {
  34. uni.stopPullDownRefresh()
  35. }, 1500);
  36. },
  37. methods: {
  38. async getClassifyList(){
  39. const res=await apiReportClassify()
  40. if(res.code===200){
  41. this.list=res.data
  42. }
  43. },
  44. goDetail(item){
  45. //redirect_type : 跳转页面类型:1,专栏列表,2报告列表,3专栏详情
  46. if(item.redirect_type==1){
  47. uni.navigateTo({ url: `/pages-report/specialColumn/list?classifyId=${item.classify_id_first}&classifyName=${item.classify_name_first}` })
  48. }
  49. if(item.redirect_type==2){
  50. uni.navigateTo({url:`/pages-report/reportList?classifyId=${item.classify_id_first}&classifyName=${item.classify_name_first}`})
  51. }
  52. if(item.redirect_type==3){
  53. uni.navigateTo({url:'/pages-report/specialColumn/detail?columnId='+item.classify_id_second})
  54. }
  55. },
  56. goFiccService(){
  57. uni.navigateTo({url:'/pages-report/ficcService'})
  58. }
  59. }
  60. };
  61. </script>
  62. <style lang="scss" scoped>
  63. .classify-page {
  64. padding: 34rpx;
  65. .swiper{
  66. height: 300rpx;
  67. overflow: hidden;
  68. image{
  69. width: 100%;
  70. height: 100%;
  71. display: block;
  72. border-radius: 8rpx;
  73. }
  74. }
  75. .list{
  76. margin-top: 40rpx;
  77. .item{
  78. width: 100%;
  79. margin-bottom: 30rpx;
  80. text-align: center;
  81. image{
  82. width: 128rpx;
  83. height: 128rpx;
  84. // background-color: #f5f5f5;
  85. }
  86. }
  87. }
  88. }
  89. </style>