Browse Source

1.修复智能搜索的检索异常的问题

tags/0.0.4+5
“yanghuaxuan” 3 years ago
parent
commit
c475ab285e
3 changed files with 39 additions and 58 deletions
  1. +1
    -1
      lib/dialog/global_dialog/intellect_search_goods_dialog/intellect_create.dart
  2. +1
    -1
      lib/pages/mine_detail_page/mine_detail_page.dart
  3. +37
    -56
      lib/widgets/share/share_alert.dart

+ 1
- 1
lib/dialog/global_dialog/intellect_search_goods_dialog/intellect_create.dart View File

@@ -130,7 +130,7 @@ class IntellectCreate {
} }


///长度大小限制 ///长度大小限制
if (setModel.isKeyLength == "1" && (int.tryParse(setModel.keyLengthMin) > content.length) || (int.tryParse(setModel.keyLengthMax) < content.length)) {
if (setModel.isKeyLength == "1" && ((int.tryParse(setModel.keyLengthMin) > content.length) || (int.tryParse(setModel.keyLengthMax) < content.length))) {
return; return;
} }




+ 1
- 1
lib/pages/mine_detail_page/mine_detail_page.dart View File

@@ -336,7 +336,7 @@ class _MineDetailContainerState extends State<_MineDetailContainer> {
backgroundColor: Colors.transparent); backgroundColor: Colors.transparent);
if (index != null) { if (index != null) {
print(index); print(index);
_bloc.updateUser(gender: index == 0 ? '1' : '2');
_bloc.updateUser(gender: index == 0 ? '0' : '1');
} }
} }




+ 37
- 56
lib/widgets/share/share_alert.dart View File

