123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <template>
- <view class="classify-page">
- <swiper class="swiper" autoplay interval>
- <swiper-item>
- <image @click="goFiccService" :src="globalImgUrls.ficcServiceImg+'?t='+new Date().getDay()" mode="aspectFill"/>
- </swiper-item>
- </swiper>
- <view class="list">
- <view class="item" @click="goDetail(item)" v-for="item in list" :key="item.classify_name_first">
- <image :src="item.icon_img_url" mode="aspectFill"/>
- <view>{{item.classify_name_first}}</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {apiReportClassify} from '@/api/report'
- export default {
- data () {
- return {
- list:[]
- }
- },
- onLoad(options) {
- this.getClassifyList()
- },
- onPullDownRefresh() {
- this.getClassifyList()
- setTimeout(() => {
- uni.stopPullDownRefresh()
- }, 1500);
- },
- onShareAppMessage() {
- return {
- title:"FICC研报分类"
- }
- },
- methods: {
- async getClassifyList(){
- const res=await apiReportClassify()
- if(res.code===200){
- this.list=res.data
- }
- },
- goDetail(item){
- //redirect_type : 跳转页面类型:1,专栏列表,2报告列表,3专栏详情,4品种类型列表
- if(item.redirect_type==1){
- uni.navigateTo({ url: `/pages-report/specialColumn/list?classifyId=${item.classify_id_first}&classifyName=${item.classify_name_first}` })
- }
- if(item.redirect_type==2){
- uni.navigateTo({url:`/pages-report/reportList?classifyId=${item.classify_id_first}&classifyName=${item.classify_name_first}`})
- }
- if(item.redirect_type==3){
- uni.navigateTo({url:'/pages-report/specialColumn/detail?columnId='+item.classify_id_second})
- }
- if(item.redirect_type==4){
- uni.navigateTo({url:`/pages-report/reportForVariety/list?classifyId=${item.classify_id_first}&classifyName=${item.classify_name_first}`})
- }
- },
- goFiccService(){
- uni.navigateTo({url:'/pages-report/ficcService'})
- }
- }
- };
- </script>
- <style>
- page{
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- }
- </style>
- <style lang="scss" scoped>
- .classify-page {
- padding: 34rpx;
- .swiper{
- height: 300rpx;
- overflow: hidden;
- image{
- width: 100%;
- height: 100%;
- display: block;
- border-radius: 8rpx;
- }
- }
- .list{
- margin-top: 40rpx;
- display: flex;
- flex-wrap: wrap;
- .item{
- width: 25%;
- padding: 0 20rpx;
- margin-bottom: 30rpx;
- text-align: center;
- image{
- width: 128rpx;
- height: 128rpx;
- // background-color: #f5f5f5;
- }
- }
- }
- }
- </style>
|