inleft
2022-08-24 80476fae71f08bf4408c7509eff254031a4eeac6
src/components/mini/box18-photoShow.vue
@@ -1,5 +1,6 @@
<template>
   <div>
      <div style="min-height: 500px;">
      <div class="gridClass">
         <div class="entry-preview" v-for="item in data">
            <div class="thumbnail_box">
@@ -10,7 +11,7 @@
            <div class="entry-post">
               <div class="entry-header">
                  <h5 class="entry-title">
                     <router-link :to="{path:'videoDetail',query:{id:item.id}}" :title="item.title">
                        <router-link :to="{name:'mdDetail',query:{id:item.id,typeId:item.articleTypeId}}" :title="item.title">
                        {{item.title}}
                     </router-link>
                  </h5>
@@ -37,6 +38,7 @@
            </div>
         </div>
      </div>
      </div>
      <a-row type="flex" justify="center">
         <div>
            <a-pagination @change="onChange" :showQuickJumper="true" :size="page.size" v-model="page.current"
@@ -56,32 +58,12 @@
   } from '../../api/blogArticle.js'
   import myConstant from "../../config/myConstant.js"
   import optionsConfig from "../../config/v-viewer-Config.js"
   export default {
      data() {
         return {
            options: {
               'inline': false, // 是否启用inline模式
               'button': true, // 是否显示右上角关闭按钮
               'navbar': true, // 是否显示缩略图底部导航栏
               'title': false, // 是否显示当前图片标题,默认显示alt属性内容和尺寸
               'toolbar': false, // 是否显示工具栏
               'tooltip': true, // 放大或缩小图片时,是否显示缩放百分比,默认true
               'fullscreen': true, // 播放时是否全屏,默认true
               'loading': true, // 加载图片时是否显示loading图标,默认true
               'loop': true, // 是否可以循环查看图片,默认true
               'movable': true, // 是否可以拖得图片,默认true
               'zoomable': true, // 是否可以缩放图片,默认true
               'rotatable': true, // 是否可以旋转图片,默认true
               'scalable': true, // 是否可以翻转图片,默认true
               'toggleOnDblclick': true, // 放大或缩小图片时,是否可以双击还原,默认true
               'transition': true, // 使用 CSS3 过度,默认true
               'keyboard': true, // 是否支持键盘,默认true
               'zoomRatio': 0.1, // 鼠标滚动时的缩放比例,默认0.1
               'minZoomRatio': 0.3, // 最小缩放比例,默认0.01
               'maxZoomRatio': 2.0, // 最大缩放比例,默认100
               // 'url': 'data-source' // 设置大图片的 url
            },
            options: optionsConfig,
            page: {
               size: "small",
               total: 1,
@@ -90,7 +72,7 @@
               defaultPageSize: 6
            },
            data: [],
            img404: "this.onerror='';this.src=\"http://t.inleft.com/share/media_photo/idea_beijing.jpg\"",
            img404: myConstant.img404,
         }
      },
      mounted() {
@@ -102,8 +84,6 @@
            platform({
               pageNo: current,
               pageSize: this.page.pageSize,
               fileType: 9,
               typeId: 99,
               activeKey:this.$attrs.activeKey
            }).then((res) => {
               this.page.total = Number(res.data.total)