| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <template>
- <view>
- <view class="bg-img flex align-center" style="background-image: url('/static/ldt/mineBgImg.png');height: 372upx;">
- <view class="flex align-center">
- <view class="avatar">
- <u-avatar src="/static/avatar.png" size="110"></u-avatar>
- </view>
- <view class="name">赖德福|德芙值得信赖</view>
- </view>
- </view>
- <view class="container">
- <view class="text-center padding-top-sm">
- <tkiBarcode cid="itf14" :loadMake="false" format="itf14" val="1234567890123" ref="itf14" @result="itf14" />
- </view>
- </view>
- <view class="text-bold text-black" style="padding: 0 0 30upx 30upx;">我的账户</view>
- <view class="flex">
- <view>
- <view>2000</view>
- <view>我的积分</view>
- </view>
- <view>
- <view>+200</view>
- <view>昨日收益</view>
- </view>
- <view>
- <image src="/static/ldt/swapPoints.png" style="width: 41upx;height: 37upx;"></image>
- </view>
- </view>
- </view>
- </template>
- <script>
- import tkiBarcode from "@/components/tki-barcode/tki-barcode.vue"
- export default {
- components: {
- tkiBarcode
- },
- data() {
- return {
-
- }
- },
- mounted() {
- this.$refs['itf14']._makeCode()
- },
- methods: {
- itf14(v) {
- // console.log('itf14:', v)
- },
- }
- }
- </script>
- <style>
- .avatar {
- padding-left: 40upx;
- padding-right: 20upx;
- }
- .name {
- font-size: 26upx;
- font-family: PingFang SC;
- font-weight: 600;
- color: #222222;
- }
- .container {
- background-color: #ffffff;
- margin: -120upx 30upx 30upx 30upx;
- height: 180upx;
- border-radius: 100upx;
- box-shadow: 10upx 20upx 60upx #d8d8d8;
- }
- </style>
|