├── .buckconfig ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── daidaihelper │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app ├── actions │ ├── DetailPageAction.js │ ├── HousingLoanAction.js │ ├── PurchaseCarAction.js │ ├── actionTypes.js │ └── homeAction.js ├── common │ ├── HeaderView.js │ ├── LoadMoreFooter.js │ ├── Loading.js │ ├── Storage.js │ ├── ToastUtil.js │ ├── common.js │ └── utils.js ├── containers │ ├── DetailPageContainer.js │ ├── HomeContainer.js │ ├── HousingLoanContainer.js │ ├── MoreSettingContainer.js │ ├── PurchaseCarNewsContainer.js │ ├── TabBarView.js │ └── app.js ├── pages │ ├── CollectInformationPage.js │ ├── DetailPage.js │ ├── Home.js │ ├── HomeDetial.js │ ├── HousingLoanPage.js │ ├── InformationPage.js │ ├── MoreSettingPage.js │ └── PurchaseCarPage.js ├── reducers │ ├── detailPageReducer.js │ ├── homeReducer.js │ ├── housingLoanReducer.js │ ├── purchaseCarReducer.js │ └── rootReudcer.js ├── root.js └── store │ └── store.js ├── changeJS ├── Badge.js ├── Layout.js ├── StaticContainer.js ├── Tab.js ├── TabBar.js ├── TabNavigator.js └── TabNavigatorItem.js ├── index.android.js ├── index.ios.js ├── ios ├── DaidaiHelper.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── DaidaiHelper.xcscheme ├── DaidaiHelper │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── DaidaiHelperTests │ ├── DaidaiHelperTests.m │ └── Info.plist ├── package.json └── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png └── 7.png /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/daidaihelper/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/app/src/main/java/com/daidaihelper/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/daidaihelper/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/app/src/main/java/com/daidaihelper/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'DaidaiHelper' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app/actions/DetailPageAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/actions/DetailPageAction.js -------------------------------------------------------------------------------- /app/actions/HousingLoanAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/actions/HousingLoanAction.js -------------------------------------------------------------------------------- /app/actions/PurchaseCarAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/actions/PurchaseCarAction.js -------------------------------------------------------------------------------- /app/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/actions/actionTypes.js -------------------------------------------------------------------------------- /app/actions/homeAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/actions/homeAction.js -------------------------------------------------------------------------------- /app/common/HeaderView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/common/HeaderView.js -------------------------------------------------------------------------------- /app/common/LoadMoreFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/common/LoadMoreFooter.js -------------------------------------------------------------------------------- /app/common/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/common/Loading.js -------------------------------------------------------------------------------- /app/common/Storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/common/Storage.js -------------------------------------------------------------------------------- /app/common/ToastUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/common/ToastUtil.js -------------------------------------------------------------------------------- /app/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/common/common.js -------------------------------------------------------------------------------- /app/common/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/common/utils.js -------------------------------------------------------------------------------- /app/containers/DetailPageContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/containers/DetailPageContainer.js -------------------------------------------------------------------------------- /app/containers/HomeContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/containers/HomeContainer.js -------------------------------------------------------------------------------- /app/containers/HousingLoanContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/containers/HousingLoanContainer.js -------------------------------------------------------------------------------- /app/containers/MoreSettingContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/containers/MoreSettingContainer.js -------------------------------------------------------------------------------- /app/containers/PurchaseCarNewsContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/containers/PurchaseCarNewsContainer.js -------------------------------------------------------------------------------- /app/containers/TabBarView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/containers/TabBarView.js -------------------------------------------------------------------------------- /app/containers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/containers/app.js -------------------------------------------------------------------------------- /app/pages/CollectInformationPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/pages/CollectInformationPage.js -------------------------------------------------------------------------------- /app/pages/DetailPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/pages/DetailPage.js -------------------------------------------------------------------------------- /app/pages/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/pages/Home.js -------------------------------------------------------------------------------- /app/pages/HomeDetial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/pages/HomeDetial.js -------------------------------------------------------------------------------- /app/pages/HousingLoanPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/pages/HousingLoanPage.js -------------------------------------------------------------------------------- /app/pages/InformationPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/pages/InformationPage.js -------------------------------------------------------------------------------- /app/pages/MoreSettingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/pages/MoreSettingPage.js -------------------------------------------------------------------------------- /app/pages/PurchaseCarPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/pages/PurchaseCarPage.js -------------------------------------------------------------------------------- /app/reducers/detailPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/reducers/detailPageReducer.js -------------------------------------------------------------------------------- /app/reducers/homeReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/reducers/homeReducer.js -------------------------------------------------------------------------------- /app/reducers/housingLoanReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/reducers/housingLoanReducer.js -------------------------------------------------------------------------------- /app/reducers/purchaseCarReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/reducers/purchaseCarReducer.js -------------------------------------------------------------------------------- /app/reducers/rootReudcer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/reducers/rootReudcer.js -------------------------------------------------------------------------------- /app/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/root.js -------------------------------------------------------------------------------- /app/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/app/store/store.js -------------------------------------------------------------------------------- /changeJS/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/changeJS/Badge.js -------------------------------------------------------------------------------- /changeJS/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/changeJS/Layout.js -------------------------------------------------------------------------------- /changeJS/StaticContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/changeJS/StaticContainer.js -------------------------------------------------------------------------------- /changeJS/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/changeJS/Tab.js -------------------------------------------------------------------------------- /changeJS/TabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/changeJS/TabBar.js -------------------------------------------------------------------------------- /changeJS/TabNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/changeJS/TabNavigator.js -------------------------------------------------------------------------------- /changeJS/TabNavigatorItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/changeJS/TabNavigatorItem.js -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/DaidaiHelper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/ios/DaidaiHelper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/DaidaiHelper.xcodeproj/xcshareddata/xcschemes/DaidaiHelper.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/ios/DaidaiHelper.xcodeproj/xcshareddata/xcschemes/DaidaiHelper.xcscheme -------------------------------------------------------------------------------- /ios/DaidaiHelper/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/ios/DaidaiHelper/AppDelegate.h -------------------------------------------------------------------------------- /ios/DaidaiHelper/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/ios/DaidaiHelper/AppDelegate.m -------------------------------------------------------------------------------- /ios/DaidaiHelper/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/ios/DaidaiHelper/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/DaidaiHelper/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/ios/DaidaiHelper/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/DaidaiHelper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/ios/DaidaiHelper/Info.plist -------------------------------------------------------------------------------- /ios/DaidaiHelper/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/ios/DaidaiHelper/main.m -------------------------------------------------------------------------------- /ios/DaidaiHelperTests/DaidaiHelperTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/ios/DaidaiHelperTests/DaidaiHelperTests.m -------------------------------------------------------------------------------- /ios/DaidaiHelperTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/ios/DaidaiHelperTests/Info.plist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongjun719/react-native-DaidaiHelperNew/HEAD/screenshots/7.png --------------------------------------------------------------------------------