待付款

This commit is contained in:
shidongli 2022-10-28 10:05:28 +08:00
parent cb6394a742
commit 6647bacdfb

199
pages/tobePaid/tobePaid.vue Normal file
View File

@ -0,0 +1,199 @@
<template>
<view class="app">
<view class="content">
<view class="name">
2022-10-11 15:44
<span>待付款</span>
</view>
<view class="details">
<view class="detailslist">
<image src="../../static/shangpingdingdan.png" mode=""></image>
<view class="model">
<view class="top">
<span>酒精棉片 200</span>
<span>36.0</span>
</view>
<view class="bottom">
<span>型号酒精棉片 8</span>
<span>×1</span>
</view>
<view class="price">
实付款<span>36.0</span>
</view>
</view>
</view>
<view class="submit" @tap='show=true'>
去支付
</view>
</view>
</view>
<!-- 弹框 -->
<u-popup v-model="show" mode="bottom" length="50%" border-radius="30">
<view class="payment">
<span>请选择支付方式</span>
<view class="cencel" @tap="show = false">
<image src="../../static/gb.png" mode=""></image>
</view>
</view>
<view class="chat">
<image src="/static/chat.png" mode=""></image>
<span>微信支付</span>
</view>
<view class="submits" @tap='show=true'>
<span>确认支付</span><span>36</span>
</view>
</u-popup>
</view>
</template>
<script>
export default {
data() {
return {
show:false
}
},
methods: {
}
}
</script>
<style lang="scss">
.app {
height: 100vh;
.content {
width: 95%;
height: 494rpx;
background: #FFFFFF;
box-shadow: 0px 9px 31px 9px rgba(0, 0, 0, 0.03);
border-radius: 20px;
margin: 0 auto;
.name {
width: 95%;
height: 90rpx;
font-size: 30rpx;
color: #969394;
line-height: 90rpx;
border-bottom: 1rpx solid #D8D4D4;
margin: 0 auto;
span {
color: #4C7BC9;
float: right;
}
image {
width: 15rpx;
height: 23rpx;
padding-left: 25rpx;
}
}
.details {
height: 250rpx;
.detailslist {
display: flex;
image {
width: 182rpx;
height: 182rpx;
margin: 20rpx 0 0 20rpx;
}
.model {
width: 70%;
margin: 30rpx 0 0 20rpx;
span {
font-size: 38rpx;
color: #000000;
}
span:nth-child(2) {
color: #969394;
float: right;
margin-right: 30rpx;
}
.bottom {
margin-top: 20rpx;
span {
font-size: 35rpx;
color: #969394;
}
}
.price {
font-size: 30rpx;
color: #969394;
float: right;
margin: 35rpx 30rpx 60rpx 0;
span {
font-size: 41rpx;
color: #000000 ;
}
}
}
}
.submit{
width: 175rpx;
height: 68rpx;
line-height: 68rpx;
background: #4C7BC9;
border-radius: 26rpx;
text-align: center;
font-size: 32rpx;
color: #FFFFFF;
float: right;
margin-right: 30rpx;
}
}
}
//
.payment {
width: 390px;
height: 130rpx;
font-size: 42rpx;
color: #000000;
line-height: 130rpx;
text-align: center;
border-bottom: 1rpx solid #D8D4D4;
display: flex;
span{
margin-left: 30%;
}
.cencel{
margin-left: 20%;
image {
width: 31rpx;
height: 31rpx;
}
}
}
.chat {
span {
display: block;
height: 68rpx;
font-size: 42rpx;
color: #000000;
line-height: 68rpx;
margin-left: 25%;
margin-top: -10%;
}
image {
width: 79rpx;
height: 69rpx;
margin-top: 7%;
padding-left: 10%;
}
}
.submits {
width: 501rpx;
height: 71rpx;
line-height: 71rpx;
background: #4C7BC9;
border-radius: 26rpx;
font-size: 34rpx;
color: #FFFFFF;
text-align: center;
margin: 0 auto;
margin-top: 25%;
}
}
</style>