Files
2025-04-30 14:04:34 +08:00

150 lines
4.8 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="page" :style="themeColor">
<view class="flex benben-position-layout flex flex-wrap align-center storeResults_flex_0" :style="{height:(88+StatusBarRpx)+'rpx',paddingTop:StatusBarRpx+'rpx'}">
<view class='flex flex-wrap align-center justify-between flex-sub storeResults_fd0_0' >
<view class='flex flex-wrap align-center' @tap.stop="handleJumpDiy" data-type="back" data-url="1" >
<text class='fu-iconfont2 storeResults_fd0_0_c0_c0' @tap.stop="handleJumpDiy" data-type="back" data-url="1" >&#xE794;</text>
</view>
<view class='flex flex-wrap align-stretch justify-center flex-sub' >
<text class='storeResults_fd0_0_c1_c0' >支付结果</text>
</view>
<view class='flex flex-wrap align-center storeResults_fd0_0_c2' >
</view>
</view>
</view>
<view :style="{height: (88+StatusBarRpx)+'rpx'}" ></view>
<view class="flex flex-direction flex-wrap align-center justify-center storeResults_flex_1" >
<image class='storeResults_fd1_0' mode="aspectFit" :src='STATIC_URL+"180.png?x-oss-process=style/logo_watermark"'></image>
<text class='storeResults_fd1_1' >支付成功</text>
<view class='flex flex-wrap align-center' >
<text class='storeResults_fd1_2_c0' >支付方式</text>
<text class='storeResults_fd1_2_c1' >微信支付</text>
</view>
<view class='flex flex-wrap align-center storeResults_fd1_3' >
<text class='storeResults_fd1_3_c0' >支付时间</text>
<text class='storeResults_fd1_3_c1' >2019.12.06 12:00</text>
</view>
<view class='flex flex-wrap align-center storeResults_fd1_4' >
<text class='storeResults_fd1_4_c0' >赚取积分</text>
<text class='storeResults_fd1_4_c1' >20</text>
</view>
<button class='storeResults_fd1_5' @tap.stop="handleJumpDiy" data-type="switchTab" :data-url="`/pages/tabBar/homePage/homePage`" >返回首页</button>
</view>
</view>
</template>
<script>
export default {
components:{},
data(){
return {"pay":"","time":"","contribution":""};
},
computed:{
themeColor() {
return this.$store.getters.themeColor
},
},
watch:{},
onLoad(options){
let {pay,time,contribution}=options
if (pay !== undefined) this.pay = pay
if (time !== undefined) this.time = time
if (contribution !== undefined) this.contribution = contribution
},
onUnload() {
},
onReady(){
},
onShow(){
},
onHide(){
},
onResize(){
},
onPullDownRefresh(){
},
onReachBottom(e){
},
onPageScroll(e){
},
methods:{
}
};
</script>
<style lang="scss" scoped>
.page{
width: 100vw;
overflow-x: hidden;
min-height: calc(100vh - var(--window-bottom));
background:rgba(255, 255, 255, 1);background-size: 100% auto !important;
}
.storeResults_flex_0{
background:#fff;width:750rpx;height:88rpx;overflow:hidden;z-index:10;top:0rpx;background-size:100% auto !important;
}
.storeResults_fd0_0_c2{
width:32rpx;height:32rpx;
}
.storeResults_fd0_0_c1_c0{
font-size:36rpx;font-weight:500;color:#333;line-height:88rpx;
}
.storeResults_fd0_0_c0_c0{
font-size:32rpx;font-weight:500;color:#333;line-height:88rpx;
}
.storeResults_fd0_0{
margin:0rpx 32rpx 0rpx 32rpx;
}
.storeResults_flex_1{
margin:88rpx 0rpx 0rpx 0rpx;
}
.storeResults_fd1_5{
border:1px solid rgba(255, 147, 0, 1);background:transparent;line-height:88rpx;border-radius:44rpx 44rpx 44rpx 44rpx;font-size:32rpx;color:rgba(255, 147, 0, 1);width:320rpx;height:88rpx;margin:184rpx 0rpx 0rpx 0rpx;
}
.storeResults_fd1_4_c1{
color:#666666;font-size:28rpx;font-weight:400;line-height:30rpx;
}
.storeResults_fd1_4_c0{
color:#666666;font-size:28rpx;font-weight:400;line-height:30rpx;
}
.storeResults_fd1_4{
margin:16rpx 0rpx 0rpx 0rpx;
}
.storeResults_fd1_3_c1{
color:#666666;font-size:28rpx;font-weight:400;line-height:30rpx;
}
.storeResults_fd1_3_c0{
color:#666666;font-size:28rpx;font-weight:400;line-height:30rpx;
}
.storeResults_fd1_3{
margin:16rpx 0rpx 0rpx 0rpx;
}
.storeResults_fd1_2_c1{
color:#666666;font-size:28rpx;font-weight:400;line-height:30rpx;
}
.storeResults_fd1_2_c0{
color:#666666;font-size:28rpx;font-weight:400;line-height:30rpx;
}
.storeResults_fd1_1{
font-weight:700;font-size:32rpx;line-height:105rpx;
}
.storeResults_fd1_0{
width:250rpx;height:180rpx;border-radius:0rpx 0rpx 0rpx 0rpx;
}
</style>