123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <template>
- <view class="content" style="height: 100vh;">
- <view class="" style="height: 87rpx;">
- </view>
- <view class="djq-wrap">
- <view class="djq-top flex f-d-c f-j-c">
- <view class="djq-name">
- 服务确认二维码
- </view>
- <view class="djq-time">
- 请扫码核销
- </view>
- </view>
- <view class="djq-body">
- <view class="ewm">
- <tki-qrcode :cid="cid" ref="qrcode" :val="val" :size="size" :unit="unit" :background="background"
- :foreground="foreground" :pdground="pdground" :iconSize="iconSize" :lv="lv" :onval="onval"
- :loadMake="loadMake" :usingComponents="usingComponents" @result="qrR" />
- </view>
- <view class="ewm-code" >
- {{showVal}}
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import tkiQrcode from '@/components/tki-qrcode/tki-qrcode.vue';
-
- import {
- orderDetail
- } from '@/api/order.js';
- export default {
- components: {
- tkiQrcode
- },
- data() {
- return {
- showVal: '',
- type: 1,
- orderInfo: {},
- order_id: '',
- cid: 'tki-qrcode-canvas',
- size: 440,
- unit: 'upx',
- show: true,
- val: '',
- background: '#ffffff',
- foreground: '#333333',
- pdground: '#333333',
- icon: '',
- iconSize: 40,
- lv: 3,
- onval: true,
- loadMake: true,
- usingComponents: false,
- showLoading: false,
- loadingText: '二维码生成中',
- src: '',
- ratio: 1,
- ctxSrc: '',
- loading: true,
- }
- },
- onLoad(opt) {
- this.type = opt.type
- this.val = opt.val
- },
- onShow() {
- },
- onReachBottom() {
- },
- onReady() {
- },
- methods: {
- getOrderDetail() {
- let that = this;
- orderDetail({}, that.order_id).then(e => {
-
- that.orderInfo = e.data
- that.val = that.orderInfo.verify_code
- that.showVal = that.val
- });
- },
- qrR() {
-
- },
-
- }
- }
- </script>
- <style lang="scss" scoped>
- page .content{
- min-height: 100%;
- height: auto;
- background:$base-color !important;
- }
- .djq-wrap {
- width: 696rpx;
- background-color: #fff;
- position: relative;
- margin: auto;
- .djq-top {
- height: 185rpx;
- background: #F5F5F5;
- overflow: hidden;
- flex-direction: column;
- justify-content: center;
- .djq-name {
- font-size: 44rpx;
- font-weight: bold;
- color: #222222;
- }
- .djq-time {
- font-size: 24rpx;
- font-weight: 500;
- color: #686868;
- }
- &::after,
- &::before {
- content: '';
- height: 120rpx;
- width: 120rpx;
- border-radius: 50%;
- position: absolute;
- top: -60rpx;
- background-color: $base-color;
- }
- &::before {
- left: -60rpx;
- }
- &::after {
- right: -60rpx;
- }
- }
- .djq-body {
- height: 770rpx;
- position: relative;
- padding-top: 115rpx;
- &::after,
- &::before {
- content: '';
- height: 120rpx;
- width: 120rpx;
- border-radius: 50%;
- position: absolute;
- bottom: -60rpx;
- background-color: $base-color;
- }
- &::before {
- left: -60rpx;
- }
- &::after {
- right: -60rpx;
- }
- .ewm {
- width: 440rpx;
- height: 440rpx;
- margin: auto;
- }
- .ewm-code {
- padding-top: 55rpx;
- font-size: 44rpx;
- font-weight: bold;
- color: #333333;
- text-align: center;
- }
- }
- }
- </style>
|