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.

149 lines
4.0 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="end-title">
<view v-for="(item,index) in items" :key="index" :class="{btna:count == index}" @tap="change(index)">
{{item}}<view class="line"></view>
</view>
</view>
<view class="end-cont" :class="{dis:btnnum == 0}">
  <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"><text class="iconfont icon-clock2"></text>2021-02-10 14:00</view><view class="price"><text>¥</text>100</view></view>
<view class="infoCol"><view class="address"><text class="iconfont icon-location"></text>苏州·园区星海街188号苏州万怡大酒店</view></view>
</view>
<view class="btn"><text>投诉</text></view>
</view>
</view>
<view class="end-cont" :class="{dis:btnnum == 1}">
  <view class="orderCol">
<view class="title">
<view>33孕期保健Q&A<text class="free">免费</text></view>
<view class="status">退款中</view>
</view>
<view class="infoList">
<view class="infoCol"><view class="date"><text class="iconfont icon-clock2"></text>2021-02-10 14:00</view><view class="price"><text>¥</text>100</view></view>
<view class="infoCol"><view class="address"><text class="iconfont icon-location"></text>苏州·园区星海街188号苏州万怡大酒店</view></view>
</view>
<view class="btn"><text>投诉</text></view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
btnnum: 0,
items:["待退款","已退款"],
count:""
}
},
onLoad() {
},
methods: {
change(e) {
this.count = e
this.btnnum = e
console.log(this.count)
}
}
}
</script>
<style lang="scss" scoped>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.end-title{
display: flex;
width:100%;
height: 88rpx;
background: #FFFFFF;
box-shadow: 0px 2px 12px 0px #DEE4E7;
line-height: 88rpx;
font-size: 32rpx;
font-weight: 400;
color:#333;
}
.end-title view{
flex-grow: 1;
text-align: center;
position: relative;
.line{position: absolute;width: 128rpx;height: 8rpx;background: #FF578A;border-radius: 4rpx;bottom:0;left:50%;margin-left:-64rpx;display: none;}
}
.end-cont{
display: none;
}
.btna{
color: #FF578A;
}
.btna .line{display:block!important;}
.dis{
display: block;
}
.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{
.infoCol{
display: flex;
justify-content: space-between;
color:#666;
font-size: 28rpx;
line-height:1.5;
.iconfont{line-height:28rpx;margin-right:8rpx;}
.icon-location{font-size:30rpx;}
.icon-clock2{font-size:24rpx;}
.price{
font-size: 36rpx;
font-weight: 500;
color: #FF578A;
text{font-size: 18rpx;margin-right:5rpx;}
}
}
}
}
</style>