mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
123 lines
2.4 KiB
Vue
123 lines
2.4 KiB
Vue
<template>
|
|
<div>
|
|
<img class="preview-image" :src="image">
|
|
<div class="preview-popup">
|
|
<div class="preview-content">
|
|
<img src="https://img.yzcdn.cn/vant-weapp/qrcode-201808101114.jpg">
|
|
<p>微信扫码体验</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
const PREFIX = 'https://img.yzcdn.cn/vant-weapp/';
|
|
const MAP = {
|
|
index: 'index-201808090730.png',
|
|
actionsheet: 'actionsheet-201808092138.jpeg',
|
|
badge: 'badge-201808092138.png',
|
|
button: 'button-201808092138.png',
|
|
card: 'card-201808092138.png',
|
|
field: 'field-201808092138.png',
|
|
cell: 'cell-201808092138.png',
|
|
icon: 'icon-201808092138.png',
|
|
col: 'layout-201808092138.png',
|
|
loading: 'loading-201808092138.png',
|
|
'notice-bar': 'notice-bar-201808092138.png',
|
|
popup: 'popup-201808092138.png',
|
|
panel: 'panel-201808092138.png',
|
|
stepper: 'stepper-201808092138.png',
|
|
search: 'search-201808092138.png',
|
|
steps: 'steps-201808092138.png',
|
|
switch: 'switch-201808092138.png',
|
|
tag: 'tag-201808092138.png',
|
|
'tree-select': 'tree-select-201808092138.png'
|
|
};
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
currentPage: null
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
image() {
|
|
if (this.currentPage === null) {
|
|
return '';
|
|
}
|
|
return PREFIX + (MAP[this.currentPage] || MAP.index);
|
|
}
|
|
},
|
|
|
|
created() {
|
|
window.switchImage = path => {
|
|
path = path.replace('/', '');
|
|
this.currentPage = path;
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="postcss">
|
|
body {
|
|
margin: 0;
|
|
color: #333;
|
|
line-height: 1;
|
|
background-color: #f8f8f8;
|
|
font-family: 'PingFang SC', Helvetica, 'STHeiti STXihei', 'Microsoft YaHei',
|
|
Tohoma, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.preview {
|
|
&-image {
|
|
width: 100%;
|
|
display: block;
|
|
margin-top: -62px;
|
|
}
|
|
|
|
&-popup {
|
|
opacity: 0;
|
|
z-index: 1;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(255, 255, 255, .95);
|
|
transition: .3s;
|
|
text-align: center;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
&-content {
|
|
left: 0;
|
|
top: 50%;
|
|
width: 100%;
|
|
height: 200px;
|
|
position: absolute;
|
|
text-align: center;
|
|
transform: translateY(-60%);
|
|
user-select: none;
|
|
|
|
img {
|
|
width: 180px;
|
|
height: 180px;
|
|
margin-bottom: 15px;
|
|
display: inline-block;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
color: #34495e;
|
|
line-height: 1.5;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|