huxiaoqiang il y a 4 ans
Parent
commit
44b33115eb

+ 75 - 53
lib/main.dart

@@ -83,7 +83,7 @@ Future<void> main() async {
   await flutterLocalNotificationsPlugin.initialize(initializationSettings,
       onSelectNotification: (String payload) async {
     if (payload != null) {
-      if(payload==notifyTypeNewMsg){
+      if (payload == notifyTypeNewMsg) {
         RootPageView().bNIndex = 2;
         EventBus().emit('ChangePage');
       }
@@ -116,8 +116,9 @@ class MyApp extends StatelessWidget with WidgetsBindingObserver {
     });
     EventBus().on('systemInformation', (arg) {
       print('systemInformationasdasdasd');
-      if(arg is SystemInformationBeanEntity){
-        print('systemInformationasdasdasdcccccccccccccccccccccccccccccccccccccccc');
+      if (arg is SystemInformationBeanEntity) {
+        print(
+            'systemInformationasdasdasdcccccccccccccccccccccccccccccccccccccccc');
         showSystemMessages(arg);
       }
     });
@@ -336,6 +337,7 @@ class MyApp extends StatelessWidget with WidgetsBindingObserver {
           EasyLoading.instance
             ..contentPadding = EdgeInsets.symmetric(horizontal: 0, vertical: 12)
             ..alignment = Alignment.bottomCenter
+            ..loadingStyle = EasyLoadingStyle.light
             ..contentMargin = EdgeInsets.fromLTRB(20, 20, 20, 65);
           EasyLoading.show(
             indicator: Material(
@@ -573,6 +575,7 @@ class MyApp extends StatelessWidget with WidgetsBindingObserver {
     EasyLoading.instance
       ..contentPadding = EdgeInsets.symmetric(horizontal: 0, vertical: 12)
       ..alignment = Alignment.bottomCenter
+      ..loadingStyle = EasyLoadingStyle.light
       ..contentMargin = EdgeInsets.fromLTRB(20, 20, 20, 65);
     EasyLoading.show(
       indicator: Material(
@@ -980,62 +983,81 @@ class MyApp extends StatelessWidget with WidgetsBindingObserver {
     EasyLoading.instance
       ..contentPadding = EdgeInsets.symmetric(horizontal: 12, vertical: 12)
       ..alignment = Alignment.center
+      ..loadingStyle = EasyLoadingStyle.custom
+      ..backgroundColor = Colors.transparent
+      ..indicatorColor = Colors.black
+      ..progressColor = Colors.black
+      ..maskColor = Colors.black
+      ..textColor = Colors.black
       ..contentMargin = EdgeInsets.fromLTRB(20, 20, 20, 65);
     EasyLoading.show(
       indicator: Material(
-        color: Colors.white,
-        child: Center(
-          child: Container(
-            decoration: BoxDecoration(
-              borderRadius: BorderRadius.circular(16),
-              color: Colors.white,
-            ),
-            height: 180,
-            padding: EdgeInsets.symmetric(horizontal: 8, vertical: 12),
-            child: Column(
-              children: [
-                Expanded(
-                  child: Center(
-                    child: Container(
-                      child: MyViews().myText(arg.content, MyColors.c333333, 14),
-                      margin: EdgeInsets.symmetric(horizontal: 20),
-                    ),
-                  ),
-                ),
-                Container(
-                  height: 0.5,
-                  color: MyColors.cE7E7E7,
-                  margin: EdgeInsets.only(bottom: 12),
+        color: Colors.transparent,
+        child: Container(
+          decoration: BoxDecoration(
+            borderRadius: BorderRadius.circular(16),
+          ),
+          height: MediaQuery.of(buildContext).size.height - 200,
+          padding: EdgeInsets.symmetric(horizontal: 8, vertical: 12),
+          child: Column(
+            children: [
+              Expanded(child: Container()),
+              Container(
+                decoration: BoxDecoration(
+                  color: Colors.white,
+                  borderRadius: BorderRadius.circular(16),
                 ),
-                Container(
-                  margin: EdgeInsets.symmetric(horizontal: 10),
-                  child: Row(
-                    children: [
-                      Expanded(
-                        child: GestureDetector(
-                          onTap: () {
-                            EasyLoading.dismiss();
-                          },
-                          behavior: HitTestBehavior.translucent,
-                          child: Container(
-                            decoration: BoxDecoration(
-                                borderRadius: BorderRadius.circular(20),
-                                border: Border.all(
-                                    color: MyColors.cFF4233, width: 1.1),
-                                color: Colors.white),
-                            child: MyViews().myText('我知道了', MyColors.cFF4233, 14),
-                            height: 40,
-                            alignment: Alignment.center,
-                          ),
-                        ),
+                child: Column(
+                  children: [
+                    Container(
+                      child: Text(
+                        '系统消息',
+                        style: TextStyle(
+                            color: MyColors.c333333,
+                            fontSize: 14,
+                            fontWeight: FontWeight.bold),
                       ),
-                    ],
-                  ),
-                )
-              ],
-              mainAxisAlignment: MainAxisAlignment.spaceBetween,
-            ),
+                      margin:
+                          EdgeInsets.symmetric(horizontal: 26, vertical: 15),
+                    ),
+                    Container(
+                      child: Text(
+                        arg.content,
+                        style: TextStyle(color: MyColors.c333333, fontSize: 14),
+                      ),
+                      margin: EdgeInsets.symmetric(horizontal: 26),
+                      alignment: Alignment.centerLeft,
+                    ),
+                    Container(
+                      height: 0.5,
+                      color: MyColors.cE7E7E7,
+                      margin: EdgeInsets.only(bottom: 12, top: 12),
+                    ),
+                    GestureDetector(
+                      onTap: () {
+                        EasyLoading.dismiss();
+                      },
+                      behavior: HitTestBehavior.translucent,
+                      child: Container(
+                        width: 150,
+                        margin: EdgeInsets.only(bottom: 14),
+                        decoration: BoxDecoration(
+                            borderRadius: BorderRadius.circular(20),
+                            border:
+                                Border.all(color: MyColors.cFF4233, width: 1.1),
+                            color: Colors.white),
+                        child: MyViews().myText('我知道了', MyColors.cFF4233, 14),
+                        height: 40,
+                        alignment: Alignment.center,
+                      ),
+                    )
+                  ],
+                ),
+              ),
+              Expanded(child: Container()),
+            ],
           ),
+          alignment: Alignment.center,
         ),
       ),
     );

+ 1 - 0
lib/my_tools/easy_loading/easy_loading.dart

@@ -270,6 +270,7 @@ class EasyLoading {
     EasyLoading.instance
       ..contentPadding = EdgeInsets.symmetric(horizontal: 20, vertical: 12)
       ..alignment = Alignment.center
+      ..loadingStyle = EasyLoadingStyle.light
       ..contentMargin = EdgeInsets.all(20);
     _getInstance()._show(
       status: status,

+ 2 - 2
lib/my_tools/my_cookie.dart

@@ -18,9 +18,9 @@ class MyCookie {
   //工厂构造函数
   factory MyCookie() => _singleton;
 
-  // String server = '172.16.104.14';
+  String server = '172.16.104.14';
   // String server = '39.108.225.84';
-  String server = 'bby.banghuo.net';
+  // String server = 'bby.banghuo.net';
   SharedPreferences prefs;
   PackageInfo packageInfo;
   UserBeanDataData userBean;

+ 1 - 0
lib/my_tools/my_views.dart

@@ -410,6 +410,7 @@ class MyViews {
                                     ..contentPadding = EdgeInsets.symmetric(
                                         horizontal: 20, vertical: 12)
                                     ..alignment = Alignment.center
+                                    ..loadingStyle = EasyLoadingStyle.light
                                     ..contentMargin = EdgeInsets.all(20);
                                   EasyLoading.show();
                                   aliPay(entity.data).then((value) {

+ 2 - 0
lib/paegs/ad_details_page/ad_details_page.dart

@@ -285,6 +285,7 @@ class _AdDetailsPageState extends State<AdDetailsPage> {
     EasyLoading.instance
       ..contentPadding = EdgeInsets.symmetric(horizontal: 0, vertical: 12)
       ..alignment = Alignment.bottomCenter
+      ..loadingStyle = EasyLoadingStyle.light
       ..contentMargin = EdgeInsets.fromLTRB(20, 20, 20, 65);
     double price = order.amount;
     EasyLoading.show(
@@ -468,6 +469,7 @@ class _AdDetailsPageState extends State<AdDetailsPage> {
                                     ..contentPadding = EdgeInsets.symmetric(
                                         horizontal: 20, vertical: 12)
                                     ..alignment = Alignment.center
+                                    ..loadingStyle = EasyLoadingStyle.light
                                     ..contentMargin = EdgeInsets.all(20);
                                   EasyLoading.show();
                                   aliPay(entity.data).then((value) {

+ 2 - 0
lib/paegs/gang_page/create_a_gang_page/create_a_gang_page.dart

@@ -1038,6 +1038,7 @@ class _CreateAGangPageState extends State<CreateAGangPage> {
     EasyLoading.instance
       ..contentPadding = EdgeInsets.symmetric(horizontal: 0, vertical: 12)
       ..alignment = Alignment.bottomCenter
+      ..loadingStyle = EasyLoadingStyle.light
       ..contentMargin = EdgeInsets.fromLTRB(20, 20, 20, 65);
     EasyLoading.show(
       indicator: Material(
@@ -1223,6 +1224,7 @@ class _CreateAGangPageState extends State<CreateAGangPage> {
                                     ..contentPadding = EdgeInsets.symmetric(
                                         horizontal: 20, vertical: 12)
                                     ..alignment = Alignment.center
+                                    ..loadingStyle = EasyLoadingStyle.light
                                     ..contentMargin = EdgeInsets.all(20);
                                   EasyLoading.show();
                                   aliPay(entity.data).then((value) {

+ 1 - 0
lib/paegs/gang_page/gang_in_page/gang_in_page.dart

@@ -813,6 +813,7 @@ class _GangInPageState extends State<GangInPage> {
                   ..contentPadding =
                       EdgeInsets.symmetric(horizontal: 20, vertical: 12)
                   ..alignment = Alignment.center
+                  ..loadingStyle = EasyLoadingStyle.light
                   ..contentMargin = EdgeInsets.all(20);
                 EasyLoading.show();
                 aliPay(entity.data).then((value) {

+ 1 - 0
lib/paegs/gang_page/gang_in_page/pay_to_the_helper_page/pay_to_the_helper_page.dart

@@ -241,6 +241,7 @@ class _PayToTheHelperPageState extends State<PayToTheHelperPage> {
                     ..contentPadding = EdgeInsets.symmetric(
                         horizontal: 20, vertical: 12)
                     ..alignment = Alignment.center
+                    ..loadingStyle = EasyLoadingStyle.light
                     ..contentMargin = EdgeInsets.all(20);
                   EasyLoading.show();
                   aliPay(entity.data).then((value) {

+ 10 - 5
lib/paegs/home_page/home_page.dart

@@ -6,6 +6,7 @@ import 'package:bbyyy/beans/commodity_category_bean_entity.dart';
 import 'package:bbyyy/beans/goods_bean_entity.dart';
 import 'package:bbyyy/beans/my_shop_bean_entity.dart';
 import 'package:bbyyy/beans/store_bean_entity.dart';
+import 'package:bbyyy/beans/system_information_bean_entity.dart';
 import 'package:bbyyy/https/MyDio.dart';
 import 'package:bbyyy/my_tools/const.dart';
 import 'package:bbyyy/my_tools/dims.dart';
@@ -246,11 +247,15 @@ class _HomePageState extends State<HomePage>
                         padding: EdgeInsets.only(left: 10, right: 10, top: 12),
                         child: GestureDetector(
                           onTap: () {
-                            showS = !showS;
-                            if (!showS) {
-                              _description.clear();
-                            }
-                            setState(() {});
+                            // showS = !showS;
+                            // if (!showS) {
+                            //   _description.clear();
+                            // }
+                            // setState(() {});
+                            SystemInformationBeanEntity entity = SystemInformationBeanEntity();
+                            entity.type = '系统消息';
+                            entity.content = '服务器停服通知\r\n 服务器将在今晚停服8个小时';
+                            EventBus().emit('systemInformation',entity);
                           },
                           behavior: HitTestBehavior.translucent,
                           child: AnimatedContainer(

+ 3 - 0
lib/paegs/mine_page/advertising_page/new_ad_page.dart

@@ -625,6 +625,7 @@ class _NewAdPageState extends State<NewAdPage> {
     EasyLoading.instance
       ..contentPadding = EdgeInsets.symmetric(horizontal: 20, vertical: 12)
       ..alignment = Alignment.center
+      ..loadingStyle = EasyLoadingStyle.light
       ..contentMargin = EdgeInsets.all(20);
     EasyLoading.show();
     print('uploadCover');
@@ -750,6 +751,7 @@ class _NewAdPageState extends State<NewAdPage> {
     EasyLoading.instance
       ..contentPadding = EdgeInsets.symmetric(horizontal: 0, vertical: 12)
       ..alignment = Alignment.bottomCenter
+      ..loadingStyle = EasyLoadingStyle.light
       ..contentMargin = EdgeInsets.fromLTRB(20, 20, 20, 65);
     double price = NumUtil.multiply(
         int.parse(_days.text.toString()),
@@ -941,6 +943,7 @@ class _NewAdPageState extends State<NewAdPage> {
                                     ..contentPadding = EdgeInsets.symmetric(
                                         horizontal: 20, vertical: 12)
                                     ..alignment = Alignment.center
+                                    ..loadingStyle = EasyLoadingStyle.light
                                     ..contentMargin = EdgeInsets.all(20);
                                   EasyLoading.show();
                                   aliPay(entity.data).then((value) {

+ 1 - 0
lib/paegs/mine_page/privacy_protection_props_page/privacy_protection_props_page.dart

@@ -568,6 +568,7 @@ class _PrivacyProtectionPropsPageState
                 ..contentPadding =
                     EdgeInsets.symmetric(horizontal: 20, vertical: 12)
                 ..alignment = Alignment.center
+                ..loadingStyle = EasyLoadingStyle.light
                 ..contentMargin = EdgeInsets.all(20);
               EasyLoading.show();
               aliPay(entity.data).then((value) {

+ 9 - 7
lib/paegs/msg_page/msg_page.dart

@@ -374,8 +374,8 @@ class _MsgPageState extends State<MsgPage> with AutomaticKeepAliveClientMixin {
                       Container(
                         margin: EdgeInsets.only(left: 14, right: 14),
                         child: ClipRRect(
-                          child: Image.asset(
-                            'images/app_logo.png',
+                          child: SvgPicture.asset(
+                            'images/svg/平台助手.svg',
                             height: 45,
                             width: 45,
                           ),
@@ -391,11 +391,13 @@ class _MsgPageState extends State<MsgPage> with AutomaticKeepAliveClientMixin {
                               Row(
                                 children: [
                                   Expanded(
-                                      child: Text(
-                                    '系统消息',
-                                    style: TextStyle(
-                                        color: MyColors.c333333, fontSize: 15),
-                                  )),
+                                    child: Text(
+                                      '系统消息',
+                                      style: TextStyle(
+                                          color: MyColors.c333333,
+                                          fontSize: 15),
+                                    ),
+                                  ),
                                   Text(
                                     '',
                                     style: TextStyle(

+ 1 - 0
lib/paegs/place_an_order_page/place_an_order_page.dart

@@ -562,6 +562,7 @@ class _PlaceAnOrderPageState extends State<PlaceAnOrderPage> {
                     ..contentPadding = EdgeInsets.symmetric(
                         horizontal: 20, vertical: 12)
                     ..alignment = Alignment.center
+                    ..loadingStyle = EasyLoadingStyle.light
                     ..contentMargin = EdgeInsets.all(20);
                   EasyLoading.show();
                   aliPay(entity.data).then((value) {

+ 86 - 56
lib/paegs/registered_page/registered_page.dart

@@ -5,8 +5,10 @@ import 'package:bbyyy/beans/upload_image_bean_entity.dart';
 import 'package:bbyyy/https/my_request.dart';
 import 'package:bbyyy/my_tools/my_colors.dart';
 import 'package:bbyyy/my_tools/my_tools.dart';
+import 'package:bbyyy/my_tools/my_views.dart';
 import 'package:bbyyy/paegs/login_page/login_page.dart';
 import 'package:flutter/cupertino.dart';
+import 'package:flutter/gestures.dart';
 import 'package:flutter/material.dart';
 import 'package:flutter/services.dart';
 import 'package:flutter_svg/svg.dart';
@@ -23,6 +25,7 @@ class _RegisteredPageState extends State<RegisteredPage> {
   TextEditingController _nickname = TextEditingController(text: '');
   TextEditingController _pw = TextEditingController(text: '');
   int focus = -1;
+  bool haveRead = false;
 
   File _image;
   final picker = ImagePicker();
@@ -387,6 +390,10 @@ class _RegisteredPageState extends State<RegisteredPage> {
                               showToast('请设置头像');
                               return;
                             }
+                            if(!haveRead){
+                              showToast('请阅读并同意《隐私政策》');
+                              return;
+                            }
                             uploadAvatar();
                           },
                           behavior: HitTestBehavior.translucent,
@@ -429,62 +436,34 @@ class _RegisteredPageState extends State<RegisteredPage> {
                             ),
                           ),
                         ),
-                        // Expanded(
-                        //   child: SafeArea(
-                        //     bottom: true,
-                        //     child: Container(
-                        //       padding: EdgeInsets.only(bottom: 50),
-                        //       alignment: Alignment.bottomCenter,
-                        //       child: Row(
-                        //         children: [
-                        //           GestureDetector(
-                        //             onTap: () {
-                        //               MyTools().toPage(
-                        //                   context, LoginPage(), (then) {},
-                        //                   noBack: true);
-                        //             },
-                        //             behavior: HitTestBehavior.translucent,
-                        //             child: Container(
-                        //               padding: EdgeInsets.all(8),
-                        //               child: Text(
-                        //                 '登录账号',
-                        //                 style: TextStyle(
-                        //                     color: MyColors.c666666, fontSize: 14),
-                        //               ),
-                        //             ),
-                        //           ),
-                        //           Container(
-                        //             height: 13,
-                        //             width: 2,
-                        //             decoration: BoxDecoration(
-                        //               borderRadius:
-                        //                   BorderRadius.all(Radius.circular(1)),
-                        //               color: MyColors.cFF4233,
-                        //             ),
-                        //             margin: EdgeInsets.only(left: 27, right: 27),
-                        //           ),
-                        //           GestureDetector(
-                        //             onTap: () {
-                        //               MyTools().toPage(
-                        //                   context, ForgetPasswordPage(), (then) {},
-                        //                   noBack: true);
-                        //             },
-                        //             behavior: HitTestBehavior.translucent,
-                        //             child: Container(
-                        //               padding: EdgeInsets.all(8),
-                        //               child: Text(
-                        //                 '忘记密码',
-                        //                 style: TextStyle(
-                        //                     color: MyColors.c666666, fontSize: 14),
-                        //               ),
-                        //             ),
-                        //           ),
-                        //         ],
-                        //         mainAxisAlignment: MainAxisAlignment.center,
-                        //       ),
-                        //     ),
-                        //   ),
-                        // )
+                        Row(
+                          children: [
+                            Checkbox(value: haveRead, onChanged: (v){
+                              setState(() {
+                                haveRead = v;
+                              });
+                            }, activeColor: MyColors.cFF4233,),
+                            RichText(
+                              text: TextSpan(
+                                  text: '我已阅读并同意',
+                                  style: TextStyle(
+                                      color: MyColors.c999999, fontSize: 12),
+                                  children: [
+                                    
+                                    TextSpan(
+                                        text: '《使用协议》和《隐私政策》',
+                                        style: TextStyle(
+                                            color: MyColors.cFF4233,
+                                            fontSize: 12),
+                                        recognizer: TapGestureRecognizer()
+                                          ..onTap = () {
+                                            MyTools().toPage(context, PrivacyPolicyPage(), (then){});
+                                          }),
+                                  ]),
+                            ),
+                          ],
+                          mainAxisAlignment: MainAxisAlignment.end,
+                        ),
                       ],
                       crossAxisAlignment: CrossAxisAlignment.start,
                     ),
@@ -509,6 +488,7 @@ class _RegisteredPageState extends State<RegisteredPage> {
   }
 
   void registered(UploadImageBeanEntity data) {
+
     registeredAccountNumber({
       'mobile':_phoneNum.text,
       'name':_nickname.text,
@@ -524,3 +504,53 @@ class _RegisteredPageState extends State<RegisteredPage> {
     }, (error) {});
   }
 }
+
+
+class PrivacyPolicyPage extends StatefulWidget {
+  @override
+  _PrivacyPolicyPageState createState() => _PrivacyPolicyPageState();
+}
+
+class _PrivacyPolicyPageState extends State<PrivacyPolicyPage> {
+  @override
+  Widget build(BuildContext context) {
+    return Scaffold(body: Column(children: [
+      MyViews().myAppBar('隐私政策', context, []),
+      Expanded(child: SingleChildScrollView(child: Padding(
+        padding: const EdgeInsets.all(8.0),
+        child: Text('''
+  梆梆鱼尊重并保护所有使用服务用户的个人隐私权。为了给您提供更准确、更有个性化的服务,梆梆鱼会按照本隐私权政策的规定使用和披露您的个人信息。但梆梆鱼将以高度的勤勉、审慎义务对待这些信息。除本隐私权政策另有规定外,在未征得您事先许可的情况下,梆梆鱼不会将这些信息对外披露或向第三方提供。梆梆鱼会不时更新本隐私权政策。 您在同意梆梆鱼服务使用协议之时,即视为您已经同意本隐私权政策全部内容。本隐私权政策属于梆梆鱼服务使用协议不可分割的一部分。
+  \n1. 适用范围
+  \na) 在您注册梆梆鱼帐号时,您根据梆梆鱼要求提供的个人注册信息;
+  \nb) 在您使用梆梆鱼网络服务,或访问梆梆鱼平台网页时,梆梆鱼自动接收并记录的您的浏览器和计算机上的信息,包括但不限于您的IP地址、浏览器的类型、使用的语言、访问日期和时间、软硬件特征信息及您需求的网页记录等数据;
+  \nc) 梆梆鱼通过合法途径从商业伙伴处取得的用户个人数据。
+  您了解并同意,以下信息不适用本隐私权政策:
+  \na) 您在使用梆梆鱼平台提供的搜索服务时输入的关键字信息;
+  \nb) 梆梆鱼收集到的您在梆梆鱼发布的有关信息数据,包括但不限于参与活动、成交信息及评价详情;
+  \nc) 违反法律规定或违反梆梆鱼规则行为及梆梆鱼已对您采取的措施。
+  \n2. 信息使用
+  \na) 梆梆鱼不会向任何无关第三方提供、出售、出租、分享或交易您的个人信息,除非事先得到您的许可,或该第三方和梆梆鱼(含梆梆鱼关联公司)单独或共同为您提供服务,且在该服务结束后,其将被禁止访问包括其以前能够访问的所有这些资料。
+  \nb) 梆梆鱼亦不允许任何第三方以任何手段收集、编辑、出售或者无偿传播您的个人信息。任何梆梆鱼平台用户如从事上述活动,一经发现,梆梆鱼有权立即终止与该用户的服务协议。
+  \nc) 为服务用户的目的,梆梆鱼可能通过使用您的个人信息,向您提供您感兴趣的信息,包括但不限于向您发出产品和服务信息,或者与梆梆鱼合作伙伴共享信息以便他们向您发送有关其产品和服务的信息(后者需要您的事先同意)。
+  \n3. 信息披露
+  在如下情况下,梆梆鱼将依据您的个人意愿或法律的规定全部或部分的披露您的个人信息:
+  \na) 经您事先同意,向第三方披露;
+  \nb) 为提供您所要求的产品和服务,而必须和第三方分享您的个人信息;
+  \nc) 根据法律的有关规定,或者行政或司法机构的要求,向第三方或者行政、司法机构披露;
+  \nd) 如您出现违反中国有关法律、法规或者梆梆鱼服务协议或相关规则的情况,需要向第三方披露;
+  \ne) 如您是适格的知识产权投诉人并已提起投诉,应被投诉人要求,向被投诉人披露,以便双方处理可能的权利纠纷;
+  \nf) 在梆梆鱼平台上创建的某一交易中,如交易任何一方履行或部分履行了交易义务并提出信息披露请求的,梆梆鱼有权决定向该用户提供其交易对方的联络方式等必要信息,以促成交易的完成或纠纷的解决。
+  \ng) 其它梆梆鱼根据法律、法规或者网站政策认为合适的披露。
+  \n4. 信息存储和交换
+  梆梆鱼收集的有关您的信息和资料将保存在梆梆鱼及(或)其关联公司的服务器上,这些信息和资料可能传送至您所在国家、地区或梆梆鱼收集信息和资料所在地的境外并在境外被访问、存储和展示。
+  \n5. Cookie的使用
+  \na) 在您未拒绝接受cookies的情况下,梆梆鱼会在您的计算机上设定或取用cookies ,以便您能登录或使用依赖于cookies的梆梆鱼平台服务或功能。梆梆鱼使用cookies可为您提供更加周到的个性化服务,包括推广服务。 b) 您有权选择接受或拒绝接受cookies。您可以通过修改浏览器设置的方式拒绝接受cookies。但如果您选择拒绝接受cookies,则您可能无法登录或使用依赖于cookies的梆梆鱼网络服务或功能。
+  \nc) 通过梆梆鱼所设cookies所取得的有关信息,将适用本政策。
+  \n6. 信息安全
+  \na) 梆梆鱼帐号均有安全保护功能,请妥善保管您的用户名及密码信息。梆梆鱼将通过对用户密码进行加密等安全措施确保您的信息不丢失,不被滥用和变造。尽管有前述安全措施,但同时也请您注意在信息网络上不存在“完善的安全措施”。
+  \nb) 在使用梆梆鱼网络服务进行网上交易时,您不可避免的要向交易对方或潜在的交易对方披露自己的个人信息,如联络方式或者邮政地址。请您妥善保护自己的个人信息,仅在必要的情形下向他人提供。如您发现自己的个人信息泄密,尤其是梆梆鱼用户名及密码发生泄露,请您立即联络梆梆鱼客服,以便梆梆鱼采取相应措施。
+'''),
+      ),))
+    ],),);
+  }
+}

+ 1 - 0
lib/paegs/release_goods_page/release_goods_page.dart

@@ -941,6 +941,7 @@ class _ReleaseGoodsPageState extends State<ReleaseGoodsPage> {
       EasyLoading.instance
         ..contentPadding = EdgeInsets.symmetric(horizontal: 20, vertical: 12)
         ..alignment = Alignment.center
+        ..loadingStyle = EasyLoadingStyle.light
         ..contentMargin = EdgeInsets.all(20);
       EasyLoading.show();
       print('uploadCover');