|
@@ -0,0 +1,365 @@
|
|
|
+<template>
|
|
|
+ <view class="main">
|
|
|
+ <view v-if="user.type=='1'">
|
|
|
+ <view class="one"> <text>{{info.zhStatus}}</text> </view>
|
|
|
+ <view class="two">
|
|
|
+ <view class="two_1">
|
|
|
+ <image v-if="info.no&&info.no.source&&info.no.source.file.length>0" class="image"
|
|
|
+ :src="info.no.source.file&&info.no.source.file.length>0?info.no.source.file[0].url:''">
|
|
|
+ </image>
|
|
|
+ <image v-else class="image"
|
|
|
+ :src="config.logo_url&&config.logo_url.length>0?config.logo_url[0].url:''">
|
|
|
+ </image>
|
|
|
+ <text v-if="info.no.type=='0'">酒店民宿</text>
|
|
|
+ <text v-else>景区门票</text>
|
|
|
+ </view>
|
|
|
+ <view class="two_2">
|
|
|
+ <view class="left">
|
|
|
+ <image v-if="info.no&&info.no.source&&info.no.source.file.length>0" class="image"
|
|
|
+ :src="info.no.source.file&&info.no.source.file.length>0?info.no.source.file[0].url:''">
|
|
|
+ </image>
|
|
|
+ <image v-else class="image"
|
|
|
+ :src="config.logo_url&&config.logo_url.length>0?config.logo_url[0].url:''">
|
|
|
+ </image>
|
|
|
+ </view>
|
|
|
+ <view class="right">
|
|
|
+ <view class="right_1">
|
|
|
+ <view class="left">
|
|
|
+ <view class="name textOver">{{info.source_name||'暂无'}}</view>
|
|
|
+ <view class="other">{{info.zhType||'暂无'}}</view>
|
|
|
+ <view class="other">{{info.zhPerson||'暂无'}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="right">
|
|
|
+ <view class="other">
|
|
|
+ ¥{{info.no.source.money||'0'}}
|
|
|
+ </view>
|
|
|
+ <view class="other">
|
|
|
+ ×{{info.no.num||'0'}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="right_2">
|
|
|
+ 实付 ¥{{info.no.money||'0'}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="thr">
|
|
|
+ <view class="thr_1">优惠</view>
|
|
|
+ <view class="other">商品总价:¥{{info.no.money||'0'}} <text>(共{{info.no.num||'0'}}件)</text> </view>
|
|
|
+ <view class="other">优惠:¥{{info.no.discount||'0'}}</view>
|
|
|
+ <view class="other">实付 ¥{{info.no.money||'0'}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="four">
|
|
|
+ <view class="four_1">订单信息</view>
|
|
|
+ <view class="other">真实姓名:{{info.name||'暂无'}}</view>
|
|
|
+ <view class="other">证件号码:{{info.card||'暂无'}}</view>
|
|
|
+ <view class="other">手机号码:{{info.phone||'暂无'}}</view>
|
|
|
+ <view class="other">购买日期:{{info.no.date||'暂无'}}</view>
|
|
|
+ <view class="other">订单编号:{{info.no._id||'暂无'}}</view>
|
|
|
+ <view class="other">下单时间:{{info.no.buy_time||'暂无'}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="four">
|
|
|
+ <view class="four_1">支付信息</view>
|
|
|
+ <view class="other">支付时间:{{info.no.pay_time||'暂无'}}</view>
|
|
|
+ <view class="other">交易快照:当发生交易纠纷时可作为交易凭证 ></view>
|
|
|
+ <view class="other">支付数据:{{info.no.pay||'暂无'}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="five" v-if="info.status=='1'">
|
|
|
+ <button class="button" type="primary" size="mini" @tap="toOff()">确定核销</button>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="one" v-else>暂无权限核销券码</view>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ id: '',
|
|
|
+ config: {
|
|
|
+ logo_url: []
|
|
|
+ },
|
|
|
+ user: {},
|
|
|
+ info: {
|
|
|
+ no: {
|
|
|
+ source: {
|
|
|
+ file: []
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ statusList: [],
|
|
|
+ personList: [],
|
|
|
+ typeList: [],
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onLoad: async function(e) {
|
|
|
+ const that = this;
|
|
|
+ that.$set(that, `id`, e && e.id || '');
|
|
|
+ },
|
|
|
+ onShow: function() {
|
|
|
+ const that = this;
|
|
|
+ that.searchToken();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ searchConfig() {
|
|
|
+ const that = this;
|
|
|
+ try {
|
|
|
+ const res = uni.getStorageSync('config');
|
|
|
+ if (res) that.$set(that, `config`, res);
|
|
|
+ } catch (e) {
|
|
|
+ uni.showToast({
|
|
|
+ title: err.errmsg,
|
|
|
+ icon: 'error',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async searchToken() {
|
|
|
+ const that = this;
|
|
|
+ try {
|
|
|
+ const res = uni.getStorageSync('token');
|
|
|
+ if (res) {
|
|
|
+ const arr = await that.$api(`/user/${res._id}`, 'GET', {})
|
|
|
+ if (arr.errcode == '0') {
|
|
|
+ that.$set(that, `user`, arr.data);
|
|
|
+ if (arr.data.type == '1') {
|
|
|
+ that.searchConfig();
|
|
|
+ await that.searchOther();
|
|
|
+ await that.search();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: `/pagesIndex/login/index`
|
|
|
+ })
|
|
|
+ }
|
|
|
+ } catch (e) {
|
|
|
+ uni.showToast({
|
|
|
+ title: err.errmsg,
|
|
|
+ icon: 'error',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async search() {
|
|
|
+ const that = this;
|
|
|
+ if (that.id) {
|
|
|
+ const res = await that.$api(`/orderDetail/${that.id}`, 'GET', {})
|
|
|
+ if (res.errcode == '0') {
|
|
|
+ const status = that.statusList.find(i => i.value == res.data.status)
|
|
|
+ if (status) res.data.zhStatus = status.label
|
|
|
+ if (res.data && res.data.no && res.data.no.source && res.data.no.source.person) {
|
|
|
+ const person = that.personList.find(i => i.value == res.data.no.source.person)
|
|
|
+ if (person) res.data.zhPerson = person.label
|
|
|
+ }
|
|
|
+ if (res.data && res.data.no && res.data.no.source && res.data.no.source.type) {
|
|
|
+ const type = that.typeList.find(i => i.value == res.data.no.source.type)
|
|
|
+ if (type) res.data.zhType = type.label
|
|
|
+ }
|
|
|
+ res.data.phone = res.data.phone.replace(/^(\d{3})(\d{4})(\d{4})$/, "$1****$2")
|
|
|
+ that.$set(that, `info`, res.data)
|
|
|
+ } else {
|
|
|
+ uni.showToast({
|
|
|
+ title: res.errmsg,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 核销券码
|
|
|
+ async toOff() {
|
|
|
+ const that = this;
|
|
|
+ uni.showModal({
|
|
|
+ title: '提示',
|
|
|
+ content: '确定核销券码吗?',
|
|
|
+ success: async function(res) {
|
|
|
+ if (res.confirm) {
|
|
|
+ const res = await that.$api(`/orderDetail/${that.id}`, 'POST', {
|
|
|
+ status: "2"
|
|
|
+ })
|
|
|
+ if (res.errcode == '0') {
|
|
|
+ uni.showToast({
|
|
|
+ title: `核销券码成功`,
|
|
|
+ });
|
|
|
+ that.search();
|
|
|
+ } else {
|
|
|
+ uni.showToast({
|
|
|
+ title: res.errmsg,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 查询其他信息
|
|
|
+ async searchOther() {
|
|
|
+ const that = this;
|
|
|
+ let res;
|
|
|
+ // 查询类型
|
|
|
+ res = await that.$api(`/dictData`, 'GET', {
|
|
|
+ type: 'order_status',
|
|
|
+ is_use: '0',
|
|
|
+ })
|
|
|
+ if (res.errcode == '0') that.$set(that, `statusList`, res.data);
|
|
|
+ // 出游人群
|
|
|
+ res = await that.$api(`/dictData`, 'GET', {
|
|
|
+ type: 'ticket_person',
|
|
|
+ is_use: '0',
|
|
|
+ })
|
|
|
+ if (res.errcode == '0') that.$set(that, `personList`, res.data);
|
|
|
+ // 服务特色
|
|
|
+ res = await that.$api(`/dictData`, 'GET', {
|
|
|
+ type: 'ticket_type',
|
|
|
+ is_use: '0',
|
|
|
+ })
|
|
|
+ if (res.errcode == '0') that.$set(that, `typeList`, res.data);
|
|
|
+ },
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+ .main {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ width: 100vw;
|
|
|
+ height: 100vh;
|
|
|
+ background-image: linear-gradient(to top, rgba(241, 241, 241, 1), rgba(135, 206, 250, 1), rgba(0, 122, 255, 1));
|
|
|
+
|
|
|
+ .one {
|
|
|
+ padding: 5vw;
|
|
|
+ font-size: var(--font20Size);
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
+ .two {
|
|
|
+ background-color: var(--mainColor);
|
|
|
+ border-radius: 5px;
|
|
|
+ margin: 2vw 2vw 0 2vw;
|
|
|
+ padding: 2vw;
|
|
|
+
|
|
|
+ .two_1 {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ .image {
|
|
|
+ width: 8vw;
|
|
|
+ height: 8vw;
|
|
|
+ border-radius: 8vw;
|
|
|
+ }
|
|
|
+
|
|
|
+ text {
|
|
|
+ padding: 0 0 0 2vw;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .two_2 {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin: 2vw 0 0 0;
|
|
|
+ padding: 0 2vw;
|
|
|
+
|
|
|
+ .left {
|
|
|
+ width: 20vw;
|
|
|
+
|
|
|
+ .image {
|
|
|
+ width: 20vw;
|
|
|
+ height: 20vw;
|
|
|
+ border-radius: 1vw;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .right {
|
|
|
+ width: 65vw;
|
|
|
+ margin: 0 0 0 2vw;
|
|
|
+
|
|
|
+ .right_1 {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+
|
|
|
+ .left {
|
|
|
+ width: 55vw;
|
|
|
+
|
|
|
+ .name {
|
|
|
+ font-size: var(--font14Size);
|
|
|
+ }
|
|
|
+
|
|
|
+ .other {
|
|
|
+ padding: 2px 0 0 0;
|
|
|
+ font-size: var(--font12Size);
|
|
|
+ color: var(--f85Color);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .right {
|
|
|
+ width: 10vw;
|
|
|
+ text-align: right;
|
|
|
+
|
|
|
+ .other {
|
|
|
+ padding: 2px 0 0 0;
|
|
|
+ font-size: var(--font12Size);
|
|
|
+ color: var(--f85Color);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .right_2 {
|
|
|
+ text-align: right;
|
|
|
+ font-size: var(--font12Size);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .thr {
|
|
|
+ background-color: var(--mainColor);
|
|
|
+ border-radius: 5px;
|
|
|
+ margin: 2vw 2vw 0 2vw;
|
|
|
+ padding: 2vw;
|
|
|
+
|
|
|
+ .thr_1 {
|
|
|
+ font-size: var(--font14Size);
|
|
|
+ font-weight: bold;
|
|
|
+ margin: 1vw 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .other {
|
|
|
+ padding: 2px 0 0 0;
|
|
|
+ font-size: var(--font12Size);
|
|
|
+ color: var(--f85Color);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .four {
|
|
|
+ background-color: var(--mainColor);
|
|
|
+ border-radius: 5px;
|
|
|
+ margin: 2vw 2vw 0 2vw;
|
|
|
+ padding: 2vw;
|
|
|
+
|
|
|
+ .four_1 {
|
|
|
+ font-size: var(--font14Size);
|
|
|
+ font-weight: bold;
|
|
|
+ margin: 1vw 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .other {
|
|
|
+ padding: 2px 0 0 0;
|
|
|
+ font-size: var(--font12Size);
|
|
|
+ color: var(--f85Color);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .five {
|
|
|
+ margin: 2vw 2vw 0 2vw;
|
|
|
+ text-align: center;
|
|
|
+
|
|
|
+ .button {
|
|
|
+ margin: 2vw 0 0 0;
|
|
|
+ background-color: var(--f3CColor);
|
|
|
+ color: var(--mainColor);
|
|
|
+ font-size: var(--font14Size);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</style>
|