Files
dvcp_v2_wxcp_app/src/saas/AppCountryAlbum/Watermark.vue

46 lines
697 B
Vue
Raw Normal View History

2022-05-10 18:18:59 +08:00
<template>
<div class="photo">
<image mode="aspectFit" src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/64f71761d2b04746ad640a43706a92e4~tplv-k3u1fbpfcp-zoom-crop-mark:1304:1304:1304:734.awebp?" />
</div>
</template>
<script>
export default {
name: 'Watermark',
appName: '水印相机',
data () {
return {
}
},
onLoad () {
},
methods: {
back () {
uni.navigateBack({
delta: 1
})
}
}
}
</script>
<style lang="scss" scoped>
.photo {
position: relative;
width: 100%;
height: 100vh;
background: #000;
& > image {
width: 100%;
height: 100%;
}
}
</style>