diff --git a/miniprogram/pages/reportRepair/repair/case/case.wxml b/miniprogram/pages/reportRepair/repair/case/case.wxml index 71b8a9e..6ba8877 100644 --- a/miniprogram/pages/reportRepair/repair/case/case.wxml +++ b/miniprogram/pages/reportRepair/repair/case/case.wxml @@ -1,5 +1,20 @@ - + + + + 派单信息 + + + + 派单信息 + + + + 派单信息 + + + + \ No newline at end of file diff --git a/miniprogram/pages/reportRepair/repair/case/case.wxss b/miniprogram/pages/reportRepair/repair/case/case.wxss index f0069df..8f6703e 100644 --- a/miniprogram/pages/reportRepair/repair/case/case.wxss +++ b/miniprogram/pages/reportRepair/repair/case/case.wxss @@ -1,3 +1,80 @@ .containerView.public { background: none; +} + +.topHead { + border: 1rpx solid transparent; + background: white; + height: 400rpx; +} + +.topHead .progressView { + display: flex; + justify-content: flex-start; + align-items: center; + + margin: 100rpx; +} + +.topHead .progressView .line { + flex: 1; + height: 4rpx; + background: #cccccc; + margin: 0 4rpx; +} + +.topHead .progressView .point { + position: relative; + width: 20rpx; + height: 20rpx; + border-radius: 20rpx; + background: #cccccc; +} + +.topHead .progressView .point.activity { + background: #2d7cf6; +} + +.topHead .progressView .point .msgView { + position: absolute; + bottom: calc(100% + 20rpx); + left: 50%; + transform: translateX(-50%); + width: 140rpx; + + word-break: break-all; + font-size: 24rpx; + color: #cccccc; + text-align: center; +} + + +.topHead .progressView .point .msgActivityView { + position: absolute; + bottom: calc(100% + 30rpx); + left: 50%; + transform: translateX(-50%); + width: 140rpx; + + border-radius: 30rpx; + padding: 8rpx 0; + word-break: break-all; + font-size: 24rpx; + color: white; + text-align: center; + background: #2d7cf6; +} + + +.topHead .progressView .point .msgActivityView::after { + content: ''; + display: block; + border-top: 18rpx solid #2d7cf6; + border-bottom: 20rpx solid transparent; + border-left: 20rpx solid transparent; + border-right: 20rpx solid transparent; + position: absolute; + top: 100%; + left: 50%; + transform: translateX(-50%); } \ No newline at end of file