From 8d5ea5ca1a17b3033a1670051acd900c4a1f22e9 Mon Sep 17 00:00:00 2001 From: w-R <953969641@qq.com> Date: Wed, 18 May 2022 14:33:09 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=89=E8=A7=84=E6=A0=BC=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/store/store_view/product_sku.dart | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/store/store_view/product_sku.dart b/lib/store/store_view/product_sku.dart index 3312254f..36701e61 100644 --- a/lib/store/store_view/product_sku.dart +++ b/lib/store/store_view/product_sku.dart @@ -139,7 +139,7 @@ class _ProductSku extends State { Padding( padding: EdgeInsets.only(top: 4, bottom: 7), child: Text( - ": " + + "已选: " + (selectSkus.map((e) => "$e").toList().toString()), maxLines: 1, overflow: TextOverflow.ellipsis, @@ -369,12 +369,12 @@ class _ProductSku extends State { return Container( padding: const EdgeInsets.symmetric(vertical:5.0,horizontal: 12.0), decoration: BoxDecoration( - color: !isCheck ? Color(0xFFF2F2F2) : Color(0xFFF0FAF4), - border: Border.all( - width: !isCheck ? 0:1, - color: !isCheck ? Color(0xFFF2F2F2):Color(0xFF32A060), - style: BorderStyle.solid, - ), + color: !isCheck ? Color(0xFFE5E5E5) : Color(0xFF32A060), + // border: Border.all( + // width: !isCheck ? 0:1, + // color: !isCheck ? Color(0xFFF2F2F2):Color(0xFF32A060), + // style: BorderStyle.solid, + // ), borderRadius: const BorderRadius.all( Radius.circular(4.0), ), @@ -383,7 +383,7 @@ class _ProductSku extends State { name, overflow: TextOverflow.ellipsis, style: TextStyle( - color:!isCheck ? Color(0xFF4D4D4D) : Color(0xFF32A060), + color:!isCheck ? Color(0xFF727272) : Color(0xFFFFFFFF), fontSize: 14.sp, fontWeight: MyFontWeight.regular, ),