Files
barter-app/pages/verification/index.vue

35 lines
587 B
Vue

<template>
<view class="Verification">
<image src="/static/images/hexiao_bg.png" mode="widthFix" />
<view class="">
<view class="">扫描券码和权证 一键核销</view>
<view class="">降低核销门槛 低成本留存优质客户</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss">
.Verification{
width: 100%;
height: 100vh;
background-color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
</style>