Browse Source

[new]优化地图首页logo显示

zk 4 months ago
parent
commit
6873ce813a

+ 0 - 3
lib/data/consts/web_url.dart

@@ -17,9 +17,6 @@ class WebUrl {
 
   static const String _shareUrl = "https://ssdw.myaskai.cn/#/";
 
-  static String get privacyPolicy => _privacyPolicy;
-  static const String _customUrl = "https://qiyu-kefu.atmob.com";
-
   static String renewalAgreement =
       Platform.isIOS ? "https://doc.v8dashen.com/doc/4e69dec06586d0f1" : '';
 

+ 3 - 1
lib/module/main/main_page.dart

@@ -72,7 +72,9 @@ class MainPage extends BasePage<MainController> {
     return Obx(() {
       return Positioned(
           left: 12.w,
-          bottom: 130.w + controller.sheetProgress * 146.w,
+          bottom: 130.w +
+              (controller.lastSelectedGoods == null ? 0 : 60.w) +
+              controller.sheetProgress * 146.w,
           child: Column(
             crossAxisAlignment: CrossAxisAlignment.start,
             children: [

+ 1 - 1
lib/module/member/activity/member_activity_controller.dart

@@ -73,7 +73,7 @@ class MemberActivityController extends BaseController {
 
   Future<void> _requestMemberData() {
     return memberRepository
-        .guideItemList(itemListType: Platform.isIOS ? 2 : 0)
+        .getMemberList(itemListType: Platform.isIOS ? 2 : 0)
         .then((response) {
       goodsList.clear();
       payItemList.clear();