xinelu-applet-ui/pagesB/exchangerecords/exchangerecords.vue

113 lines
1.9 KiB
Vue
Raw Normal View History

2023-09-22 15:29:53 +08:00
<template>
<view class="app">
2023-09-26 17:59:59 +08:00
<view class="content">
<view class="time">
2023-08-13 23:43:49
2023-09-27 13:50:42 +08:00
<span>
2023-09-26 17:59:59 +08:00
2000积分
</span>
</view>
<view class="imageitem">
2023-09-27 13:50:42 +08:00
<image src="../../static/pagesB/Behave.png" mode=""></image>
2023-09-26 17:59:59 +08:00
</view>
<view class="servename">
服务名称
</view>
<view class="servetime">
2023-09-27 13:50:42 +08:00
服务时间2023-12-12 08:30
2023-09-26 17:59:59 +08:00
</view>
</view>
2023-09-22 15:29:53 +08:00
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss">
2023-09-26 17:59:59 +08:00
.app {
width: 100%;
height: 100vh;
text-align: justify;
background-color: #F7F5F5;
padding: 25rpx 0 30rpx 0;
.content {
width: 90%;
height: 321rpx;
background: #FFFFFF;
box-shadow: 0rpx 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
border-radius: 5rpx;
margin: 20rpx auto;
position: relative;
.servetime {
font-size: 28rpx;
font-family: Source Han Sans CN;
font-weight: 400;
color: #959595;
line-height: 38rpx;
position: absolute;
2023-09-27 13:50:42 +08:00
bottom: 23%;
2023-09-26 17:59:59 +08:00
left: 35%;
}
.servename {
font-size: 32rpx;
font-family: Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 38rpx;
position: absolute;
top: 38%;
left: 35%;
2023-09-27 13:50:42 +08:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2023-09-26 17:59:59 +08:00
}
2023-09-22 15:29:53 +08:00
2023-09-26 17:59:59 +08:00
.imageitem {
position: absolute;
left: 3%;
top: 28%;
image {
width: 180rpx;
height: 180rpx;
}
}
.time {
padding: 25rpx 0 0 20rpx;
font-size: 28rpx;
font-family: Source Han Sans CN;
font-weight: 400;
color: #000000;
line-height: 38rpx;
position: relative;
span {
2023-09-27 13:50:42 +08:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2023-09-26 17:59:59 +08:00
font-size: 28rpx;
position: absolute;
font-family: Source Han Sans CN;
font-weight: 500;
color: #26A888;
line-height: 38rpx;
right: 3%;
}
}
}
}
2023-09-27 13:50:42 +08:00
</style>