Browse Source

下单,信息bug更改;

ff_new
w-R 3 years ago
parent
commit
f7d2ec5b0a
  1. 2
      lib/community/community_list.dart
  2. 6
      lib/home/home_page.dart
  3. 3
      lib/message/system_details.dart
  4. 39
      lib/message/system_message.dart
  5. 23
      lib/mine/manage_address_page.dart
  6. 74
      lib/mine/release_page.dart
  7. 8
      lib/retrofit/min_api.dart
  8. 2
      lib/retrofit/min_api.g.dart
  9. 8
      lib/retrofit/retrofit_api.dart
  10. 2
      lib/retrofit/retrofit_api.g.dart
  11. 41
      lib/settlement/settlement.dart
  12. 51
      lib/settlement/settlement_view/distribution.dart
  13. 4
      lib/settlement/settlement_view/settlement_order_commodity.dart
  14. 2
      lib/store/store_view/store_info.dart
  15. 10
      pubspec.lock
  16. 8
      pubspec.yaml

2
lib/community/community_list.dart

@ -20,6 +20,7 @@ class CommunityList extends StatefulWidget {
final int commentType;
final bool isList;
final Function exitFull;
final Function removalDynamic;
CommunityList(
this.comments,
@ -27,6 +28,7 @@ class CommunityList extends StatefulWidget {
this.commentType,{
this.isList = false,
this.exitFull,
this.removalDynamic
}
);

6
lib/home/home_page.dart

@ -304,7 +304,11 @@ class _HomePage extends State<HomePage> with AutomaticKeepAliveClientMixin {
),
child: GestureDetector(
onTap: () {
Navigator.of(context).pushNamed('/router/system_msg_page');
Navigator.of(context).pushNamed('/router/system_msg_page').then((value) {
setState(() {
totalMsg = 0;
});
});
},
child: Container(

3
lib/message/system_details.dart

@ -4,20 +4,17 @@ import 'package:dio/dio.dart';
import 'package:flutter/material.dart';
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
import 'package:huixiang/generated/l10n.dart';
import 'package:huixiang/retrofit/data/article.dart';
import 'package:huixiang/retrofit/data/base_data.dart';
import 'package:huixiang/retrofit/data/message.dart';
import 'package:huixiang/retrofit/data/page.dart';
import 'package:huixiang/retrofit/retrofit_api.dart';
import 'package:huixiang/utils/font_weight.dart';
import 'package:huixiang/view_widget/classic_header.dart';
import 'package:huixiang/view_widget/comment_menu.dart';
import 'package:huixiang/view_widget/custom_image.dart';
import 'package:huixiang/view_widget/my_appbar.dart';
import 'package:huixiang/view_widget/my_footer.dart';
import 'package:huixiang/view_widget/no_data_view.dart';
import 'package:huixiang/view_widget/round_button.dart';
import 'package:huixiang/web/web_view/comment_list.dart';
import 'package:pull_to_refresh/pull_to_refresh.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';

39
lib/message/system_message.dart

@ -124,7 +124,12 @@ class _SystemMessagePage extends State<SystemMessagePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
return WillPopScope(
onWillPop: () async {
Navigator.of(context).pop(true);
return false;
},
child:Scaffold(
appBar: MyAppBar(
background: Colors.white,
leadingColor: Colors.black,
@ -187,7 +192,7 @@ class _SystemMessagePage extends State<SystemMessagePage> {
),
),
);
));
}
Widget newsSurvey(){
@ -199,7 +204,11 @@ class _SystemMessagePage extends State<SystemMessagePage> {
Expanded(child: GestureDetector(
onTap: (){
Navigator.of(context)
.pushNamed('/router/system_details',arguments: {"msgType":5});
.pushNamed('/router/system_details',arguments: {"msgType":5}).then((value) {
setState(() {
msgNumber["5"] = 0;
});
});
},
child:Column(
children: [
@ -255,7 +264,11 @@ class _SystemMessagePage extends State<SystemMessagePage> {
GestureDetector(
onTap: (){
Navigator.of(context)
.pushNamed('/router/system_details',arguments: {"msgType":6});
.pushNamed('/router/system_details',arguments: {"msgType":6}).then((value) {
setState(() {
msgNumber["6"] = 0;
});
});
},
child: Column(
children: [
@ -310,7 +323,11 @@ class _SystemMessagePage extends State<SystemMessagePage> {
GestureDetector(
onTap: (){
Navigator.of(context)
.pushNamed('/router/system_details',arguments: {"msgType":4});
.pushNamed('/router/system_details',arguments: {"msgType":4}).then((value) {
setState(() {
msgNumber["4"] = 0;
});
});
},
child:Column(
children: [
@ -401,10 +418,18 @@ class _SystemMessagePage extends State<SystemMessagePage> {
onTap: () {
if(messages[position].typed == 2)
Navigator.of(context)
.pushNamed('/router/system_details',arguments: {"msgType":2});
.pushNamed('/router/system_details',arguments: {"msgType":2}).then((value) {
setState(() {
msgNumber["2"] = 0;
});
});
else if(messages[position].typed == 3)
Navigator.of(context)
.pushNamed('/router/system_details',arguments: {"msgType":3});
.pushNamed('/router/system_details',arguments: {"msgType":3}).then((value) {
setState(() {
msgNumber["3"] = 0;
});
});
},
child: buildMessageItem(messages[position]),
);

23
lib/mine/manage_address_page.dart

@ -1,6 +1,7 @@
import 'package:dio/dio.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
import 'package:huixiang/generated/l10n.dart';
import 'package:huixiang/retrofit/data/address.dart';
import 'package:huixiang/retrofit/data/base_data.dart';
@ -346,15 +347,15 @@ class _ManageAddressPage extends State<ManageAddressPage> {
}
}
changeCheck(value, position) async {
if (value) {
addressList[checkIndex].isDefault = false;
checkIndex = position;
addressList[position].isDefault = true;
BaseData baseData =
await apiService.updateAddress(addressList[position].toJson());
if (baseData != null && baseData.isSuccess) {}
setState(() {});
}
}
// changeCheck(value, position) async {
// if (value) {
// addressList[checkIndex].isDefault = false;
// checkIndex = position;
// addressList[position].isDefault = true;
// BaseData baseData =
// await apiService.updateAddress(addressList[position].toJson());
// if (baseData != null && baseData.isSuccess) {}
// setState(() {});
// }
// }
}

74
lib/mine/release_page.dart

@ -3,6 +3,7 @@ import 'dart:convert';
import 'package:dio/dio.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:huixiang/community/community_list.dart';
import 'package:huixiang/community/community_view/community_dynamic.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:huixiang/retrofit/data/article.dart';
@ -25,24 +26,25 @@ class ReleasePage extends StatefulWidget {
class _ReleasePage extends State<ReleasePage> {
RefreshController refreshController = RefreshController();
final ScrollController scrollController = ScrollController();
ApiService apiService;
int pageNum = 0;
String userId;
bool isLoadMore = false;
List<Article> articles = [];
List<ComunityComment> comments = [];
@override
void initState() {
super.initState();
_onRefresh();
}
_onRefresh() async {
pageNum = 0;
setState(() {});
queryCommunity();
}
///
queryCommunity() async {
if (apiService == null) {
SharedPreferences value = await SharedPreferences.getInstance();
@ -53,7 +55,10 @@ class _ReleasePage extends State<ReleasePage> {
token: value.getString("token"),
);
}
if(isLoadMore){
pageNum += 1;
isLoadMore = false;
}else pageNum = 1;
BaseData<PageInfo<ComunityComment>> baseData = await apiService.trendList({
"onlyFollow": false,
"onlyMe": true,
@ -69,23 +74,9 @@ class _ReleasePage extends State<ReleasePage> {
refreshController.loadComplete();
if (baseData.isSuccess) {
if (pageNum == 1) {
articles.clear();
comments.clear();
}
baseData.data.list.forEach((element) {
var article = Article();
article.id = element.id;
article.content = jsonEncode(element.subjectInfo);
article.mainTitle =element.subject;
article.liked = element.selfFollow;
article.authorHeadImg = element.memberInfo?.avatar;
article.authorName = element.memberInfo?.nickname;
article.createTime = element.createTime;
article.updateUser = element.memberInfo?.mid;
article.viewers = element?.viewers;
article.likes = element?.likes;
article.comments = element?.comments;
articles.add(article);
});
comments.addAll(baseData.data.list);
// print("comments: ${comments.length}");
if (int.tryParse(baseData.data.total) < (pageNum * 10)) {
refreshController.loadNoData();
@ -119,34 +110,35 @@ class _ReleasePage extends State<ReleasePage> {
),
onRefresh: _onRefresh,
onLoading: () {
setState(() {});
isLoadMore = true;
_onRefresh();
},
child: ListView.builder(
physics: NeverScrollableScrollPhysics(),
itemBuilder: (context, position) {
return InkWell(
child: CommunityDynamic(
articles[position],
scrollController: scrollController,
child: Container(
child: SingleChildScrollView(
physics: BouncingScrollPhysics(),
child: Container(
// color: Color(0xFFF7F7F7),
// margin: EdgeInsets.only(top: 16.h),
child: Column(
children: [
CommunityList(
comments,
userId,
1,
exitFull: (){setState(() {
isList: true,
exitFull: () {
_onRefresh();
});},
},
removalDynamic: () {
_onRefresh();
},
),
onTap: () {
Navigator.of(context).pushNamed(
'/router/community_details',
arguments: {
"businessId": articles[position].id,"userId":userId,
},
);
},
);
},
itemCount: articles.length,
)),
],
),
),
),
),),
);
},
);

8
lib/retrofit/min_api.dart

@ -21,8 +21,8 @@ import 'data/shoppingCart.dart';
part 'min_api.g.dart';
const base_url = "https://pos.api.lotus-wallet.com/app/"; ///
const baseUrl = "https://pos.api.lotus-wallet.com/app/"; ///
// const base_url = "https://pos.api.lotus-wallet.com/app/"; ///
// const baseUrl = "https://pos.api.lotus-wallet.com/app/"; ///
// const base_url = "http://user.prod.kunqi.lotus-wallet.com/app/"; ///222
@ -32,8 +32,8 @@ const baseUrl = "https://pos.api.lotus-wallet.com/app/"; ///正式
// const baseUrl = "http://192.168.10.236:8765/app/";///
// const base_url = "http://192.168.10.88:8765/app/";///
// const baseUrl = "http://192.168.10.88:8765/app/";///
const base_url = "http://192.168.10.88:8765/app/";///
const baseUrl = "http://192.168.10.88:8765/app/";///
// const base_url = "http://192.168.10.37:8766/app/";

2
lib/retrofit/min_api.g.dart

@ -9,7 +9,7 @@ part of 'min_api.dart';
class _MinApiService implements MinApiService {
_MinApiService(this._dio, {this.baseUrl}) {
ArgumentError.checkNotNull(_dio, '_dio');
baseUrl ??= 'https://pos.api.lotus-wallet.com/app/';
baseUrl ??= 'http://192.168.10.88:8765/app/';
}
final Dio _dio;

8
lib/retrofit/retrofit_api.dart

@ -54,8 +54,8 @@ import 'data/wx_pay.dart';
part 'retrofit_api.g.dart';
const base_url = "https://pos.platform.lotus-wallet.com/app/"; ///
const baseUrl = "https://pos.platform.lotus-wallet.com/app/"; ///
// const base_url = "https://pos.platform.lotus-wallet.com/app/"; ///
// const baseUrl = "https://pos.platform.lotus-wallet.com/app/"; ///
// const base_url = "http://platform.prod.kunqi.lotus-wallet.com/app/"; ///222
// const baseUrl = "http://platform.prod.kunqi.lotus-wallet.com/app/"; ///222
@ -70,8 +70,8 @@ const baseUrl = "https://pos.platform.lotus-wallet.com/app/"; ///正式
// const baseUrl = "http://192.168.10.37:8766/app/";
// const base_url = "http://192.168.10.88:8766/app/";///
// const baseUrl = "http://192.168.10.142:8766/app/";///
const base_url = "http://192.168.10.88:8766/app/";///
const baseUrl = "http://192.168.10.142:8766/app/";///
@RestApi(baseUrl: baseUrl)
abstract class ApiService {

2
lib/retrofit/retrofit_api.g.dart

@ -9,7 +9,7 @@ part of 'retrofit_api.dart';
class _ApiService implements ApiService {
_ApiService(this._dio, {this.baseUrl}) {
ArgumentError.checkNotNull(_dio, '_dio');
baseUrl ??= 'https://pos.platform.lotus-wallet.com/app/';
baseUrl ??= 'http://192.168.10.88:8766/app/';
}
final Dio _dio;

41
lib/settlement/settlement.dart

@ -137,6 +137,7 @@ class _Settlement extends State<Settlement> {
queryOrderDetails(parentId);
}
});
}
}
@ -154,7 +155,9 @@ class _Settlement extends State<Settlement> {
}
queryAddress(int selectedBtn) async {
setState(() {
this.selectedBtn = selectedBtn;
});
if (address != null) {
queryOrderInfo(address.id, selectedBtn, null, 0, null);
return;
@ -167,7 +170,10 @@ class _Settlement extends State<Settlement> {
double.tryParse(storeInfo.longitude),
);
if (baseDate != null && baseDate.isSuccess) {
setState(() {
address = baseDate.data[0];
});
for (int i = 1; i < baseDate.data.length; i++) {
Address address1 = baseDate.data[i];
@ -191,7 +197,9 @@ class _Settlement extends State<Settlement> {
double mi1 = await BMFCalculateUtils.getLocationDistance(
bmfCoordinate, coordinate1);
if (mi1 < mi) {
setState(() {
address = address1;
});
}
}
@ -199,6 +207,23 @@ class _Settlement extends State<Settlement> {
}
}
///
selectedAddress(String addId) async {
BaseData<List<Address>> baseDate =
await minService.queryAddress().catchError((error) {});
if (baseDate != null && baseDate.isSuccess) {
setState(() {
baseDate.data.forEach((element) {
if(element.id == addId)
address = element;
});
});
queryOrderInfo(address.id, selectedBtn, null, 0, null);
}
}
PlaceOrderFirst placeOrderFirst;
DownOrder downOrder;
@ -399,10 +424,24 @@ class _Settlement extends State<Settlement> {
child: Column(
children: [
DistributionMode(
queryOrderInfo,
(addressId,
isTake,
memberCouponId,
orderId,
promotionId){
setState(() {
this.selectedBtn = 0;
});
queryOrderInfo(addressId,
isTake,
memberCouponId,
orderId,
promotionId);
},
queryAddress,
storeInfo,
address,
selectedAddress
),
SizedBox(

51
lib/settlement/settlement_view/distribution.dart

@ -20,11 +20,12 @@ class DistributionMode extends StatefulWidget {
String promotionId,
) queryOrderInfo;
final Function(int selectedBtn) queryAddress;
final Function(String addId) selectedNewAddress;
final StoreInfo storeInfo;
final Address address;
DistributionMode(
this.queryOrderInfo, this.queryAddress, this.storeInfo, this.address);
DistributionMode(this.queryOrderInfo, this.queryAddress, this.storeInfo,
this.address, this.selectedNewAddress);
@override
State<StatefulWidget> createState() {
@ -86,7 +87,7 @@ class _DistributionMode extends State<DistributionMode> {
@override
Widget build(BuildContext context) {
return Container(
height: 143.h,
height: 150.h,
margin: EdgeInsets.only(
left: 16,
right: 16,
@ -126,10 +127,13 @@ class _DistributionMode extends State<DistributionMode> {
Expanded(
flex: 1,
child: GestureDetector(
behavior: HitTestBehavior.opaque,
onTap: () {
setState(() {
selectedBtn = 0;
widget.queryOrderInfo(
null, selectedBtn, null, 0, null);
});
},
child: Container(
height: 50.h,
@ -149,8 +153,10 @@ class _DistributionMode extends State<DistributionMode> {
flex: 1,
child: GestureDetector(
onTap: () {
setState(() {
selectedBtn = 1;
widget.queryAddress(selectedBtn);
});
},
child: Container(
height: 50.h,
@ -252,7 +258,7 @@ class _DistributionMode extends State<DistributionMode> {
Column(
children: [
RoundButton(
width: 41.w,
// width: 41.w,
height: 13,
text: distance.length > 3
? "${distance}km"
@ -280,10 +286,22 @@ class _DistributionMode extends State<DistributionMode> {
],
),
)
: Container(
: GestureDetector(
onTap: () {
setState(() {
Navigator.of(context).pushNamed(
'/router/manage_address_page',
arguments: {"isSelector": true}).then((value) {
widget.selectedNewAddress((value as Map)["id"]);
});
});
},
child: Container(
width: double.infinity,
padding: EdgeInsets.only(left: 16, right: 16, top: 15),
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
@ -295,7 +313,7 @@ class _DistributionMode extends State<DistributionMode> {
width: 24.w,
),
Text(
"张先生",
widget?.address?.username ?? "",
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontSize: 15.sp,
@ -308,7 +326,7 @@ class _DistributionMode extends State<DistributionMode> {
),
Expanded(
child: Text(
"12309090909",
widget?.address?.phone ?? "",
overflow: TextOverflow.ellipsis,
maxLines: 2,
style: TextStyle(
@ -321,21 +339,31 @@ class _DistributionMode extends State<DistributionMode> {
InkWell(
onTap: () {
setState(() {
Navigator.of(context).popAndPushNamed(
'/router/manage_address_page');
Navigator.of(context).pushNamed(
'/router/manage_address_page',
arguments: {
"isSelector": true
}).then((value) {
widget.selectedNewAddress(
(value as Map)["id"]);
});
});
},
child: Container(
padding:EdgeInsets.symmetric(horizontal:15.w,vertical: 5.h),
child: Icon(
Icons.keyboard_arrow_right,
size: 24,
),
),
)),
],
),
Padding(
padding: EdgeInsets.only(top: 4, left: 25),
child: Text(
"武昌区中国铁建凯德1818蓝调步行街中北路109附33门牌号05",
(widget?.address?.city ?? "") +
(widget?.address?.area ?? "") +
(widget?.address?.address ?? ""),
overflow: TextOverflow.ellipsis,
maxLines: 2,
style: TextStyle(
@ -348,6 +376,7 @@ class _DistributionMode extends State<DistributionMode> {
],
),
),
)
],
),
],

4
lib/settlement/settlement_view/settlement_order_commodity.dart

@ -94,8 +94,8 @@ class _SettlementOrderCommodity extends State<SettlementOrderCommodity> {
: S.of(context).yunfei,
"",
(widget.minOrderInfo != null)
? "+${widget.minOrderInfo?.postFee ?? "0"}"
: "+${widget.settleOrderInfo?.postAge ?? "0"}",
? "+ ${widget.minOrderInfo?.postFee ?? "0"}"
: "+ ${widget.settleOrderInfo?.postAge ?? "0"}",
),
);
}

2
lib/store/store_view/store_info.dart

@ -30,7 +30,7 @@ class _StoreInfoView extends State<StoreInfoView> {
top: 5.h,
bottom: 6.h,
),
height: 140.h,
height: 143.h,
padding: EdgeInsets.all(12.w),
decoration: BoxDecoration(
color: Colors.white,

10
pubspec.lock

@ -708,12 +708,10 @@ packages:
tpns_flutter_plugin:
dependency: "direct main"
description:
path: "."
ref: "V1.1.2"
resolved-ref: b814d62f4b82422459f786671f23dd535062d503
url: "git://github.com/TencentCloud/TPNS-Flutter-Plugin"
source: git
version: "1.1.2"
name: tpns_flutter_plugin
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.0"
transformer_page_view:
dependency: transitive
description:

8
pubspec.yaml

@ -19,10 +19,10 @@ dependencies:
keframe: ^2.0.2 #滑动组件卡顿优化
tpns_flutter_plugin:
git:
url: git://github.com/TencentCloud/TPNS-Flutter-Plugin
ref: V1.1.2
tpns_flutter_plugin: ^1.0.8
# git:
# url: git://github.com/TencentCloud/TPNS-Flutter-Plugin
# ref: V1.1.2
like_button: ^2.0.2
cupertino_icons: ^1.0.2

Loading…
Cancel
Save