first commit

This commit is contained in:
云泽网
2025-07-27 21:42:34 +08:00
commit c1cce5ccb4
2779 changed files with 340042 additions and 0 deletions
+160
View File
@@ -0,0 +1,160 @@
// +----------------------------------------------------------------------
// | likeshop开源商城系统
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | gitee下载:https://gitee.com/likeshop_gitee
// | github下载:https://github.com/likeshop-github
// | 访问官网:https://www.likeshop.cn
// | 访问社区:https://home.likeshop.cn
// | 访问手册:http://doc.likeshop.cn
// | 微信公众号:likeshop技术社区
// | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
// | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
// | 禁止对系统程序代码以任何目的,任何形式的再发布
// | likeshop团队版权所有并拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeshop.cn.team
// +----------------------------------------------------------------------
<template>
<view class="pay-result column-center">
<view class="contain bg-white">
<view class="header column-center">
<view>
<image class="tips-icon" src="/static/images/icon_paySuccess.png"></image>
</view>
<view class="xl mt20">订单支付成功</view>
</view>
<view style="height:181rpx"></view>
<view class="info">
<view class="order-num row-between mt20">
<view class="ml20">订单编号</view>
<view class="mr20">
{{payInfo.order_sn}}
</view>
</view>
<view v-if="payInfo.pay_time" class="order-time row-between mt20">
<view class="ml20">付款时间</view>
<view class="mr20">{{payInfo.pay_time}}</view>
</view>
<view class="order-pay-type row-between mt20">
<view class="ml20">支付方式</view>
<view class="mr20">{{payInfo.pay_way_text}}</view>
</view>
<view class="order-pay-money row-between mt20">
<view class="ml20">支付金额</view>
<view class="mr20">
<price-format :price="payInfo.order_amount"></price-format>
</view>
</view>
</view>
<view class="line ml20"></view>
<view class="opt-btn-contain row-center wrap">
<navigator open-type="redirect" hover-class="none" class="check-order-btn row-center bg-primary br60 mt20" url="/pages/user_order/user_order">
<view class="white bg-primary lg">查看订单</view>
</navigator>
<navigator hover-class="none" class="go-back-btn row-center br60 mt20" open-type="switchTab" url="/pages/index/index">
<view class="primary br60 lg">返回首页</view>
</navigator>
</view>
</view>
<view class="xs muted" style="margin: 50rpx 0;">
<view class="row-center">
likeshop 提供免费开源商城系统
</view>
<view class="row-center">
© likeshop.cn
</view>
</view>
</view>
</template>
<script>
import {
getOrderDetail
} from '@/api/order';
export default {
data() {
return {
payInfo: {}
};
},
components: {
},
props: {},
onLoad: function(options) {
this.id = options.id;
this.getOrderResultFun();
},
methods: {
getOrderResultFun() {
getOrderDetail(this.id).then(res => {
if (res.code == 1) {
this.payInfo = res.data
}
});
},
}
};
</script>
<style lang="scss">
.pay-result {
.contain {
width: 682rpx;
margin-left: 20rpx;
margin-right: 20rpx;
border-radius: 10rpx;
margin-top: 78rpx;
padding-left: 20rpx;
padding-right: 20rpx;
padding-bottom: 40rpx;
position: relative;
.tips-icon {
width: 112rpx;
height: 112rpx;
}
.header {
position: absolute;
left: 50%;
transform: translateX(-50%);
top: -50rpx;
}
.order-num {
align-items: flex-start;
}
.info {
margin-bottom: 40rpx;
}
.opt-btn-contain {
margin-top: 40rpx;
.check-order-btn {
width: 650rpx;
height: 84rpx;
}
.go-back-btn {
width: 650rpx;
height: 84rpx;
border:1px solid $-color-primary;
box-sizing: border-box;
}
}
.line {
width: 650rpx;
border-top: 1px solid rgba(229, 229, 229, 1);
}
}
}
</style>