Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
c5db0e44f4
@ -22,7 +22,18 @@
|
|||||||
<image :src="item.icon" class="icon" mode="aspectFit"></image>
|
<image :src="item.icon" class="icon" mode="aspectFit"></image>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<!-- TODO 总检角色 -->
|
||||||
|
<view class="orderCount">
|
||||||
|
<view class="orderCountItem">
|
||||||
|
<text class="label">维修中</text>
|
||||||
|
<text class="value">4</text>
|
||||||
|
</view>
|
||||||
|
<view class="line"></view>
|
||||||
|
<view class="orderCountItem">
|
||||||
|
<text class="label">已完成</text>
|
||||||
|
<text class="value">6</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
<view class="todoListBox">
|
<view class="todoListBox">
|
||||||
<view class="title">
|
<view class="title">
|
||||||
待办工单
|
待办工单
|
||||||
@ -327,7 +338,7 @@ export default {
|
|||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 1fr;
|
grid-template-columns: 1fr 1fr;
|
||||||
column-gap: 30rpx;
|
column-gap: 30rpx;
|
||||||
margin: 0 32rpx;
|
margin: 0 32rpx 40rpx;
|
||||||
|
|
||||||
.body-top-item {
|
.body-top-item {
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -371,6 +382,36 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.orderCount {
|
||||||
|
margin: 40rpx 32rpx;
|
||||||
|
background: #FFFFFF;
|
||||||
|
border-radius: 8rpx 8rpx 8rpx 8rpx;
|
||||||
|
padding: 40rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
.orderCountItem {
|
||||||
|
flex: 1;
|
||||||
|
width: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
.label {
|
||||||
|
color: #858BA0;
|
||||||
|
}
|
||||||
|
.value {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 40rpx;
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.line {
|
||||||
|
height: 84rpx;
|
||||||
|
width: 1rpx;
|
||||||
|
background-color: #DDDDDD;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.todoListBox {
|
.todoListBox {
|
||||||
margin: 40rpx 32rpx;
|
margin: 40rpx 32rpx;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user