From 4d2083e3382b0603566fe8f1eb516e2b70f67b12 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cyanghuaxuan=E2=80=9D?= <“646903573@qq.com”>
Date: Sat, 13 Mar 2021 15:01:22 +0800
Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E5=A4=8D=E6=90=9C=E7=B4=A2=E7=9A=84?=
=?UTF-8?q?=E4=B8=80=E4=BA=9Bbug=202.=E5=A2=9E=E5=8A=A0=E7=AC=AC=E4=B8=89?=
=?UTF-8?q?=E6=96=B9=E6=B4=BB=E5=8A=A8=E6=A8=A1=E5=9D=97?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
example/android/app/build.gradle | 58 +++++------
.../android/app/src/main/AndroidManifest.xml | 15 ++-
.../MainActivity.java | 5 +-
example/ios/Podfile.lock | 99 +++++++++++++++----
example/ios/Runner.xcodeproj/project.pbxproj | 3 -
example/lib/main.dart | 2 +
example/pubspec.yaml | 2 +
.../bloc/search_think_event.dart | 6 ++
lib/pages/webview/base_webview.dart | 21 ++--
lib/register.dart | 4 +
.../history_tag/search_history_tag.dart | 20 +++-
.../search/hot_tag/search_hot_tag_widget.dart | 37 ++++++-
.../search/input/model/SearchTabBarEvent.dart | 7 ++
.../search/input/search_input_widget.dart | 14 ++-
.../search/tabbar/search_tab_widget.dart | 2 +
.../search_input/search_result_input.dart | 63 +++++++-----
.../tarbar/model/search_btn_event.dart | 8 ++
.../tarbar/search_result_tab_widget.dart | 6 ++
lib/zhiying_base_widget.dart | 3 +-
pubspec.yaml | 3 +
20 files changed, 285 insertions(+), 93 deletions(-)
create mode 100644 lib/widgets/search/input/model/SearchTabBarEvent.dart
create mode 100644 lib/widgets/search_result/tarbar/model/search_btn_event.dart
diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle
index ae6cba5..c83bdff 100644
--- a/example/android/app/build.gradle
+++ b/example/android/app/build.gradle
@@ -53,8 +53,8 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
ndk {
//选择要添加的对应cpu类型的.so库。
- abiFilters 'armeabi', 'armeabi-v7a', 'x86', 'x86_64', 'mips', 'mips64', 'arm64-v8a'
- //abiFilters 'armeabi-v7a','x86_64'
+ //abiFilters 'armeabi', 'armeabi-v7a', 'x86', 'x86_64', 'mips', 'mips64', 'arm64-v8a'
+ abiFilters 'armeabi-v7a','x86_64'
}
}
@@ -109,33 +109,33 @@ android {
// 应用信息配置
-// productFlavors {
-// // 智夜生活
-// zhiying {
-// applicationId "cn.zhios.zhiying"
-// versionCode 50
-// dimension "app"
-// versionName '1.3.10'
-// // 签名信息
-// signingConfig signingConfigs.zhiying
-// }
-// }
-//
-// // 打包脚本
-// android.applicationVariants.all { variant ->
-// if (variant.buildType.name != "debug") {
-// variant.getPackageApplicationProvider().get().outputDirectory = new File(project.rootDir.absolutePath + "/app/build/outputs/apk")
-// }
-//
-// variant.outputs.all { output ->
-// def outputFile = output.outputFile
-// if (outputFile != null && outputFile.name.endsWith('.apk')) {
-// //这里修改apk文件名
-// def fileName = "${variant.productFlavors[0].name}_${releaseTime()}01_&V${variant.productFlavors[0].versionCode}.apk"
-// outputFileName = fileName
-// }
-// }
-// }
+ productFlavors {
+ // 智夜生活
+ zhiying {
+ applicationId "cn.zhios.zhiying"
+ versionCode 52
+ dimension "app"
+ versionName '1.3.12'
+ // 签名信息
+ signingConfig signingConfigs.zhiying
+ }
+ }
+
+ // 打包脚本
+ android.applicationVariants.all { variant ->
+ if (variant.buildType.name != "debug") {
+ variant.getPackageApplicationProvider().get().outputDirectory = new File(project.rootDir.absolutePath + "/app/build/outputs/apk")
+ }
+
+ variant.outputs.all { output ->
+ def outputFile = output.outputFile
+ if (outputFile != null && outputFile.name.endsWith('.apk')) {
+ //这里修改apk文件名
+ def fileName = "${variant.productFlavors[0].name}_${releaseTime()}01_&V${variant.productFlavors[0].versionCode}.apk"
+ outputFileName = fileName
+ }
+ }
+ }
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
diff --git a/example/android/app/src/main/AndroidManifest.xml b/example/android/app/src/main/AndroidManifest.xml
index fc4845f..4050def 100644
--- a/example/android/app/src/main/AndroidManifest.xml
+++ b/example/android/app/src/main/AndroidManifest.xml
@@ -26,6 +26,16 @@
+
+
+
+
+
+
+
+
+
+
@@ -36,7 +46,8 @@
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:usesCleartextTraffic="true"
- tools:replace="android:name, android:allowBackup">
+ android:authorities="${applicationId}.fileprovider"
+ tools:replace="android:name, android:allowBackup,android:authorities">
diff --git a/example/android/app/src/main/java/cn/zhios/zhiying_base_widget_example/MainActivity.java b/example/android/app/src/main/java/cn/zhios/zhiying_base_widget_example/MainActivity.java
index 33e1cda..28c06c6 100644
--- a/example/android/app/src/main/java/cn/zhios/zhiying_base_widget_example/MainActivity.java
+++ b/example/android/app/src/main/java/cn/zhios/zhiying_base_widget_example/MainActivity.java
@@ -154,8 +154,9 @@ public class MainActivity extends FlutterActivity implements ZhiyingFlutterCommN
@Override
public Map getSetting() {
Map map = new HashMap();
- map.put("domain", "http://inapi.izhyin.cn/"); //"http://120.76.175.204:8989");
- // map.put("domain", "http://api.zhios.cn/");//45678910,api.zhios.cn68703914
+ map.put("domain", "http://inapi.izhyin.cn/");//"http://120.76.175.204:8989");
+ // map.put("domain", "http://api.zhios.cn/");//45678910,api.zhios.cn84198689
+ //map.put("domain", "http://192.168.0.88:5000/");
map.put("master_id", "123456");
map.put("secret_key", "123456");
// map.put("token", "123465");
diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock
index 7cf61c7..185f6b5 100644
--- a/example/ios/Podfile.lock
+++ b/example/ios/Podfile.lock
@@ -4,8 +4,6 @@ PODS:
- AliAuthSDK (1.1.0.41-bc)
- AlibcTradeSDK (4.0.1.6)
- AliLinkPartnerSDK (4.0.0.24)
- - AlipaySDK_No_UTDID_SUN (15.2.0):
- - UTDID
- BCUserTrack (5.2.0.18-appkeys):
- UTDID
- connectivity (0.0.1):
@@ -32,10 +30,17 @@ PODS:
- Flutter
- flutter_plugin_android_lifecycle (0.0.1):
- Flutter
+ - flutter_user_agent (1.2.2):
+ - Flutter
+ - flutter_webview_plugin (0.0.1):
+ - Flutter
- flutter_xupdate (0.0.1):
- Flutter
- fluttertoast (0.0.2):
- Flutter
+ - fluwx (0.0.1):
+ - Flutter
+ - WechatOpenSDK (= 1.8.7.1)
- FMDB (2.7.5):
- FMDB/standard (= 2.7.5)
- FMDB/standard (2.7.5)
@@ -95,7 +100,7 @@ PODS:
- mob_sharesdk/ShareSDKPlatforms/WatermelonVideo (4.3.16):
- mob_sharesdk/ShareSDK
- MOBFoundation (>= 3.2.9)
- - mob_sharesdk/ShareSDKPlatforms/WeChat (4.3.16):
+ - mob_sharesdk/ShareSDKPlatforms/WeChat_Lite (4.3.16):
- mob_sharesdk/ShareSDK
- MOBFoundation (>= 3.2.9)
- mob_sharesdk/ShareSDKRestoreScene (4.3.16):
@@ -116,6 +121,8 @@ PODS:
- mobsms (0.0.1):
- Flutter
- mob_smssdk
+ - more_picture_share (0.0.1):
+ - Flutter
- mtopSDK (3.0.0.3-BC)
- package_info (0.0.1):
- Flutter
@@ -162,14 +169,13 @@ PODS:
- mob_sharesdk/ShareSDKPlatforms/SnapChat
- mob_sharesdk/ShareSDKPlatforms/Twitter
- mob_sharesdk/ShareSDKPlatforms/WatermelonVideo
- - mob_sharesdk/ShareSDKPlatforms/WeChat
+ - mob_sharesdk/ShareSDKPlatforms/WeChat_Lite
- mob_sharesdk/ShareSDKRestoreScene
- mob_sharesdk/ShareSDKUI
- sqflite (0.0.1):
- Flutter
- FMDB (~> 2.7.2)
- tobias (0.0.1):
- - AlipaySDK_No_UTDID_SUN (~> 15.2.0)
- Flutter
- TOCropViewController (2.5.5)
- url_launcher (0.0.1):
@@ -183,8 +189,13 @@ PODS:
- url_launcher_windows (0.0.1):
- Flutter
- UTDID (1.1.0.16)
+ - video_player (0.0.1):
+ - Flutter
+ - video_player_web (0.0.1):
+ - Flutter
- webview_flutter (0.0.1):
- Flutter
+ - WechatOpenSDK (1.8.7.1)
- WindVane (8.5.0.46-bc11):
- WindVane/Basic (= 8.5.0.46-bc11)
- WindVane/Core (= 8.5.0.46-bc11)
@@ -194,14 +205,20 @@ PODS:
- WindVane/WindVane (8.5.0.46-bc11)
- zhiying_base_widget (0.0.1):
- Flutter
- - mob_sharesdk
- - mob_sharesdk/ShareSDKExtension
- - mob_sharesdk/ShareSDKPlatforms/QQ
- - mob_sharesdk/ShareSDKPlatforms/SinaWeibo
- - mob_sharesdk/ShareSDKPlatforms/WeChat
- - mob_sharesdk/ShareSDKUI
+ - zhiying_business_college (0.0.1):
+ - Flutter
- zhiying_comm (0.0.1):
- Flutter
+ - zhiying_equity_card (0.0.1):
+ - Flutter
+ - zhiying_member_upgrade (0.0.1):
+ - Flutter
+ - zhiying_new_user_free (0.0.1):
+ - Flutter
+ - zhiying_official (0.0.1):
+ - Flutter
+ - zhiying_wechat_teacher (0.0.1):
+ - Flutter
DEPENDENCIES:
- ali_auth_wbq (from `.symlinks/plugins/ali_auth_wbq/ios`)
@@ -213,8 +230,11 @@ DEPENDENCIES:
- flutter_alibc (from `.symlinks/plugins/flutter_alibc/ios`)
- flutter_native_image (from `.symlinks/plugins/flutter_native_image/ios`)
- flutter_plugin_android_lifecycle (from `.symlinks/plugins/flutter_plugin_android_lifecycle/ios`)
+ - flutter_user_agent (from `.symlinks/plugins/flutter_user_agent/ios`)
+ - flutter_webview_plugin (from `.symlinks/plugins/flutter_webview_plugin/ios`)
- flutter_xupdate (from `.symlinks/plugins/flutter_xupdate/ios`)
- fluttertoast (from `.symlinks/plugins/fluttertoast/ios`)
+ - fluwx (from `.symlinks/plugins/fluwx/ios`)
- image_cropper (from `.symlinks/plugins/image_cropper/ios`)
- image_picker (from `.symlinks/plugins/image_picker/ios`)
- imei_plugin (from `.symlinks/plugins/imei_plugin/ios`)
@@ -222,6 +242,7 @@ DEPENDENCIES:
- moblink (from `.symlinks/plugins/moblink/ios`)
- mobpush_plugin (from `.symlinks/plugins/mobpush_plugin/ios`)
- mobsms (from `.symlinks/plugins/mobsms/ios`)
+ - more_picture_share (from `.symlinks/plugins/more_picture_share/ios`)
- package_info (from `.symlinks/plugins/package_info/ios`)
- path_provider (from `.symlinks/plugins/path_provider/ios`)
- path_provider_linux (from `.symlinks/plugins/path_provider_linux/ios`)
@@ -244,9 +265,17 @@ DEPENDENCIES:
- url_launcher_macos (from `.symlinks/plugins/url_launcher_macos/ios`)
- url_launcher_web (from `.symlinks/plugins/url_launcher_web/ios`)
- url_launcher_windows (from `.symlinks/plugins/url_launcher_windows/ios`)
+ - video_player (from `.symlinks/plugins/video_player/ios`)
+ - video_player_web (from `.symlinks/plugins/video_player_web/ios`)
- webview_flutter (from `.symlinks/plugins/webview_flutter/ios`)
- zhiying_base_widget (from `.symlinks/plugins/zhiying_base_widget/ios`)
+ - zhiying_business_college (from `.symlinks/plugins/zhiying_business_college/ios`)
- zhiying_comm (from `.symlinks/plugins/zhiying_comm/ios`)
+ - zhiying_equity_card (from `.symlinks/plugins/zhiying_equity_card/ios`)
+ - zhiying_member_upgrade (from `.symlinks/plugins/zhiying_member_upgrade/ios`)
+ - zhiying_new_user_free (from `.symlinks/plugins/zhiying_new_user_free/ios`)
+ - zhiying_official (from `.symlinks/plugins/zhiying_official/ios`)
+ - zhiying_wechat_teacher (from `.symlinks/plugins/zhiying_wechat_teacher/ios`)
SPEC REPOS:
http://repo.baichuan-ios.taobao.com/baichuanSDK/AliBCSpecs.git:
@@ -258,8 +287,7 @@ SPEC REPOS:
- securityGuard
- UTDID
- WindVane
- https://github.com/CocoaPods/Specs:
- - AlipaySDK_No_UTDID_SUN
+ https://github.com/CocoaPods/Specs.git:
- FMDB
- mob_linksdk_pro
- mob_pushsdk
@@ -269,6 +297,7 @@ SPEC REPOS:
- MOBFoundation
- Reachability
- TOCropViewController
+ - WechatOpenSDK
EXTERNAL SOURCES:
ali_auth_wbq:
@@ -289,10 +318,16 @@ EXTERNAL SOURCES:
:path: ".symlinks/plugins/flutter_native_image/ios"
flutter_plugin_android_lifecycle:
:path: ".symlinks/plugins/flutter_plugin_android_lifecycle/ios"
+ flutter_user_agent:
+ :path: ".symlinks/plugins/flutter_user_agent/ios"
+ flutter_webview_plugin:
+ :path: ".symlinks/plugins/flutter_webview_plugin/ios"
flutter_xupdate:
:path: ".symlinks/plugins/flutter_xupdate/ios"
fluttertoast:
:path: ".symlinks/plugins/fluttertoast/ios"
+ fluwx:
+ :path: ".symlinks/plugins/fluwx/ios"
image_cropper:
:path: ".symlinks/plugins/image_cropper/ios"
image_picker:
@@ -307,6 +342,8 @@ EXTERNAL SOURCES:
:path: ".symlinks/plugins/mobpush_plugin/ios"
mobsms:
:path: ".symlinks/plugins/mobsms/ios"
+ more_picture_share:
+ :path: ".symlinks/plugins/more_picture_share/ios"
package_info:
:path: ".symlinks/plugins/package_info/ios"
path_provider:
@@ -351,19 +388,34 @@ EXTERNAL SOURCES:
:path: ".symlinks/plugins/url_launcher_web/ios"
url_launcher_windows:
:path: ".symlinks/plugins/url_launcher_windows/ios"
+ video_player:
+ :path: ".symlinks/plugins/video_player/ios"
+ video_player_web:
+ :path: ".symlinks/plugins/video_player_web/ios"
webview_flutter:
:path: ".symlinks/plugins/webview_flutter/ios"
zhiying_base_widget:
:path: ".symlinks/plugins/zhiying_base_widget/ios"
+ zhiying_business_college:
+ :path: ".symlinks/plugins/zhiying_business_college/ios"
zhiying_comm:
:path: ".symlinks/plugins/zhiying_comm/ios"
+ zhiying_equity_card:
+ :path: ".symlinks/plugins/zhiying_equity_card/ios"
+ zhiying_member_upgrade:
+ :path: ".symlinks/plugins/zhiying_member_upgrade/ios"
+ zhiying_new_user_free:
+ :path: ".symlinks/plugins/zhiying_new_user_free/ios"
+ zhiying_official:
+ :path: ".symlinks/plugins/zhiying_official/ios"
+ zhiying_wechat_teacher:
+ :path: ".symlinks/plugins/zhiying_wechat_teacher/ios"
SPEC CHECKSUMS:
ali_auth_wbq: 83e881b20722051dccc9117062f674d736509468
AliAuthSDK: 7018e8f3c8be3382e60f69d3b517c7de34c351e0
AlibcTradeSDK: 9a3e7af6cd648dd1f85684e82694c213fe48dad2
AliLinkPartnerSDK: c5778cdfdcee7bfe342238d39a77766184d36a46
- AlipaySDK_No_UTDID_SUN: ac3f953a08c8ac8eaade23e338862208b885c344
BCUserTrack: 49251c6fb7c65cbbc221a492bbd3f3e142f1fb0f
connectivity: c4130b2985d4ef6fd26f9702e886bd5260681467
connectivity_for_web: 2b8584556930d4bd490d82b836bcf45067ce345b
@@ -373,8 +425,11 @@ SPEC CHECKSUMS:
flutter_alibc: 0e2a29e7c1de759672d87a260051240d209964b9
flutter_native_image: 9c0b7451838484458e5b0fae007b86a4c2d4bdfe
flutter_plugin_android_lifecycle: dc0b544e129eebb77a6bfb1239d4d1c673a60a35
+ flutter_user_agent: 27c45d034dc31b80948d29998cea52cd3a7bf936
+ flutter_webview_plugin: ed9e8a6a96baf0c867e90e1bce2673913eeac694
flutter_xupdate: bdb588f0fe4f6c5e45436b8b0de08d505a50c04e
fluttertoast: b644586ef3b16f67fae9a1f8754cef6b2d6b634b
+ fluwx: 07a55ed66bf3a4961e836a2a411b02dcada32902
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
image_cropper: 3c16d7651730ffe85897f5a1c4e2547e6b54989a
image_picker: 9c3312491f862b28d21ecd8fdf0ee14e601b3f09
@@ -389,6 +444,7 @@ SPEC CHECKSUMS:
moblink: 3480a191e86c33f4e84af0cb5d2cc5627e78bf65
mobpush_plugin: 7b5a56692c538bc06e0386916cf7b21f77c1eb09
mobsms: 141956ad151a39a69a47a2ddf2e186405346c4ef
+ more_picture_share: f5b68ae17896e80168b24a0bc894395a104af0c5
mtopSDK: d6fdf81730342a69be920b576541c7bb81a683d5
package_info: 873975fc26034f0b863a300ad47e7f1ac6c7ec62
path_provider: abfe2b5c733d04e238b0d8691db0cfd63a27a93c
@@ -406,9 +462,9 @@ SPEC CHECKSUMS:
shared_preferences_macos: f3f29b71ccbb56bf40c9dd6396c9acf15e214087
shared_preferences_web: 141cce0c3ed1a1c5bf2a0e44f52d31eeb66e5ea9
shared_preferences_windows: 36b76d6f54e76ead957e60b49e2f124b4cd3e6ae
- sharesdk_plugin: de8d8b87c50d60017472c5da425db1acd2911e0a
+ sharesdk_plugin: 455844465fc821a8ead9a9851ac928fa877cb379
sqflite: 4001a31ff81d210346b500c55b17f4d6c7589dd0
- tobias: 46e3fae88556c31a512721b97fc509a015174ebf
+ tobias: da6d872837de666e33393e7647aa6bc4ccb370b1
TOCropViewController: da59f531f8ac8a94ef6d6c0fc34009350f9e8bfe
url_launcher: 6fef411d543ceb26efce54b05a0a40bfd74cbbef
url_launcher_linux: ac237cb7a8058736e4aae38bdbcc748a4b394cc0
@@ -416,10 +472,19 @@ SPEC CHECKSUMS:
url_launcher_web: e5527357f037c87560776e36436bf2b0288b965c
url_launcher_windows: 683d7c283894db8d1914d3ab2223b20cc1ad95d5
UTDID: c28855683c5ea2e77e597cb14609328f7d470d6e
+ video_player: 9cc823b1d9da7e8427ee591e8438bfbcde500e6e
+ video_player_web: da8cadb8274ed4f8dbee8d7171b420dedd437ce7
webview_flutter: d2b4d6c66968ad042ad94cbb791f5b72b4678a96
+ WechatOpenSDK: 6a4d1436c15b3b5fe2a0bd383f3046010186da44
WindVane: 56e096abae757397ccd3accb66a959f3ffcbf949
- zhiying_base_widget: 064547d1dfe4a5832487f275cd4775d6da8f260c
+ zhiying_base_widget: 00868c0d2723a3a425c18b27204fbc67e3f7e59d
+ zhiying_business_college: dc3ba7fb32aad4db421aa94dbbc1ef712e7d00cd
zhiying_comm: 0daef4a480f4f4dbea3e11b615f3264aafea924b
+ zhiying_equity_card: 1afe5c3c8e5317dcebf55159b4087cd0d57e49ff
+ zhiying_member_upgrade: 1207671575ad01ed3336c604e235843a98fa1a0c
+ zhiying_new_user_free: 1640f83c12643475f03fabffcba13f498e555243
+ zhiying_official: 058e85b2792fbc6925b68f9c51f482a21e7400ee
+ zhiying_wechat_teacher: f93967511de28d14943cd69ba3f02fac0a5fcb00
PODFILE CHECKSUM: b66ec2c625af7ee344f37aae8918540c4b58b5ef
diff --git a/example/ios/Runner.xcodeproj/project.pbxproj b/example/ios/Runner.xcodeproj/project.pbxproj
index 2c309d7..71000f8 100644
--- a/example/ios/Runner.xcodeproj/project.pbxproj
+++ b/example/ios/Runner.xcodeproj/project.pbxproj
@@ -392,7 +392,6 @@
/* Begin XCBuildConfiguration section */
249021D3217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
@@ -476,7 +475,6 @@
};
97C147031CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
@@ -532,7 +530,6 @@
};
97C147041CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
diff --git a/example/lib/main.dart b/example/lib/main.dart
index 702ae8e..91567f9 100644
--- a/example/lib/main.dart
+++ b/example/lib/main.dart
@@ -21,6 +21,7 @@ import 'package:zhiying_wechat_teacher/register.dart';
import 'package:zhiying_moments/register.dart';
import 'package:zhiying_member_upgrade/register.dart';
import 'package:zhiying_equity_card/zhiying_equity_card.dart';
+import 'package:zhiying_official/register.dart';
void main() {
FlutterError.onError = (FlutterErrorDetails details) {
@@ -67,6 +68,7 @@ class _MyAppState extends State {
FriendCircleRegister.init();
MemberUpgradeRegister.init();
EquityCardRegister.init();
+ OfficialRegister.init();
print('初始化百川');
FlutterAlibc.initAlibc(version: "", appName: "").then((result) {
print("白川" + '${result.errorCode} ${result.errorMessage}');
diff --git a/example/pubspec.yaml b/example/pubspec.yaml
index f8887ea..5c3a35e 100644
--- a/example/pubspec.yaml
+++ b/example/pubspec.yaml
@@ -30,6 +30,8 @@ dev_dependencies:
path: ../../zhiying_business_college
zhiying_equity_card:
path: ../../zhiying_equity_card
+ zhiying_official:
+ path: ../../zhiying_official
#微信导师
zhiying_wechat_teacher:
#path: ../zhiying_wechat_teacher
diff --git a/lib/pages/search_think_page/bloc/search_think_event.dart b/lib/pages/search_think_page/bloc/search_think_event.dart
index f7930f1..b9529b4 100644
--- a/lib/pages/search_think_page/bloc/search_think_event.dart
+++ b/lib/pages/search_think_page/bloc/search_think_event.dart
@@ -26,6 +26,12 @@ class SearchThinkChangeTypeEvent extends SearchThinkEvent{
/// 显示原本视图
class SearchThinkShowBaseViewEvent extends SearchThinkEvent{
+
+ ///选中搜索的类型
+ final String type;
+
+ SearchThinkShowBaseViewEvent({this.type});
+
@override
List