You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

202 lines
3.8 KiB

4 years ago
<template>
<view class="content">
<view class="orderBox">
<view class="title">时光印记孕妈妈摄影套餐</view>
</view>
<view class="orderBox">
<view class="title">订单信息</view>
<view class="hasTwo">
<view class="p_left"><text class="twoWords"></text>:</view>
<view class="p_right">王大宝</view>
</view>
<view class="hasTwo">
<view class="p_left"><text class="halfWords"></text><text class="halfWords"></text>:</view>
<view class="p_right">13844345606</view>
</view>
<view class="hasTwo">
<view class="p_left">预产期/宝宝生日:</view>
<view class="p_right">2020-12-11</view>
</view>
<view class="hasTwo">
<view class="p_left"><text class="twoWords"></text>:</view>
<view class="p_right">¥100</view>
</view>
<view class="hasTwo">
<view class="p_left">实付金额:</view>
<view class="p_right">¥100</view>
</view>
<view class="hasTwo">
<view class="p_left"><text class="twoWords"></text>:</view>
<view class="p_right"><text class="font_red">已使用</text></view>
</view>
</view>
</view>
</template>
<script>
import {
weixin
} from '../../../../utils/weixin.js';
export default {
data() {
return {}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-top: 20rpx;
}
.orderBox {
width: 710rpx;
margin: 0 auto 20rpx auto;
padding: 30rpx;
box-sizing: border-box;
background: #fff;
border-radius: 16rpx;
position: relative;
.serviceBtn {
width: 160rpx;
height: 56rpx;
background: #FF578A;
border-radius: 28rpx;
color: #fff;
font-size: 28rpx;
font-weight: 500;
text-align: center;
line-height: 56rpx;
position: absolute;
right: 30rpx;
top: 30rpx;
}
.serviceBtn.disabled {
background: #CCCCCC;
}
.subBtn {
width: 160rpx;
height: 56rpx;
background: #FF578A;
border-radius: 28rpx;
color: #fff;
font-size: 28rpx;
font-weight: 500;
text-align: center;
line-height: 56rpx;
margin: 40rpx auto 0 auto;
}
.seeMap {
position: absolute;
right: 30rpx;
top: 116rpx;
font-size: 28rpx;
font-weight: 400;
.iconfont {
color: #BBBBBB;
margin-left: 10rpx;
}
}
.ticketNum {
font-size: 32rpx;
font-weight: 500;
color: #333333;
margin-top: 24rpx;
text-align: center;
}
.qr_box {
width: 300rpx;
height: 300rpx;
margin: 45rpx auto 0 auto;
image {}
}
.title {
font-size: 32rpx;
font-weight: 500;
color: #333333;
}
.p {
font-size: 28rpx;
font-weight: 400;
color: #999999;
margin-top: 5rpx;
}
.hasTwo {
display: flex;
justify-content: flex-start;
font-size: 28rpx;
color: #333;
margin-top: 30rpx;
.p_left {
margin-right: 30rpx;
color: #999;
min-width: 120rpx;
}
}
.discuss {
display: flex;
justify-content: flex-start;
margin-top: 32rpx;
.dis_l {
font-size: 28rpx;
color: #999;
padding-top: 10rpx;
}
.starBox {
display: flex;
justify-content: flex-start;
margin-left: 32rpx;
image {
display: block;
width: 48rpx;
height: 48rpx;
margin-right: 32rpx;
}
}
.areaOuter {
box-sizing: border-box;
border-radius: 7rpx;
border: 1rpx solid #DEDEDE;
width: 530rpx;
margin-left: 32rpx;
textarea {
height: 150rpx;
font-size: 28rpx;
padding: 20rpx;
box-sizing: border-box;
width: 100%;
box-sizing: border-box;
}
}
}
}
</style>