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
|
|
|
|
|
|
<span class="">
|
|
|
|
|
|
2000积分
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="imageitem">
|
|
|
|
|
|
<image src="../../static/pagesB/ynph.png" mode=""></image>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="servename">
|
|
|
|
|
|
服务名称
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="servetime">
|
|
|
|
|
|
服务时间:2023-12-12 08:30
|
|
|
|
|
|
</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;
|
|
|
|
|
|
bottom: 23%;
|
|
|
|
|
|
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-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 {
|
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
color: #26A888;
|
|
|
|
|
|
line-height: 38rpx;
|
|
|
|
|
|
right: 3%;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|