| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <template>
- <div>
- <van-row gutter="10">
- <van-col span="6" v-for="(urls, index) in imgs" :key="urls.id">
- <div class="imgview">
- <van-icon
- v-if="(photoIdentifyType != 6 || photoIdentifyType != 7) && types != 'edit'"
- name="close"
- size="16"
- v-on:click="deleteImg(index, urls.id)" />
- <img
- v-if="urls.type == '2'"
- :src="urls.fileUrl"
- width="100px"
- height="100px"
- @click="previewsImg(index)" />
- <img
- v-else
- :src="urls.fileUrl"
- width="100px"
- height="100px"
- @click="previewsImg(index)" />
- </div>
- </van-col>
- </van-row>
- <!-- <div style="padding: 10px 16px 0;">-->
- <!-- <div class="img-box" v-for="(urls, index) in imgs" :key="index">-->
- <!-- <van-icon name="clear" v-on:click="deleteImg(index,urls.id)"/>-->
- <!-- <img v-if="urls.type=='2'" :src="urls.fileUrl" width="100px" height="100px" @click="previewsImg(index)"/>-->
- <!-- <img v-else :src="urls.fileUrl" width="100px" height="100px" @click="previewsImg(index)"/>-->
- <!-- </div>-->
- <!-- </div>-->
- </div>
- </template>
- <script>
- import { ImagePreview } from 'vant';
- import { removePhoto } from '@/api/index';
- export default {
- name: 'deleteUploadImg',
- props: {
- imgs: {
- type: Array,
- default() {
- return [];
- },
- },
- photoIdentifyType: {
- // 图匠识别目的(1:店招内容识别,2:门店代码识别,3:调色机识别,4:更换店招,6:sku陈列照)
- type: String,
- default: '',
- },
- types: {
- // edit 编辑
- type: String,
- },
- },
- watch: {
- imgs: {
- handler(val) {},
- deep: true,
- immediate: true,
- },
- },
- data() {
- return {
- url: process.env.VUE_APP_Target1 + process.env.VUE_APP_BASE_API,
- };
- },
- methods: {
- deleteImg(index, collectionItemId) {
- removePhoto({ fileId: collectionItemId }).then((res) => {
- if (res.code == 200) {
- this.$toast('删除成功!');
- this.imgs.splice(index, 1);
- } else {
- this.$toast('删除失败!');
- }
- });
- },
- previewsImg(index) {
- var arrimg = [];
- for (var imgi = 0; imgi < this.imgs.length; imgi++) {
- arrimg.push(this.imgs[imgi].fileUrl);
- }
- ImagePreview({
- images: arrimg,
- startPosition: index,
- onClose() {
- // do something
- },
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .imgview {
- width: 100%;
- height: 72px;
- position: relative;
- display: inline-block;
- i {
- position: absolute;
- right: -2px;
- top: -3px;
- color: white;
- background: red;
- overflow: hidden;
- border-radius: 50%;
- }
- img {
- width: 100%;
- height: 100%;
- }
- }
- </style>
|