我的页面新增门店二维码保存,店员管理功能;(门店二维码接口暂未无,该功能暂未开放) 首页商品跳转更改; 会员页面,指定tab跳转; 新增收银台页面; 收银台页面整体接口数据流程对接; 店员管理页面/会员余额统计页面接口数据流程对接; app权限通知图片bug更改;(文件名错误) 扫一扫页面新增收银台扫码支付流程及接口对接; 总览页面,指定tab跳转更改; vip充值页面选择充值套餐显示隐藏流程更改;wr_2023_new_business
Before Width: | Height: | Size: 922 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 648 B After Width: | Height: | Size: 592 B |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 896 B |
After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 780 B After Width: | Height: | Size: 776 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 758 B After Width: | Height: | Size: 670 B |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 800 B |
Before Width: | Height: | Size: 950 B |
Before Width: | Height: | Size: 926 B |
Before Width: | Height: | Size: 760 B After Width: | Height: | Size: 710 B |
After Width: | Height: | Size: 568 B |
After Width: | Height: | Size: 874 B |
After Width: | Height: | Size: 796 B |
After Width: | Height: | Size: 714 B |
After Width: | Height: | Size: 980 B |
After Width: | Height: | Size: 640 B |
After Width: | Height: | Size: 774 B |
After Width: | Height: | Size: 818 B |
@ -0,0 +1,51 @@
|
||||
/// storeTotalMoney : "117.00" |
||||
/// paySumCount : 2 |
||||
/// memberCount : 9385 |
||||
/// memberTotalBalance : "42236.77" |
||||
|
||||
class StoreTotalMoneyInfo { |
||||
StoreTotalMoneyInfo({ |
||||
String storeTotalMoney, |
||||
num paySumCount, |
||||
num memberCount, |
||||
String memberTotalBalance,}){ |
||||
_storeTotalMoney = storeTotalMoney; |
||||
_paySumCount = paySumCount; |
||||
_memberCount = memberCount; |
||||
_memberTotalBalance = memberTotalBalance; |
||||
} |
||||
|
||||
StoreTotalMoneyInfo.fromJson(dynamic json) { |
||||
_storeTotalMoney = json['storeTotalMoney']; |
||||
_paySumCount = json['paySumCount']; |
||||
_memberCount = json['memberCount']; |
||||
_memberTotalBalance = json['memberTotalBalance']; |
||||
} |
||||
String _storeTotalMoney; |
||||
num _paySumCount; |
||||
num _memberCount; |
||||
String _memberTotalBalance; |
||||
StoreTotalMoneyInfo copyWith({ String storeTotalMoney, |
||||
num paySumCount, |
||||
num memberCount, |
||||
String memberTotalBalance, |
||||
}) => StoreTotalMoneyInfo( storeTotalMoney: storeTotalMoney ?? _storeTotalMoney, |
||||
paySumCount: paySumCount ?? _paySumCount, |
||||
memberCount: memberCount ?? _memberCount, |
||||
memberTotalBalance: memberTotalBalance ?? _memberTotalBalance, |
||||
); |
||||
String get storeTotalMoney => _storeTotalMoney; |
||||
num get paySumCount => _paySumCount; |
||||
num get memberCount => _memberCount; |
||||
String get memberTotalBalance => _memberTotalBalance; |
||||
|
||||
Map<String, dynamic> toJson() { |
||||
final map = <String, dynamic>{}; |
||||
map['storeTotalMoney'] = _storeTotalMoney; |
||||
map['paySumCount'] = _paySumCount; |
||||
map['memberCount'] = _memberCount; |
||||
map['memberTotalBalance'] = _memberTotalBalance; |
||||
return map; |
||||
} |
||||
|
||||
} |