From d2f8c63d705d45405f4366507f5714e1f1227db5 Mon Sep 17 00:00:00 2001 From: 396316021 <396316021@qq.com> Date: Wed, 13 Sep 2023 18:03:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A0=E7=89=A9=E6=96=B0=E5=A2=9E&=E9=80=89?= =?UTF-8?q?=E6=8B=A9&=E9=80=89=E6=8B=A9=20=E8=AE=A2=E5=8D=95=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E7=BB=84=E4=BB=B6,=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/PetPage/components/index.scss | 213 +++++++ components/PetPage/index.vue | 684 +++++++++++++++++++++-- pages/OrderPage/index.vue | 120 +++- pages/Pet/create.vue | 3 +- pages/PetDetail/index.vue | 18 +- utils/functions.js | 2 +- 6 files changed, 975 insertions(+), 65 deletions(-) diff --git a/components/PetPage/components/index.scss b/components/PetPage/components/index.scss index 3e79535..9559b3e 100644 --- a/components/PetPage/components/index.scss +++ b/components/PetPage/components/index.scss @@ -29,4 +29,217 @@ } } } +} +.order-screen-container{ + .order-screen{ + padding:40rpx 0 20rpx 0; + padding-right: 66rpx; + font-size: 28rpx; + line-height: 53rpx; + color:#646464; + font-weight: 400; + &.active{ + color:#000000; + font-size: 32rpx; + font-weight: 500; + .order-screen-active{ + display:flex; + } + } + .order-screen-active{ + display: none; + align-items: center; + justify-content: center; + .img{ + width:37rpx; + } + } + + } + .order-screen-time-container{ + flex:1; + margin-left:auto; + justify-content: flex-end; + .order-screen{ + // padding-right:0; + } + } + .order-screen-time-title{ + color:#B5B5B5; + font-size:26rpx; + font-weight: 400; + line-height:53rpx; + padding-right: 16rpx; + } + .order-screen-time-buttton-container{ + padding-right: 0; + } + .order-screen-time-buttton{ + padding:8rpx 19rpx; + color:#4EC2B7; + font-size: 28rpx; + font-weight: 400; + background-color:#ffffff; + border:1px solid #4EC2B7; + border-radius: 10rpx; + line-height: 28rpx; + box-shadow: 0rpx 4rpx 5rpx 0rpx rgba(82,84,84,0.1), 2rpx -4rpx 0rpx 0rpx rgba(78,194,183,0.2); + } +} +.order-list-container{ + width:100%; + //max-height: 1000rpx; + height: 100%; + overflow: auto; + box-sizing: border-box; + + .order-list-item{ + position: relative; + .pet-gun{ + background:{ + size: 80% 100%; + repeat: no-repeat; + position: center center; + } + height:90rpx; + width:100%; + position: absolute; + top:-60rpx; + z-index: 1; + } + margin-bottom:30rpx; + width:100%; + box-sizing: border-box; + .order-card-container{ + width:100%; + box-sizing: border-box; + padding:10rpx 10rpx; + position: relative; + box-sizing: border-box; + .order-card-container-background{ + + width:100%; + height:90%; + position: absolute; + left:0rpx; + z-index: -1; + bottom:0rpx; + border: 3rpx solid #262626; + box-shadow: 2rpx 6rpx 11rpx 0rpx rgba(159,167,185,0.3); + border-radius: 26rpx; + background: { + color:#EED9AD; + }; + } + .order-card-container-background-main{ + + width:100%; + background:{ + color:#FFFFFF; + } + border-radius: 26rpx; + border: 3rpx solid #262626; + padding:7rpx; + box-sizing:border-box; + .order-card-col{ + width:100%; + box-sizing: border-box; + padding:20rpx; + background:{ + size:100% 100%; + position: center center; + repeat:no-repeat; + } + } + } + + + .order-card-left{ + align-items: center; + .left-background{ + box-sizing: border-box; + width:135rpx; + height:135rpx; + border-radius: 50%; + align-items: center; + justify-content: center; + display: flex; + background:{ + color:#EED9AD; + } + } + + //height:auto; + margin-right: 25rpx; + .img{ + width:110rpx; + height:110rpx; + border-radius: 50%; + } + } + .order-card-right{ + border-radius: 30rpx; + align-items: center; + justify-content: center; + background:{ + color:#FBF5E7; + } + text-align: center; + padding:30rpx; + padding-left:20rpx; + .order-card-title{ + padding-top:5px; + font-size:32rpx; + font-weight: 500; + line-height: 30rpx; + color:#131313; + } + .order-card-tag-container{ + padding-top:18rpx; + .order-card-tag{ + padding:9rpx 20rpx; + background:{ + color:#E9FBF7; + } + color:#4DC3B8; + font-size:26rpx; + font-weight:400; + line-height:1; + border-radius:6rpx; + &+.order-card-tag{ + margin-left:9rpx; + } + } + } + .order-card-day{ + + } + .order-card-pay-time{ + + } + .order-card-day,.order-card-pay-time{ + padding-top:20rpx; + font-size:28rpx; + font-weight:400; + line-height:30rpx; + color:#767676; + .card-label{ + color:#1B1B1B; + } + } + } + .order-card-bottom{ + padding-top:30rpx; + justify-content: center; + } + .card-button{ + &:nth-child(1){ + padding-right:23rpx; + } + &:nth-child(2){ + padding-left:23rpx; + } + } + } + } } \ No newline at end of file diff --git a/components/PetPage/index.vue b/components/PetPage/index.vue index a1d834e..de59b86 100644 --- a/components/PetPage/index.vue +++ b/components/PetPage/index.vue @@ -1,20 +1,20 @@