From d470e67ac1997882502b75cbfdaf359626cfaaa8 Mon Sep 17 00:00:00 2001 From: Liuyi <candymxq888@outlook.com> Date: 星期五, 20 十二月 2024 17:27:07 +0800 Subject: [PATCH] 测试修复小程序问题,添加水控机设备 --- pagesAdmin/adminPlatform/maintain.vue | 30 ++++++++++++++++++++++++------ 1 files changed, 24 insertions(+), 6 deletions(-) diff --git a/pagesAdmin/adminPlatform/maintain.vue b/pagesAdmin/adminPlatform/maintain.vue index 9f34178..6626516 100644 --- a/pagesAdmin/adminPlatform/maintain.vue +++ b/pagesAdmin/adminPlatform/maintain.vue @@ -38,12 +38,12 @@ <text class="value">{{item.resultTypeView}}</text> </view> <view class="item-child"> - <text>维修时间:</text> - <text class="value">{{item.createTimeView}}</text> - </view> - <view class="item-child"> <text>备注:</text> <text class="value remark">{{item.remark}}</text> + </view> + <view class="item-child"> + <text>维修时间:</text> + <text class="value-time">{{item.createTimeView}}</text> </view> <view class="item-child-area"> <text>上传图片:</text> @@ -56,6 +56,7 @@ <view class="nodata" v-else> <image class="nodata-img" src="../../static/images/other/nodata.png" mode="widthFix"></image> </view> + <view class="add-record">添加记录</view> </view> </view> </template> @@ -71,7 +72,7 @@ box-sizing: border-box; .main{ width:100%; - height:100%; + height:calc(100% - 120rpx); padding:20rpx; box-sizing: border-box; background:rgba(255, 255, 255, 0.6); @@ -93,6 +94,10 @@ box-shadow: 0 3rpx 5rpx 1rpx rgba(197, 199, 203, 0.6); .value{ color: rgba(86, 86, 90, 1.0); + } + .value-time{ + color: rgba(86, 86, 90,0.8); + font-size:26rpx; } .item-child{ width:100%; @@ -136,7 +141,7 @@ } .nodata{ width:100%; - height:100%; + height:calc(100% - 120rpx); display: flex; justify-content: center; background: rgba(255,255,255,0.6); @@ -147,6 +152,19 @@ width: 520rpx; } } + .add-record{ + margin: 40rpx auto 0; + background-color: #5b93dc; + width:500rpx; + height:85rpx; + line-height:85rpx; + text-align: center; + border-radius: 50rpx; + color: #fff; + letter-spacing:2rpx; + font-size:38rpx; + font-weight:500; + } } } -- Gitblit v1.9.3