Blame view

src/views/components/imagePreview.vue 7.17 KB
任超 committed
1 2
<template>
  <div class="rlPopup">
任超 committed
3
    <div class="prev handle-btn" @click="prev()">
任超 committed
4 5
      <i class="el-icon-arrow-left"></i>
    </div>
任超 committed
6
    <div class="next handle-btn" @click="next()">
任超 committed
7 8 9 10
      <i class="el-icon-arrow-right"></i>
    </div>
    <div class="img-list-wrap">
      <div v-for="(img, i) in previewImg.imgList" :key="i">
任超 committed
11
        <photo-zoom :url="img.fjurl" :bigWidth="165" v-if="i === previewImg.index" :scale="2"
任超 committed
12
          overlayStyle="width: 100%;height:100%">
任超 committed
13 14 15 16 17 18 19
        </photo-zoom>
      </div>
    </div>
    <!--缩略图-->
    <div class="thumb-wrap">
      <div class="thumb-wrap-button">
        <el-button type="primary" @click="clickImage">(放大) 显示(缩小)</el-button>
liangyifan committed
20
        <el-upload class="fileUpdate" action="" :show-file-list="false" multiple :auto-upload="false"
任超 committed
21
          :on-change="handleChange" accept=".JPG, .PNG, .JPEG,.jpg, .png, .jpeg" :before-upload="beforeUpload">
蔡俊立 committed
22
          <el-button icon="el-icon-upload" type="primary" v-if="!this.$route.query.viewtype">上传</el-button>
任超 committed
23
        </el-upload>
蔡俊立 committed
24
        <el-button type="primary" icon="el-icon-delete-solid" @click="handleDelete" v-if="!this.$route.query.viewtype">删除</el-button>
任超 committed
25 26
      </div>
      <ul>
任超 committed
27
        <li v-for="(img, index) in thumbnailImages" :key="index" :class="{ active: previewImg.index === index }"
任超 committed
28
          @click="showCurrent(index)">
任超 committed
29
          <img :src="img.fjurl">
任超 committed
30 31 32 33 34 35 36 37 38
        </li>
      </ul>
    </div>
    <!-- 点开后的视图 -->
    <publicPicture v-if="showViewer" :url-list="allLi" :initialIndex="initialIndex" @close-viewer="closeViewer">
    </publicPicture>
  </div>
