123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <template>
- <view class="zaiui-modal-box" :class="show?'show':''">
- <view class="dialog">
- <image class="img" :src="src" lazy-load mode="widthFix" @tap="imgEvent"></image>
- <text class="cuIcon-roundclose close" @tap="closeEvent"></text>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'modal-img',
- props: {
- src: {
- type: String,
- default: ""
- },
- show: {
- type: Boolean,
- default: false
- }
- },
- methods: {
- imgEvent() {
- this.$emit('imgTap');
- },
- closeEvent() {
- this.$emit('closeTap');
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .zaiui-modal-box {
- position: fixed;
- opacity: 0;
- top: inherit;
- left: inherit;
- right: inherit;
- bottom: inherit;
- z-index: 999;
- text-align: center;
- background: rgba(0, 0, 0, 0.6);
- transition: all 0.3s;
- pointer-events: none;
- &::before {
- content: "\200B";
- display: inline-block;
- height: 100%;
- vertical-align: middle;
- }
- .dialog {
- position: relative;
- display: inline-block;
- vertical-align: middle;
- width: 618.18upx;
- .img {
- width: 100%;
- border-radius: 3%;
- }
- .close {
- color: #dadada;
- top: 18.18upx;
- position: relative;
- font-size: 54.54upx;
- }
- }
- }
- .zaiui-modal-box.show {
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- opacity: 1;
- pointer-events: auto;
- }
- </style>
|