emis-app/pages/user/exclusiveQrcode.vue
2023-12-20 23:17:23 +08:00

67 lines
1.5 KiB
Vue

<template>
<view style="padding: 2rpx 30rpx;">
<view class="blcok-white" style="padding: 40rpx 0;">
<u-row justify="center">
<view>
<u-row>
<u-avatar size="120"></u-avatar>
<view class="pl-30">
<u-row>
<u-text text="张三" size="32" bold="true"></u-text>
<view class="ml-20 font-24 pos-rlt" style="padding: 8rpx 12rpx;">南京网点
<view class="pos-abt-all" style="z-index: 0;background: #999;opacity: 0.2;border-radius: 20rpx;"></view>
</view>
</u-row>
<view class="mt-20 font-24">13712345678</view>
</view>
</u-row>
<view class="mt-30">
<u-image height="600" width="600" radius="10"></u-image>
</view>
<view class="mt-40">
<u-row justify="between">
<view style="width: 200rpx;">
<u-button type="primary" custom-style="border-radius: 10rpx;">保存到本地</u-button>
</view>
<view style="width: 200rpx;">
<u-button type="primary" plain="true" custom-style="border-radius: 10rpx;">打印</u-button>
</view>
</u-row>
</view>
</view>
</u-row>
</view>
</view>
</template>
<script>
import getCdnUrl from "@/common/getCdnUrl"
export default {
props: {
},
data() {
return {
}
},
onShareAppMessage() {
return {
}
},
methods: {
getCdnUrl,
}
}
</script>
<style lang="scss">
@import '@/common/uni-nvue.scss';
page{
height: 100% !important;
}
</style>
<style scoped lang="scss">
</style>