From 53a327fddfd1c73561fa14840bcc4d35f4b04333 Mon Sep 17 00:00:00 2001 From: lcc <805383944@qq.com> Date: Fri, 1 Aug 2025 19:22:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A2=E6=88=B7=E6=B1=A0=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=93=8D=E4=BD=9C=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/customer/index.wxml | 19 +++++++++++ pages/customer/index.wxss | 66 ++++++++++++++++++++++++++++++++++++++- 2 files changed, 84 insertions(+), 1 deletion(-) diff --git a/pages/customer/index.wxml b/pages/customer/index.wxml index d603e50..eb61133 100644 --- a/pages/customer/index.wxml +++ b/pages/customer/index.wxml @@ -110,6 +110,25 @@ + + + + + + + + {{log.c_time}} + + + {{log.content}} + + + + + + + + diff --git a/pages/customer/index.wxss b/pages/customer/index.wxss index 61814e6..ed23fc8 100644 --- a/pages/customer/index.wxss +++ b/pages/customer/index.wxss @@ -25,4 +25,68 @@ to {right:-650rpx;} } -.radio-btn{min-width:104rpx;box-sizing:border-box;text-align:center;} \ No newline at end of file +.radio-btn{min-width:104rpx;box-sizing:border-box;text-align:center;} + +.orderDtail-log-item{ + padding-bottom: 40rpx; + line-height: 1.6; +} +.orderDtail-log-item:first-child{ + margin-top: 0; +} +.orderDtail-log-line{ + top: 8rpx; + left:16rpx; + width:2rpx; + height:2rpx; +} +.orderDtail-log-line::before{ + content:''; + position:absolute; + left:0; + bottom:8rpx; + background-color: #1a1a1a; + width:2rpx; + height:1000rpx; +} +.orderDtail-log-line2{ + top:8rpx; + bottom:-8rpx; + left:16rpx; + width:2rpx; + background-color: #1a1a1a; +} +.orderDtail-log-dot{ + top: 8rpx; + left:6rpx; + width: 23rpx; + height: 23rpx; + border-radius: 100%; + background-color: #fff; +} +.orderDtail-log-dot::before{ + width: 18rpx; + height: 18rpx; + background-color: #fff; +} +.orderDtail-log-dot::after{ + width: 12rpx; + height: 12rpx; + background-color: #1a1a1a; +} +.orderDtail-log-dot::before,.orderDtail-log-dot::after{ + content: ''; + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%,-50%); + border-radius: 100%; +} + +.orderDtail-log .orderDtail-log-content{ + position:relative; + top:-20rpx; +} +.icon-jiantou-up{ + left:6rpx; +} \ No newline at end of file