mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-20 15:38:11 +00:00
473 lines
11 KiB
Vue
473 lines
11 KiB
Vue
<template>
|
||
<view class="main" :style="colorStyle">
|
||
<view class="head" v-if="!resData.type && !resData.paid">
|
||
<view class="user-img">
|
||
<image class="" :src="resData.avatar" mode=""></image>
|
||
</view>
|
||
<!-- paid: 0 未支付 1 已支付 type:0 本人 1 好友-->
|
||
<view class="order-status" v-if="!resData.paid && !resData.type">
|
||
{{$t(`代付订单创建成功,发给好友帮你付款吧~`)}}
|
||
</view>
|
||
</view>
|
||
<view class="head-other" v-else>
|
||
<view class="user-img">
|
||
<image class=""
|
||
:src="resData.paid && !resData.type && resData.pay_uid === $store.state.app.uid ? resData.pay_avatar : resData.avatar"
|
||
mode="">
|
||
</image>
|
||
</view>
|
||
<view class="order-status">
|
||
<view class="head-other-nickname">
|
||
{{resData.paid && !resData.type && resData.pay_uid === $store.state.app.uid ? resData.pay_nickname : resData.nickname}}
|
||
</view>
|
||
<view class="head-other-trip" v-if="!resData.paid && resData.type">
|
||
{{$t(`帮我付一下这件商品了,谢谢~`)}}
|
||
</view>
|
||
<view class="head-other-trip"
|
||
v-if="resData.pay_uid !== $store.state.app.uid && resData.paid && resData.type">
|
||
{{$t(`已经有人替我代付,谢谢啦~`)}}
|
||
</view>
|
||
<view class="head-other-trip"
|
||
v-if="resData.pay_uid === $store.state.app.uid && resData.paid && resData.type">
|
||
{{$t(`谢谢你帮我支付,么么哒~`)}}
|
||
</view>
|
||
<view class="head-other-trip" v-if="resData.pay_uid !== resData.uid && resData.paid && !resData.type">
|
||
{{$t(`我已为你代付成功,商家正在努力发货中~`)}}
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="order-msg">
|
||
<view class="pay-success" v-if="resData.paid && !resData.type">
|
||
{{$t(`好友代付成功,商家正在努力发货中~`)}}
|
||
</view>
|
||
<view v-else class="pay--box">
|
||
<view class="order-top">
|
||
{{$t(`代付金额`)}}
|
||
</view>
|
||
<view class="order-num">
|
||
<text class="icon">{{$t(`¥`)}}</text>
|
||
{{resData.pay_price}}
|
||
</view>
|
||
</view>
|
||
<!-- #ifdef APP-PLUS -->
|
||
<view v-if="!resData.paid && !resData.type" class="order-btn" @click="appShare('WXSceneSession')">
|
||
{{$t(`发送给微信好友`)}}
|
||
</view>
|
||
<!-- #endif -->
|
||
<!-- #ifdef H5 -->
|
||
<view v-if="!resData.paid && !resData.type" class="order-btn" @click="shareFriend">
|
||
{{$t(`发送给微信好友`)}}
|
||
</view>
|
||
<!-- #endif -->
|
||
<!-- #ifdef MP -->
|
||
<button v-if="!resData.paid && !resData.type" class="order-btn" open-type="share" hover-class="none"
|
||
@click="shareModal = false">
|
||
{{$t(`发送给微信好友`)}}
|
||
</button>
|
||
<!-- #endif -->
|
||
<button v-if="!resData.paid && !resData.type" class="order-btn detail" @click="goOrderDetail()">
|
||
{{$t(`查看订单详情`)}}
|
||
</button>
|
||
<button class="order-btn" v-if="!resData.paid && resData.type" @tap='payOpen()'>{{$t(`立即付款`)}}</button>
|
||
<button class="order-btn on-pay" v-if="resData.paid && resData.type">{{$t(`订单已支付`)}}</button>
|
||
<button class="order-btn" v-if="resData.paid && !resData.type" @tap='goOrderDetail()'>{{$t(`查看订单详情`)}}</button>
|
||
<view class="order-trip" v-if="resData.pay_uid === $store.state.app.uid && resData.type">
|
||
{{$t(`如果订单申请退款,已支付金额将原路退还给您`)}}
|
||
</view>
|
||
</view>
|
||
<view class="order-list">
|
||
<orderGoods :cartInfo="resData.cartInfo" :is_confirm='true' :pay_price="resData.pay_price"
|
||
:is_behalf="resData.paid && !resData.type ? true :false"></orderGoods>
|
||
</view>
|
||
<view class="share-box" v-if="shareModal">
|
||
<image src="../static/share-info2.png" @click="shareModal = false"></image>
|
||
</view>
|
||
<payment :payMode='payMode' :pay_close="pay_close" :friendPay="true" @onChangeFun='onChangeFun'
|
||
:order_id="order_id" :totalPrice='resData.pay_price'></payment>
|
||
<!-- #ifndef MP -->
|
||
<home></home>
|
||
<!-- #endif -->
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import orderGoods from '@/components/orderGoods';
|
||
import colors from "@/mixins/color";
|
||
import payment from '@/components/payment';
|
||
import home from '@/components/home/index.vue'
|
||
import {
|
||
friendDetail
|
||
} from '@/api/user.js'
|
||
import {
|
||
HTTP_REQUEST_URL
|
||
} from "@/config/app.js";
|
||
import {
|
||
toLogin
|
||
} from '@/libs/login.js';
|
||
import {
|
||
mapGetters
|
||
} from "vuex";
|
||
|
||
export default {
|
||
mixins: [colors],
|
||
components: {
|
||
orderGoods,
|
||
payment,
|
||
home
|
||
},
|
||
computed: mapGetters(["isLogin"]),
|
||
data() {
|
||
return {
|
||
shareModal: false,
|
||
cartInfo: [],
|
||
resData: {},
|
||
payMode: [{
|
||
name: this.$t(`微信支付`),
|
||
icon: "icon-weixinzhifu",
|
||
value: 'weixin',
|
||
title: this.$t(`使用微信快捷支付`),
|
||
payStatus: true,
|
||
},
|
||
// #ifdef H5 || APP-PLUS
|
||
// {
|
||
// name: '支付宝支付',
|
||
// icon: 'icon-zhifubao',
|
||
// value: 'alipay',
|
||
// title: '使用线上支付宝支付',
|
||
// payStatus: true
|
||
// },
|
||
// #endif
|
||
],
|
||
pay_close: false,
|
||
order_id: ''
|
||
}
|
||
},
|
||
watch: {
|
||
isLogin: {
|
||
handler: function(newV, oldV) {
|
||
if (newV == true) {
|
||
this.getDetail()
|
||
}
|
||
},
|
||
deep: true,
|
||
},
|
||
},
|
||
onReady() {
|
||
// uni.setNavigationBarTitle({
|
||
// title: '好友代付' || '支付成功'
|
||
// });
|
||
},
|
||
onLoad(option) {
|
||
this.order_id = option.order_id
|
||
},
|
||
onShow() {
|
||
if (this.isLogin) {
|
||
this.getDetail()
|
||
} else {
|
||
toLogin();
|
||
}
|
||
},
|
||
// #ifdef MP
|
||
onShareAppMessage() {
|
||
let that = this;
|
||
return {
|
||
title: "",
|
||
imageUrl: "",
|
||
path: "/pages/users/payment_on_behalf/index?order_id=" + that.order_id + "&spread=" + this.$store.state.app
|
||
.uid,
|
||
};
|
||
},
|
||
// #endif
|
||
methods: {
|
||
/**
|
||
* 打开支付组件
|
||
*
|
||
*/
|
||
payOpen() {
|
||
this.pay_close = true;
|
||
},
|
||
getDetail() {
|
||
let that = this;
|
||
friendDetail(this.order_id).then(res => {
|
||
this.resData = res.data.info
|
||
if (this.resData.paid && !this.resData.type) {
|
||
this.goOrderDetail()
|
||
}
|
||
//#ifdef H5
|
||
this.ShareInfo(this.resData)
|
||
//#endif
|
||
}).catch((err) => {
|
||
that.$util.Tips({
|
||
title: err
|
||
}, {
|
||
tab: 4,
|
||
url: '/pages/index/index'
|
||
});
|
||
});
|
||
},
|
||
//#ifdef H5
|
||
ShareInfo(data) {
|
||
let href = location.href;
|
||
if (this.$wechat.isWeixin()) {
|
||
let configAppMessage = {
|
||
desc: this.$t(`帮我付一下这件商品了,谢谢~`),
|
||
title: this.$t(`好友代付`),
|
||
link: href,
|
||
imgUrl: data.avatar,
|
||
};
|
||
this.$wechat
|
||
.wechatEvevt(
|
||
[
|
||
"updateAppMessageShareData",
|
||
"updateTimelineShareData",
|
||
"onMenuShareAppMessage",
|
||
"onMenuShareTimeline",
|
||
],
|
||
configAppMessage
|
||
)
|
||
.then((res) => {})
|
||
.catch((err) => {});
|
||
}
|
||
},
|
||
//#endif
|
||
// #ifdef APP-PLUS
|
||
appShare(scene) {
|
||
let that = this;
|
||
let routes = getCurrentPages(); // 获取当前打开过的页面路由数组
|
||
let curRoute = routes[routes.length - 1].$page.fullPath; // 获取当前页面路由,也就是最后一个打开的页面路由
|
||
uni.share({
|
||
provider: "weixin",
|
||
scene: scene,
|
||
type: 0,
|
||
href: `${HTTP_REQUEST_URL}${curRoute}`,
|
||
title: that.$t(`好友代付`),
|
||
summary: that.$t(`帮我付一下这件商品了,谢谢~`),
|
||
imageUrl: that.resData.paid && !that.resData.type && that.resData.pay_uid === that.$store.state
|
||
.app.uid ? that.resData.pay_avatar : that.resData.avatar,
|
||
success: function(res) {
|
||
uni.showToast({
|
||
title: that.$t(`分享成功`),
|
||
icon: "success",
|
||
duration: 2000,
|
||
});
|
||
},
|
||
fail: function(err) {
|
||
uni.showToast({
|
||
title: that.$t(`分享失败`),
|
||
icon: "none",
|
||
duration: 2000,
|
||
});
|
||
},
|
||
});
|
||
},
|
||
// #endif
|
||
shareFriend() {
|
||
// #ifndef MP
|
||
this.shareModal = true;
|
||
// #endif
|
||
},
|
||
/**
|
||
* 事件回调
|
||
*
|
||
*/
|
||
onChangeFun(e) {
|
||
let opt = e;
|
||
let action = opt.action || null;
|
||
let value = opt.value != undefined ? opt.value : null;
|
||
(action && this[action]) && this[action](value);
|
||
},
|
||
/**
|
||
* 关闭支付组件
|
||
*/
|
||
payClose() {
|
||
this.pay_close = false;
|
||
},
|
||
/**
|
||
* 支付失败回调
|
||
*/
|
||
pay_fail() {
|
||
this.pay_close = false;
|
||
},
|
||
/**
|
||
* 支付成功回调
|
||
*/
|
||
pay_complete() {
|
||
this.pay_close = false;
|
||
this.getDetail();
|
||
uni.navigateTo({
|
||
url: '/pages/users/payment_on_behalf/pay_status?order_id=' + this.order_id
|
||
})
|
||
},
|
||
goOrderDetail() {
|
||
uni.navigateTo({
|
||
url: '/pages/goods/order_details/index?order_id=' + this.order_id
|
||
})
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.main {
|
||
background-color: #f5f5f5;
|
||
|
||
.head {
|
||
background-color: var(--view-theme);
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 60rpx 0 62rpx 0;
|
||
|
||
.user-img {
|
||
image {
|
||
width: 68rpx;
|
||
height: 68rpx;
|
||
border-radius: 50%;
|
||
}
|
||
|
||
}
|
||
|
||
.order-status {
|
||
margin-top: 20rpx;
|
||
font-size: 28rpx;
|
||
color: #fff;
|
||
}
|
||
}
|
||
|
||
.head-other {
|
||
background-color: var(--view-theme);
|
||
display: flex;
|
||
align-items: center;
|
||
padding: 60rpx 0 60rpx 30rpx;
|
||
|
||
.user-img {
|
||
display: flex;
|
||
align-items: center;
|
||
|
||
image {
|
||
width: 100rpx;
|
||
height: 100rpx;
|
||
border-radius: 50%;
|
||
}
|
||
}
|
||
|
||
.order-status {
|
||
margin-left: 20rpx;
|
||
color: #fff;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: space-between;
|
||
height: 100rpx;
|
||
position: relative;
|
||
|
||
.head-other-nickname {
|
||
font-size: 28rpx;
|
||
}
|
||
|
||
.head-other-trip {
|
||
padding: 6rpx 13rpx;
|
||
font-size: 26rpx;
|
||
background-color: rgba(255, 255, 255, 0.2);
|
||
border-radius: 6rpx;
|
||
}
|
||
|
||
.head-other-trip::after {
|
||
content: "";
|
||
width: 0rpx;
|
||
height: 0rpx;
|
||
border: 10rpx solid rgba(255, 255, 255, 0.2);
|
||
border-bottom: 10rpx solid transparent;
|
||
border-left: 10rpx solid transparent;
|
||
border-top: 10rpx solid transparent;
|
||
position: absolute;
|
||
left: -20rpx;
|
||
bottom: 15rpx;
|
||
}
|
||
}
|
||
}
|
||
|
||
.order-msg {
|
||
background-color: #fff;
|
||
border-radius: 14rpx 14rpx 0 0;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
padding: 40rpx 0;
|
||
margin: -30rpx 30rpx 0 30rpx;
|
||
|
||
.pay--box {
|
||
text-align: center;
|
||
}
|
||
|
||
.pay-success {
|
||
font-size: 30rpx;
|
||
color: #333;
|
||
font-weight: bold;
|
||
}
|
||
|
||
.order-num {
|
||
.icon {
|
||
font-size: 30rpx;
|
||
}
|
||
|
||
font-size: 66rpx;
|
||
color: #333;
|
||
font-weight: bold;
|
||
}
|
||
|
||
.order-btn {
|
||
width: 90%;
|
||
background-color: var(--view-theme);
|
||
border-radius: 80rpx;
|
||
padding: 26rpx 0;
|
||
color: #fff;
|
||
font-size: 30rpx;
|
||
text-align: center;
|
||
margin-top: 60rpx;
|
||
}
|
||
|
||
.order-btn.detail {
|
||
margin-top: 20rpx;
|
||
color: var(--view-theme);
|
||
background-color: #fff;
|
||
border: 1px solid var(--view-theme);
|
||
}
|
||
|
||
.order-btn.on-pay {
|
||
background-color: #ccc;
|
||
}
|
||
|
||
.order-trip {
|
||
color: #999;
|
||
font-size: 26rpx;
|
||
margin-top: 32rpx;
|
||
}
|
||
}
|
||
|
||
.order-list {
|
||
margin: 30rpx;
|
||
border-radius: 14rpx;
|
||
overflow: hidden;
|
||
|
||
.orderGoods {
|
||
margin-top: 0;
|
||
}
|
||
}
|
||
|
||
.share-box {
|
||
z-index: 1000;
|
||
position: fixed;
|
||
left: 0;
|
||
top: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
|
||
image {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
}
|
||
}
|
||
</style>
|