147 lines
2.6 KiB
Vue
147 lines
2.6 KiB
Vue
|
<template>
|
||
|
<view class="content">
|
||
|
<view class="container">
|
||
|
<headers :titles="titles"><u-icon name="arrow-left" color="#fff" size="22"></u-icon></headers>
|
||
|
<view class="top_">
|
||
|
<image src="../../static/imgs/zfcg.png" mode=""></image>
|
||
|
</view>
|
||
|
<view class="title_">支付成功</view>
|
||
|
<view class="b-bs">
|
||
|
<view class="h-size">应收金额</view>
|
||
|
<view class="red-size">¥200.00</view>
|
||
|
</view>
|
||
|
<view class="b-bs">
|
||
|
<view class="h-size">优惠金额</view>
|
||
|
<view class="red-size">¥200.00</view>
|
||
|
</view>
|
||
|
<view class="b-bs">
|
||
|
<view class="h-size">实收金额</view>
|
||
|
<view class="red-size">¥200.00</view>
|
||
|
</view>
|
||
|
<view class="b-bs">
|
||
|
<view class="h-size">支付方式</view>
|
||
|
<view class="h-size">现金支付</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="p-bottom">
|
||
|
<view class="anniu" @click="goback()">
|
||
|
返回
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import headers from '../../components/header/headers.vue'
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
titles: "支付结果",
|
||
|
|
||
|
}
|
||
|
},
|
||
|
onShow() {
|
||
|
// this.actList = ["1", "1", "1", "1", "1", ]
|
||
|
// this.status = "nomore" 底部刷新结束
|
||
|
},
|
||
|
onPullDownRefresh() {
|
||
|
console.log("刷新");
|
||
|
uni.stopPullDownRefresh()
|
||
|
},
|
||
|
onReachBottom() {
|
||
|
// this.show = true
|
||
|
setTimeout(() => {
|
||
|
console.log("加载执行");
|
||
|
}, 2000)
|
||
|
},
|
||
|
components: {
|
||
|
headers
|
||
|
},
|
||
|
methods: {
|
||
|
goback() {
|
||
|
uni.navigateBack()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.content {
|
||
|
background: #f4f5f6;
|
||
|
// background: linear-gradient(180deg, #B2D2FC 0%, #B2D2FC 14%, rgba(255, 255, 255, 0.84) 24%, rgba(255, 255, 255, 0.84) 100%);
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
width: 100%;
|
||
|
background: #f4f5f6;
|
||
|
box-sizing: border-box;
|
||
|
padding-top: 88px;
|
||
|
}
|
||
|
|
||
|
.top_ {
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
margin-top: 65px;
|
||
|
|
||
|
image {
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.title_ {
|
||
|
width: 100%;
|
||
|
margin: 15px auto;
|
||
|
text-align: center;
|
||
|
font-weight: 500;
|
||
|
font-size: 22px;
|
||
|
color: #333333;
|
||
|
margin-bottom: 40px;
|
||
|
}
|
||
|
|
||
|
.p-bottom {
|
||
|
width: 100%;
|
||
|
height: 68px;
|
||
|
background: #fff;
|
||
|
position: fixed;
|
||
|
bottom: 0px;
|
||
|
left: 0px;
|
||
|
}
|
||
|
|
||
|
.anniu {
|
||
|
height: 40px;
|
||
|
background: #0864E9;
|
||
|
width: 80%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
color: #fff;
|
||
|
border-radius: 50px;
|
||
|
margin: 5px auto;
|
||
|
}
|
||
|
|
||
|
.b-bs {
|
||
|
width: 90%;
|
||
|
margin: 15px auto;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.h-size {
|
||
|
font-weight: bold;
|
||
|
font-size: 20px;
|
||
|
color: #333333;
|
||
|
}
|
||
|
|
||
|
.red-size {
|
||
|
font-weight: bold;
|
||
|
font-size: 20px;
|
||
|
color: #FD504E;
|
||
|
}
|
||
|
</style>
|