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.

166 lines
4.9 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

<template>
<view class="content">
  <view class="orderCol">
<view class="title">
<view>孕期保健Q&A<text class="free">免费</text></view>
<view class="status">待处理</view>
</view>
<view class="infoList">
<view class="infoCol"><view class="date"><image mode="heightFix" src="../../static/icon_shijian@2x.png"></image>2有效期至:2018年11月25日</view><view class="price"><text>¥</text>100</view></view>
<view class="infoCol"><view class="bulid"><image mode="heightFix" src="../../static/icon_dianpu@2x.png"></image>时光印记孕妈妈摄影机构</view></view>
</view>
<view class="progress">
<view class="pro_tit">处理进度</view>
<view class="progressList">
<view class="progressLine"></view>
<view class="listCol">
<view class="subTit">已受理<text>2020-12-12 14:00</text><view class="dot"></view></view>
<view class="text">商家已联系用户约好9月份到店</view>
</view>
<view class="listCol">
<view class="subTit">已受理<text>2020-12-12 14:00</text><view class="dot"></view></view>
<view class="text">商家已联系用户约好9月份到店</view>
</view>
<view class="listCol">
<view class="subTit">已受理<text>2020-12-12 14:00</text><view class="dot"></view></view>
<view class="text">商家已联系用户约好9月份到店</view>
</view>
</view>
</view>
</view>
  <view class="orderCol">
<view class="title">
<view>孕期保健Q&A<text class="free">免费</text></view>
<view class="status">已处理</view>
</view>
<view class="infoList">
<view class="infoCol"><view class="date"><image mode="heightFix" src="../../static/icon_shijian@2x.png"></image>2有效期至:2018年11月25日</view><view class="price"><text>¥</text>100</view></view>
<view class="infoCol"><view class="bulid"><image mode="heightFix" src="../../static/icon_dianpu@2x.png"></image>时光印记孕妈妈摄影机构</view></view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.orderCol{
background: #fff;
border-radius: 16rpx;
width:710rpx;
margin:20rpx auto 0 auto;
padding: 0 30rpx;
box-sizing: border-box;
.title{
padding:30rpx 0;
display: flex;
justify-content: space-between;
align-content: center;
align-items: center;
font-size:32rpx;
font-weight: 500;
color:#333;
.free{display:inline-block;width: 58rpx;height: 32rpx;background: #FF753E;border-radius: 6rpx;font-size: 20rpx;font-weight: 400;color: #FFFFFF;text-align: center;line-height:32rpx;margin-left:10rpx;}
.status{font-size: 28rpx;font-weight: 400;color: #666666;}
}
.btn{
display: flex;
justify-content: flex-end;
padding:30rpx 0;
text{
display: block;
width: 160rpx;
height: 64rpx;
border-radius: 8rpx;
border: 2rpx solid #DEDEDE;
font-size: 28rpx;
font-weight: 400;
color: #333333;
text-align:center;
line-height:64rpx;
}
}
.infoList{
padding-bottom:30rpx;
.infoCol{
display: flex;
justify-content: space-between;
color:#666;
font-size: 28rpx;
line-height:40rpx;
.date image{width:26rpx;height:26rpx;display: inline-block;margin-right:12rpx;}
.bulid{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.bulid image{width:25rpx;height:26rpx;display: inline-block;margin-right:12rpx;}
.address{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.address image{width:24rpx;height:26rpx;display: inline-block;margin-right:12rpx;}
.price{
font-size: 36rpx;
font-weight: 500;
color: #FF578A;
text{font-size: 28rpx;margin-right:5rpx;}
}
}
}
}
.progress{
width:100%;
box-sizing: border-box;
border-top:1rpx solid #f4f4f4;
.pro_tit{font-size: 32rpx;font-weight: 500;color: #333333;padding:30rpx 0 45rpx 0;}
.progressList{
position: relative;
.progressLine{
position: absolute;
width:2rpx;
height:73%;
background: #D8D8D8;
top:10rpx;
left:0;
z-index:9;
}
.listCol{
padding-left:40rpx;
margin-bottom: 30rpx;
.subTit{
font-size: 28rpx;
font-weight: 500;
color: #333333;
position: relative;
text{font-size: 24rpx;font-weight: 400;color: #666666;margin-left:40rpx;}
.dot{
width: 18rpx;
height: 18rpx;
background: #D8D8D8;
border-radius: 50%;
position: absolute;
left:-49rpx;
top:10rpx;
z-index:10;
}
}
.text{font-size: 28rpx;font-weight: 400;color: #666666;margin-top:16rpx;}
}
}
}
</style>