From d1bb68d9f9054bbf87cd84956d3240c71d8e370c Mon Sep 17 00:00:00 2001
From: xuxy <1059738716@qq.com>
Date: 星期二, 25 六月 2024 16:55:44 +0800
Subject: [PATCH] update 商品管理和花农的
---
common/global.scss | 61 ++++++++++++++++++++++++++++--
1 files changed, 56 insertions(+), 5 deletions(-)
diff --git a/common/global.scss b/common/global.scss
index 6154ba9..8e39aac 100644
--- a/common/global.scss
+++ b/common/global.scss
@@ -1,5 +1,13 @@
+
+// $u-tips-color: #2979ff;
+// $u-primary: #2979ff;
+
+// @import '@/node_modules/uview-ui/theme.scss';
+
.component-tab-container{
display: flex;
+ width: fit-content;
+ margin:0 auto;
.tab-item{
display: flex;
text-align: center;
@@ -7,17 +15,31 @@
border: 2rpx solid var(--topicolor);
background: #fff;
color: var(--topicolor);
+ width: 212rpx;
+ line-height: 64rpx;
+ font-weight: 600;
+ font-size: 28rpx;
+ display: block;
}
.tab-item.cur{
background: var(--topicolor);
- border-radius: 0rpx 8rpx 8rpx 0rpx;
+ // border-radius: 0rpx 8rpx 8rpx 0rpx;
+ color: #fff;
+ }
+ .tab-item:first-child{
+ border-top-right-radius: 0rpx;
+ border-bottom-right-radius: 0rpx;
+ }
+ .tab-item:last-child{
+ border-top-left-radius: 0rpx;
+ border-bottom-left-radius: 0rpx;
}
}
.component-button-upload{
width: 96rpx;
height: 96rpx;
border-radius: 4rpx;
- border: 2rpx solid #CECECE;
+ border: 2rpx dashed #CECECE;
position: relative;
background-image: 100% 100%;
&::after{
@@ -25,10 +47,39 @@
position: absolute;
left: 50%;
top: 50%;
- transform: translate(50%,50%);
+ transform: translate(-50%,-50%);
// width: 22rpx;
// height: 22rpx;
font-size: 24rpx;
- color: #000000;
+ color: #696969;
}
-}
\ No newline at end of file
+}
+
+.component-popup_input{
+ margin-top: calc(50% + 200rpx);
+
+ margin-left: 78rpx - 26rpx;
+ width: 594rpx;
+ background: linear-gradient(180deg, #D8F0EE 0%, #FFFFFF 100%);
+ border-radius: 16rpx;
+ padding: 26rpx;
+ position: relative;
+ .uni-easyinput{
+ width: auto !important;
+ }
+ .icon{
+ z-index: -1;
+ position: absolute;
+ width: 266rpx;
+ height: 146rpx;
+ top: -134rpx;
+ left: 50%;
+ transform: translateX(-50%);
+ }
+ .close-parent{
+ margin-bottom: 34rpx;
+ }
+ .button-green{
+ margin-top: 50rpx;
+ }
+}
--
Gitblit v1.9.3