工时记录加上门地址

This commit is contained in:
BAKEYi 2026-04-20 13:27:15 +08:00
parent 4dc74695de
commit b584f8f97b
1 changed files with 13 additions and 1 deletions

View File

@ -40,6 +40,8 @@
<!-- 时间信息 --> <!-- 时间信息 -->
<!-- <view class="time-info"><text style="color:#999999 ;">服务时段</text>{{ useTime }}</view> --> <!-- <view class="time-info"><text style="color:#999999 ;">服务时段</text>{{ useTime }}</view> -->
<!-- 上门地址 -->
<view class="order-address" v-if="dataItem.user_sj.address">上门地址{{ dataItem.user_sj.address }}</view>
<!-- 操作按钮 --> <!-- 操作按钮 -->
<view class="button-group"> <view class="button-group">
@ -304,6 +306,16 @@
font-style: normal; font-style: normal;
} }
.order-address {
font-weight: 400;
font-size: 26rpx;
color: #666666;
line-height: 34rpx;
text-align: left;
font-style: normal;
margin-top: 24rpx;
}
/* 时间信息 */ /* 时间信息 */
.time-info { .time-info {
font-weight: 400; font-weight: 400;
@ -321,7 +333,7 @@
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
gap: 30rpx; gap: 30rpx;
padding-top: 20rpx; // padding-top: 20rpx;
padding-bottom: 30rpx; padding-bottom: 30rpx;
} }