You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

454 lines
11 KiB

4 years ago
<template>
4 years ago
<view class="content_box">
4 years ago
<view class="orderBoxList">
<view class="orderBox">
<view class="orderBoxTitle flex-row">
4 years ago
<text class="orderBoxTitleTxt">预约信息</text>
4 years ago
</view>
<view class="orderBoxInfo flex-col">
4 years ago
<view class="orderBoxInfoRow flex-row">
4 years ago
<text class="iconfont icon-shijian"></text>
4 years ago
<text class="orderBoxInfoRowTxt">参观日期{{timeFormat(info.date, 'MM月DD日')}}</text>
</view>
<view class="orderBoxInfoRow flex-row">
<text class="iconfont icon-shijian"></text>
<text class="orderBoxInfoRowTxt">参观时段{{info.time||""}}</text>
4 years ago
</view>
4 years ago
<view class="orderBoxInfoRow flex-row">
4 years ago
<text class="iconfont icon-renshu"></text>
<text class="orderBoxInfoRowTxt">参观人数{{info.total||0}}</text></text>
4 years ago
</view>
4 years ago
4 years ago
</view>
4 years ago
4 years ago
</view>
</view>
4 years ago
<view class="orderBoxTitle flex-row">
<text style="padding-top:25rpx" class="orderBoxTitleTxt">可扫入馆码入馆</text>
</view>
<view class="orderBoxList p0">
<view class="orderBox">
<view v-if="info.type==1" class="orderBoxInfo flex-col ewmcode">
<text>入馆码{{info.code}}-0</text>
<view>
<view class="imgs">
<view :class="info.status!=1?'isuse':''">
<cover-image v-if="info.status==2" src="../../static/img/used.png" alt=""></cover-image>
<!-- <img v-if="info.status!=1" src="../../static/img/used.png" alt=""> -->
4 years ago
<canvas canvas-id='qrcode' style="width: 170px;height:170px;margin: 0 auto;">
4 years ago
<cover-view v-if="showview">
</cover-view>
</canvas>
</view>
</view>
</view>
<!-- <text class="ewminfo">{{isuse?'已使用':'请前往现场核销订单二维码'}}</text> -->
</view>
<block v-if="info.type==2">
<view class="orderBoxInfo flex-col ewmcode" :key='index' v-for="(item,index) in detailsinfo">
<text>入馆码{{info.code}}-{{item.code}}</text>
<view>
<view class="imgs">
<view :class="item.status!=1?'isuse':''">
<cover-image v-if="info.status==2" src="../../static/img/used.png" alt="">
</cover-image>
<!-- <img v-if="item.status!=1" src="../../static/img/used.png" alt=""> -->
<canvas :canvas-id="'qrcode'+index"
4 years ago
style="width: 170px;height:170px;margin: 0 auto;">
4 years ago
<cover-view v-if="showview">
</cover-view>
</canvas>
</view>
<view class="imgsname">
4 years ago
<text class="orderBoxTitleTxt">{{item.name}}</text>
<view class="orderBoxTitleTxt" style="font-size: 28rpx;" v-if="item.is_open==1">
可凭身份证入场馆
</view>
<view style="font-size: 28rpx;" class="orderBoxTitleTxt" v-if="item.is_open==0">
可凭二维码入场馆
</view>
4 years ago
</view>
</view>
4 years ago
4 years ago
</view>
<!-- <text class="ewminfo">{{isuse?'已使用':'请前往现场核销订单二维码'}}</text> -->
</view>
</block>
</view>
4 years ago
</view>
4 years ago
<!-- <view class="orderBoxList p0">
4 years ago
<view class="orderBox">
<view class="orderBoxTitle flex-row" style="justify-content: space-between;">
<text class="orderBoxTitleTxt">观众信息</text>
4 years ago
<text v-if="false" :class="isuse?'share shareuse orderBoxInfoRowTxt':'share orderBoxInfoRowTxt'">
4 years ago
分享二维码
</text>
</view>
<view class="orderBoxInfo flex-col">
4 years ago
<view class="orderBoxInfoRow flex-row"
:style="{'margin-bottom':((index+1)==info.details.length?0:'20rpx')}"
4 years ago
v-for="(item,index) in info.details">
<view>
<text class="iconfont icon-iconfontgerenzhongxin iconinfo"></text>
</view>
<view class="usercard">
<text class="orderBoxInfoRowTxt">{{item.name}}</text>
<text class="orderBoxInfoRowTxt">{{item.idcard}}</text>
</view>
</view>
</view>
</view>
4 years ago
</view> -->
<view>
<view class="orderBoxInfoRow flex-row" style="margin-top: 25rpx;">
<!-- <text class="iconfont icon-iconfontgerenzhongxin"></text> -->
<text v-if="info.type==1" class="orderBoxInfoRowTxt">{{info.leader||""}} {{info.mobile||""}}</text>
<text v-if="info.type==2" class="orderBoxInfoRowTxt">{{info.mobile||""}}</text>
</view>
<view class="orderBoxInfoRow flex-row" v-if="info.type==1" style="margin-top: 20rpx;">
<!-- <text class="iconfont icon-danwei"></text> -->
<text class="orderBoxInfoRowTxt">单位名称{{info.unit||""}}</text>
</view>
<view class="orderBoxInfoRow flex-row" style="margin-top: 20rpx">
<text class="orderBoxInfoRowTxt">下单时间{{info.created_at||""}}</text>
</view>
4 years ago
</view>
4 years ago
<view class="orderBoxList orderBoxListTip">
4 years ago
<view class="orderBoxTitle flex-row">
<text class="stars orderBoxTitleTxt">*</text>
<text class="orderBoxTitleTxt">参观须知</text>
</view>
4 years ago
<view class="flex-row" style="margin-top: 10rpx;">
4 years ago
<view style="text-indent: 2em;" class="orderBoxInfoRowTxt" v-html="info.type==1?vinfo.person_notice:vinfo.team_notice"></view>
4 years ago
</view>
</view>
4 years ago
</view>
</template>
<script>
4 years ago
import uQRCode from "@/utils/qrcode.js"
4 years ago
export default {
data() {
return {
4 years ago
info: {},
4 years ago
vinfo: {},
detailsinfo: [],
showview: false,
timer: null,
optionid: "",
timer: null
4 years ago
}
},
4 years ago
onLoad(options) {
4 years ago
this.loadIntroduce();
4 years ago
if (!this.util.isNull(options.id)) {
4 years ago
this.optionid = options.id
4 years ago
this.loadInfo(options.id);
4 years ago
}
4 years ago
},
onShow() {
var that = this
this.timer = setInterval(function() {
that.loadInfo(that.optionid);
}, 4000)
},
onHide() {
clearInterval(this.timer)
},
onUnload() {
clearInterval(this.timer)
},
4 years ago
methods: {
4 years ago
qrFun: function(text, qrcode) {
var id = "qrcode";
if (qrcode) {
id = qrcode
}
uQRCode.make({
canvasId: id,
componentInstance: this,
text: text,
4 years ago
size: 170,
4 years ago
// margin: 10,
backgroundColor: '#ffffff',
foregroundColor: '#000000',
fileType: 'jpg',
errorCorrectLevel: uQRCode.errorCorrectLevel.H,
success: res => {
}
})
4 years ago
},
4 years ago
loadIntroduce() {
var that = this;
this.util.request({
api: '/api/mobile/visit/introduce',
utilSuccess: function(res) {
that.vinfo = res;
},
utilFail: function(res) {
}
})
},
4 years ago
timeFormat(time, format) {
return this.$moment(time).format(format);
},
4 years ago
loadInfo(id) {
var that = this;
this.util.request({
api: '/api/mobile/user/my-visit-order-show',
data: {
id: id
4 years ago
},
customLoading:true,
4 years ago
utilSuccess: function(res) {
that.info = res;
4 years ago
that.detailsinfo = res.details;
if (res.status != 1) {
clearInterval(that.timer)
}
if (res.type == 1) {
that.qrFun(res.code + "-" + "0");
setTimeout(function() {
that.showview = true
}, 500)
}
if (res.type == 2) {
for (var i = 0; i < res.details.length; i++) {
that.qrFun(res.code + "-" + res.details[i].code, 'qrcode' + i);
}
setTimeout(function() {
that.showview = true
}, 500)
4 years ago
}
4 years ago
},
utilFail: function(res) {
uni.showToast({
icon: "none",
title: res
})
}
})
}
4 years ago
}
}
</script>
<style>
4 years ago
.orderBoxFooter {
4 years ago
padding: 20rpx 0 0 0;
}
.fbtn {
background: #EF9525;
border-radius: 8rpx;
font-size: 24rpx;
color: #FFFFFF;
padding: 7rpx 17rpx;
}
.cancel {
background: #F7F6F4;
color: #828282;
}
.iconfont {
color: #6EAC97;
margin-right: 20rpx;
4 years ago
font-size: 35rpx;
4 years ago
}
.infotop {
background: #FFFFFF;
box-shadow: 2rpx 3rpx 10rpx 0px rgba(107, 94, 77, 0.3);
}
page {
background-color: #f7f6f4;
}
.orderBoxList {
4 years ago
padding: 26rpx;
box-sizing: border-box;
background: #fff;
4 years ago
border-radius: 20rpx;
4 years ago
}
.orderBoxListTip {
background: none;
border-radius: 0rpx;
padding: 26rpx 10rpx;
}
.orderBoxListTip .orderBoxTitle {
padding-bottom: 10rpx
4 years ago
}
4 years ago
.content_box {
4 years ago
/* background: #FFFFFF; */
4 years ago
border-radius: 16rpx;
4 years ago
margin: 30rpx 27rpx;
}
.orderBox {
4 years ago
margin-bottom: 17rpx;
}
.orderBoxTitle {
padding: 0rpx 0rpx 25rpx 0rpx;
border-bottom: 2rpx solid #F7F6F4;
}
.orderBoxInfoRow {
4 years ago
align-items: center;
margin: 10rpx
4 years ago
}
.orderBoxTitleTxt {
font-size: 32rpx;
color: #351C1B;
}
.orderBoxStatus {
background: #EF9525;
border-top-right-radius: 16rpx;
border-bottom-left-radius: 16rpx;
font-size: 24rpx;
padding: 19rpx 23rpx 17rpx 23rpx;
color: #FFFFFF;
position: absolute;
right: 0;
top: 0;
}
.orderBoxInfo {
4 years ago
/* padding: 29rpx 0rpx; */
4 years ago
border-bottom: 2rpx solid #F7F6F4;
}
.orderBoxInfoRowTxt {
4 years ago
font-size: 30rpx !important;
4 years ago
font-family: PingFang SC;
color: #828282;
}
.orderBoxTime {
color: #CFCFCF;
padding: 23rpx 0;
border-bottom: 2rpx solid #F7F6F4;
font-size: 24rpx;
4 years ago
}
4 years ago
.p0 {
padding-top: 0;
border-left: 32rpx solid #ef9525
}
.ewmcode {
text-align: center;
font-size: 28rpx;
text-align: left;
font-size: 28rpx;
margin-left: 18rpx;
padding-bottom: 0;
padding-top: 30rpx;
}
.imgs {
4 years ago
margin: 30rpx 0 0rpx 0;
4 years ago
font-size: 0;
display: inline-block;
}
4 years ago
.imgs view {
position: relative;
display: inline-block;
margin-bottom: 20rpx;
}
4 years ago
.imgs cover-image {
4 years ago
position: absolute;
width: 200rpx;
height: 200rpx;
z-index: 999;
opacity: 1;
right: 0rpx;
bottom: 0rpx;
}
.imgs canvas {
display: inline-block;
vertical-align: middle;
}
.imgsname {
display: inline-block;
text-align: center;
margin-left: 15rpx;
flex: 1;
}
.imgs text {
display: block;
/* margin-left: 40rpx; */
}
.imgs .isuse cover-view {
background-color: rgba(255, 255, 255, 0.6);
4 years ago
width: 170px;
height: 170px;
4 years ago
}
4 years ago
.ewminfo {
color: #828282;
font-size: 24rpx;
}
.iconinfo {
font-size: 35rpx;
}
.usercard text {
display: block;
}
.share {
background: url(../../static/img/share.png) no-repeat left center;
background-size: 21rpx;
background-color: #EF9525;
background-position: 18rpx;
padding: 7rpx 20rpx;
padding-left: 46rpx;
border-radius: 10px;
color: #fff;
}
.shareuse {
background: url(../../static/img/share_used.png) no-repeat left center;
background-color: #F7F6F4;
color: #828282;
background-position: 18rpx;
background-size: 21rpx;
}
.stars {
color: #EF9525;
margin-right: 12rpx
4 years ago
}
4 years ago
</style>