@@ -22,9 +22,7 @@ class ShareAlert extends StatefulWidget {
final bool isContentShow; final bool isContentShow;
final ShareDataModel model; final ShareDataModel model;


const ShareAlert(this.model, this.skipIdentifier,
{Key key, this.isContentShow = false})
: super(key: key); // 中间视图
const ShareAlert(this.model, this.skipIdentifier, {Key key, this.isContentShow = false}) : super(key: key); // 中间视图


@override @override
_ShareAlertState createState() => _ShareAlertState(); _ShareAlertState createState() => _ShareAlertState();
@@ -35,8 +33,7 @@ class _ShareAlertState extends State<ShareAlert> {


@override @override
void initState() { void initState() {
NetUtil.request('/api/v1/mod/${widget.skipIdentifier}',
method: NetMethod.GET, onCache: (data) {
NetUtil.request('/api/v1/mod/${widget.skipIdentifier}', method: NetMethod.GET, onCache: (data) {
_parseData(data); _parseData(data);
}, onSuccess: (data) { }, onSuccess: (data) {
_parseData(data); _parseData(data);
@@ -50,8 +47,7 @@ class _ShareAlertState extends State<ShareAlert> {
Map d = modList.first; Map d = modList.first;
if (d != null) { if (d != null) {
String dString = d['data']; String dString = d['data'];
_iconModel = ShareAlertModel.fromJson(
Map<String, dynamic>.from(jsonDecode(dString)));
_iconModel = ShareAlertModel.fromJson(Map<String, dynamic>.from(jsonDecode(dString)));


setState(() {}); setState(() {});
} }
@@ -59,30 +55,33 @@ class _ShareAlertState extends State<ShareAlert> {


@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return GestureDetector(
child: Scaffold(
backgroundColor: Colors.transparent,
body: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 5, sigmaY: 5), //背景
child: Container(
child: Column(
children: <Widget>[
Expanded(
child: Center(
child: widget.isContentShow
? ShareAlertContent(_iconModel)
: Container()),
),
_ShareAlertContent(
widget.model, widget.skipIdentifier, _iconModel),
],
),
), // 模糊化
return WillPopScope(
onWillPop: () async {
Loading.dismiss();
Navigator.canPop(context);
return true;
},
child: GestureDetector(
child: Scaffold(
backgroundColor: Colors.transparent,
body: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 5, sigmaY: 5), //背景
child: Container(
child: Column(
children: <Widget>[
Expanded(
child: Center(child: widget.isContentShow ? ShareAlertContent(_iconModel) : Container()),
),
_ShareAlertContent(widget.model, widget.skipIdentifier, _iconModel),
],
),
), // 模糊化
),
), ),
onTap: () {
Navigator.of(context).pop();
},
), ),
onTap: () {
Navigator.of(context).pop();
},
); );
} }
} }
@@ -92,9 +91,7 @@ class _ShareAlertContent extends StatefulWidget {
final String skipIdentifier; final String skipIdentifier;
final ShareAlertModel iconModel; final ShareAlertModel iconModel;


const _ShareAlertContent(this.model, this.skipIdentifier, this.iconModel,
{Key key})
: super(key: key);
const _ShareAlertContent(this.model, this.skipIdentifier, this.iconModel, {Key key}) : super(key: key);


@override @override
_ShareAlertContentState createState() => _ShareAlertContentState(); _ShareAlertContentState createState() => _ShareAlertContentState();
@@ -122,36 +119,25 @@ class _ShareAlertContentState extends State<_ShareAlertContent> {
margin: EdgeInsets.only(top: 8, bottom: 8), margin: EdgeInsets.only(top: 8, bottom: 8),
width: 62, width: 62,
height: 4, height: 4,
decoration: BoxDecoration(
color: Color(0xffd8d8d8),
borderRadius: BorderRadius.circular(2)),
decoration: BoxDecoration(color: Color(0xffd8d8d8), borderRadius: BorderRadius.circular(2)),
), ),
Text( Text(
'分享至', '分享至',
style: TextStyle(
fontSize: 15,
color: Color(0xff333333),
fontWeight: FontWeight.bold),
style: TextStyle(fontSize: 15, color: Color(0xff333333), fontWeight: FontWeight.bold),
), ),
Container( Container(
margin:
EdgeInsets.only(left: 12, right: 12, top: 10, bottom: 10),
margin: EdgeInsets.only(left: 12, right: 12, top: 10, bottom: 10),
child: _createIcons(), child: _createIcons(),
), ),
GestureDetector( GestureDetector(
child: Container( child: Container(
margin: EdgeInsets.only(left: 12, right: 12, bottom: 10), margin: EdgeInsets.only(left: 12, right: 12, bottom: 10),
padding: EdgeInsets.all(12), padding: EdgeInsets.all(12),
decoration: BoxDecoration(
color: Color(0xfff3f3f3),
borderRadius: BorderRadius.circular(8)),
decoration: BoxDecoration(color: Color(0xfff3f3f3), borderRadius: BorderRadius.circular(8)),
child: Center( child: Center(
child: Text( child: Text(
'取消', '取消',
style: TextStyle(
fontSize: 12,
fontWeight: FontWeight.bold,
color: Color(0xff999999)),
style: TextStyle(fontSize: 12, fontWeight: FontWeight.bold, color: Color(0xff999999)),
), ),
), ),
), ),
@@ -195,10 +181,7 @@ class _ShareAlertContentState extends State<_ShareAlertContent> {
padding: const EdgeInsets.only(top: 2, bottom: 2), padding: const EdgeInsets.only(top: 2, bottom: 2),
child: Text( child: Text(
item.name, item.name,
style: TextStyle(
fontSize: 12,
color: Color(0xff333333),
fontWeight: FontWeight.bold),
style: TextStyle(fontSize: 12, color: Color(0xff333333), fontWeight: FontWeight.bold),
), ),
), ),
], ],
@@ -279,8 +262,7 @@ class _ShareAlertContentState extends State<_ShareAlertContent> {
SSDKContentTypes.auto, SSDKContentTypes.auto,
); );
} }
SharesdkPlugin.share(plateform, params, (SSDKResponseState state,
Map userdata, Map contentEntity, SSDKError error) {
SharesdkPlugin.share(plateform, params, (SSDKResponseState state, Map userdata, Map contentEntity, SSDKError error) {
if (state == SSDKResponseState.Fail) { if (state == SSDKResponseState.Fail) {
Fluttertoast.showToast(msg: '分享失败'); Fluttertoast.showToast(msg: '分享失败');
} else if (state == SSDKResponseState.Success) { } else if (state == SSDKResponseState.Success) {
@@ -355,8 +337,7 @@ class _ShareAlertContentState extends State<_ShareAlertContent> {
} }


Loading.show(context); Loading.show(context);
List<String> downPaths =
await ImageDownloadUtil.download(widget.model.image);
List<String> downPaths = await ImageDownloadUtil.download(widget.model.image);
paths.addAll(downPaths); paths.addAll(downPaths);
ShareExtend.shareMultiple(paths, "image", subject: ""); ShareExtend.shareMultiple(paths, "image", subject: "");
Loading.dismiss(); Loading.dismiss();


Loading…
Cancel
Save