</template>
<script>
任超 committed
39
import PhotoZoom from '@/components/PhotoZoom'
40
import { uploadSjClmx, deleteClmx } from "@/api/clxx.js";
任超 committed
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
import publicPicture from '@/components/publicPicture/index.vue'
export default {
  name: 'PreviewImage',
  props: {
    previewImg: {
      type: Object,
      default: () => { }
    }
  },
  components: {
    PhotoZoom,
    publicPicture
  },
  data () {
    return {
      transform: {
        scale: 1,
        degree: 0
      },
      // 缩略图
任超 committed
61
      thumbnailImages: [],
任超 committed
62 63 64 65 66 67 68 69
      showViewer: false,
      initialIndex: undefined,
      allLi: [],
    }
  },
  watch: {
    previewImg: {
      handler (newValue, oldValue) {
任超 committed
70 71
        this.allLi = _.cloneDeep(newValue.imgList).map(item => item.fjurl)
        this.thumbnailImages = newValue.imgList
任超 committed
72 73 74 75
      },
      deep: true
    }
  },
任超 committed
76 77 78 79
  created () {
    this.allLi = _.cloneDeep(this.previewImg.imgList).map(item => item.fjurl)
    this.thumbnailImages = this.previewImg.imgList
  },
任超 committed
80 81 82 83 84 85 86 87 88 89
  computed: {
    isFirst () {
      return this.previewImg.index === 0
    },
    isLast () {
      return this.previewImg.index === this.previewImg.imgList.length - 1
    }
  },
  methods: {
    prev () {
任超 committed
90
      let len = this.previewImg.imgList.length
任超 committed
91 92
      if (this.isFirst || len == 0) {
        this.$emit('prevPriview')
任超 committed
93
      } else {
任超 committed
94
        this.$parent.previewImg.index = (this.$parent.previewImg.index - 1 + len) % len
任超 committed
95 96
      }
    },
任超 committed
97 98 99 100 101 102
    next () {
      let len = this.previewImg.imgList.length
      if (this.isLast || len == 0) {
        this.$emit('nextPriview')
      } else {
        this.$parent.previewImg.index = (this.$parent.previewImg.index + 1) % len
任超 committed
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
      }
    },
    showCurrent (index) {
      this.previewImg.index = index
    },
    closeViewer () {
      this.showViewer = false
    },
    clickImage () {
      this.showViewer = true
    },
    // 上传
    beforeUpload (file) {
      const isJPEG = file.type === 'image/jpeg'
      const isPNG = file.type === 'image/png'
      const isJPG = file.type === 'image/jpg'
      const isGIF = file.type === 'image/gif'
      const isLt5M = file.size / 1024 / 1024 < 5
      if (!isJPEG && !isGIF && !isPNG && !isJPG && !isGIF) {
        this.$message.error('请选择jpeg/png/jpg/bmp/gif格式的图片后重试')
        this.loading = false
      }
      if (!isLt5M) {
        this.$message.error('上传图片大小不能超过 5MB!')
        this.loading = false
      }
      this.imgHidden = (isJPG || isJPEG || isPNG || isGIF) && isLt5M
      return this.imgHidden
    },
    async handleChange (file) {
      let data = _.cloneDeep(this.previewImg.imgList[this.previewImg.index])
任超 committed
134 135 136 137
      var formdata = new FormData();
      formdata.append("file", file.raw);
      formdata.append("bsmSj", this.previewImg.bsmSj);
      formdata.append("bsmSlsq", this.previewImg.bsmSlsq);
138
      uploadSjClmx(formdata).then((res) => {
任超 committed
139 140 141 142 143 144 145 146
        if (res.code == 200) {
          this.$emit('updateList', res.result)
          this.$message({
            message: '上传成功!',
            type: 'success'
          })
        }
      })
任超 committed
147 148
    },
    handleDelete () {
任超 committed
149 150
      let that = this
      this.$confirm('此操作将永久删除, 是否继续?', '提示', {
任超 committed
151 152 153 154
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      }).then(async () => {
任超 committed
155
        let bsmClmx = this.previewImg.imgList[this.previewImg.index].bsmClmx
156
        deleteClmx(bsmClmx).then(res => {
任超 committed
157 158 159 160 161 162 163 164
          if (res.code == 200) {
            that.$emit('updateList', res.result)
            that.$message({
              message: '删除成功!',
              type: 'success'
            })
          }
        })
任超 committed
165 166 167 168
      }).catch(() => {
        this.$message({
          type: 'info',
          message: '已取消删除'
任超 committed
169 170
        })
      })
任超 committed
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
    }
  }
}
</script>

<style lang="scss" scoped>
// 查看大图
.rlPopup {
  position: relative;
  width: 100%;
  text-align: center;
  height: 100%;

  .handle-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    width: 66px;
    height: 66px;
    line-height: 75px;
    color: #fff;
任超 committed
192 193
    background-color: rgb(239, 239, 239);
    border-radius: 50%;
任超 committed
194 195
    cursor: pointer;
    text-align: center;
任超 committed
196
    transition: all 0.3s;
任超 committed
197 198 199 200 201 202

    i {
      font-size: 24px;
    }
  }

任超 committed
203 204 205 206 207
  .handle-btn:hover {
    background-color: rgb(185, 183, 183);
  }


任超 committed
208
  .prev {
任超 committed
209
    left: 1%;
任超 committed
210 211 212
  }

  .next {
任超 committed
213
    right: 1%;
任超 committed
214 215 216 217 218 219 220 221 222
  }

  .img-list-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    height: calc(100% - 80px);
    align-items: center;
    background: rgba(194, 190, 190, 0.1);
liangyifan committed
223
    overflow: scroll;
任超 committed
224

任超 committed
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
    img {
      display: block;
      object-fit: scale-down;
      transition: all 0.3s;
      max-width: 100%;
    }
  }

  .thumb-wrap {
    &-button {
      display: flex;
      justify-content: center;

      .fileUpdate {
        margin: 0 10px;
      }
    }

    li {
      float: left;
      width: 60px;
      height: 45px;
      border: solid 1px #ececec;
      position: relative;
      margin-right: 5px;
      cursor: pointer;

      &:last-child {
        margin-right: 0;
      }

      img {
        max-width: 57px;
        max-height: 42px;
        display: block;
        object-fit: scale-down;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
    }

    .active {
      border-color: #409eff;
    }
  }
}
</style>
<style>
.zoom-on-hover {
  position: relative;
  overflow: hidden;
}

.zoom-on-hover .normal {
  width: 100%;
}

.zoom-on-hover .zoom {
  position: absolute;
  opacity: 0;
  transform-origin: top left;
}

.zoom-on-hover.zoomed .zoom {
  opacity: 1;
}

.zoom-on-hover.zoomed .normal {
  opacity: 0;
}
</style>