This commit is contained in:
yanran200730
2022-06-16 16:44:10 +08:00
parent 393e780440
commit f7abd3ac9a

View File

@@ -1,7 +1,7 @@
<template>
<div class="photo" v-if="pageShow" @click="isShow = !isShow">
<div class="photo-wrapper">
<image mode="widthFix" :src="img" @click="preview(img)" />
<image mode="widthFix" :src="img" />
</div>
<div class="photo-bottom" :class="[isShow ? 'active' : '']">
<div class="top">
@@ -24,7 +24,7 @@
</template>
<script>
import { mapState, mapActions } from 'vuex'
import { mapState } from 'vuex'
export default {
name: 'Photo',