reason

init

Showing 334 changed files with 903 additions and 0 deletions
1 +# Miscellaneous
2 +*.class
3 +*.log
4 +*.pyc
5 +*.swp
6 +.DS_Store
7 +.atom/
8 +.buildlog/
9 +.history
10 +.svn/
11 +
12 +# IntelliJ related
13 +*.iml
14 +*.ipr
15 +*.iws
16 +.idea/
17 +
18 +# The .vscode folder contains launch configuration and tasks you configure in
19 +# VS Code which you may wish to be included in version control, so this line
20 +# is commented out by default.
21 +#.vscode/
22 +
23 +# Flutter/Dart/Pub related
24 +**/doc/api/
25 +**/ios/Flutter/.last_build_id
26 +.dart_tool/
27 +.flutter-plugins
28 +.flutter-plugins-dependencies
29 +.packages
30 +.pub-cache/
31 +.pub/
32 +/build/
33 +
34 +# Web related
35 +lib/generated_plugin_registrant.dart
36 +
37 +# Symbolication related
38 +app.*.symbols
39 +
40 +# Obfuscation related
41 +app.*.map.json
42 +
43 +# Android Studio will place build artifacts here
44 +/android/app/debug
45 +/android/app/profile
46 +/android/app/release
1 +# This file tracks properties of this Flutter project.
2 +# Used by Flutter tool to assess capabilities and perform upgrades etc.
3 +#
4 +# This file should be version controlled and should not be manually edited.
5 +
6 +version:
7 + revision: 4cc385b4b84ac2f816d939a49ea1f328c4e0b48e
8 + channel: stable
9 +
10 +project_type: app
1 +# one_poem
2 +
3 +一言
4 +
5 +## Getting Started
6 +
7 +This project is a starting point for a Flutter application.
8 +
9 +A few resources to get you started if this is your first Flutter project:
10 +
11 +- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
12 +- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
13 +
14 +For help getting started with Flutter, view our
15 +[online documentation](https://flutter.dev/docs), which offers tutorials,
16 +samples, guidance on mobile development, and a full API reference.
......
1 +# This file configures the analyzer, which statically analyzes Dart code to
2 +# check for errors, warnings, and lints.
3 +#
4 +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5 +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6 +# invoked from the command line by running `flutter analyze`.
7 +
8 +# The following line activates a set of recommended lints for Flutter apps,
9 +# packages, and plugins designed to encourage good coding practices.
10 +include: package:flutter_lints/flutter.yaml
11 +
12 +linter:
13 + # The lint rules applied to this project can be customized in the
14 + # section below to disable rules from the `package:flutter_lints/flutter.yaml`
15 + # included above or to enable additional rules. A list of all available lints
16 + # and their documentation is published at
17 + # https://dart-lang.github.io/linter/lints/index.html.
18 + #
19 + # Instead of disabling a lint rule for the entire project in the
20 + # section below, it can also be suppressed for a single line of code
21 + # or a specific dart file by using the `// ignore: name_of_lint` and
22 + # `// ignore_for_file: name_of_lint` syntax on the line or in the file
23 + # producing the lint.
24 + rules:
25 + # avoid_print: false # Uncomment to disable the `avoid_print` rule
26 + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
27 +
28 +# Additional information about this file can be found at
29 +# https://dart.dev/guides/language/analysis-options
1 +gradle-wrapper.jar
2 +/.gradle
3 +/captures/
4 +/gradlew
5 +/gradlew.bat
6 +/local.properties
7 +GeneratedPluginRegistrant.java
8 +
9 +# Remember to never publicly share your keystore.
10 +# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11 +key.properties
12 +**/*.keystore
13 +**/*.jks
1 +def localProperties = new Properties()
2 +def localPropertiesFile = rootProject.file('local.properties')
3 +if (localPropertiesFile.exists()) {
4 + localPropertiesFile.withReader('UTF-8') { reader ->
5 + localProperties.load(reader)
6 + }
7 +}
8 +
9 +def flutterRoot = localProperties.getProperty('flutter.sdk')
10 +if (flutterRoot == null) {
11 + throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
12 +}
13 +
14 +def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
15 +if (flutterVersionCode == null) {
16 + flutterVersionCode = '1'
17 +}
18 +
19 +def flutterVersionName = localProperties.getProperty('flutter.versionName')
20 +if (flutterVersionName == null) {
21 + flutterVersionName = '1.0'
22 +}
23 +
24 +apply plugin: 'com.android.application'
25 +apply plugin: 'kotlin-android'
26 +apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
27 +
28 +android {
29 + compileSdkVersion 30
30 +
31 + compileOptions {
32 + sourceCompatibility JavaVersion.VERSION_1_8
33 + targetCompatibility JavaVersion.VERSION_1_8
34 + }
35 +
36 + kotlinOptions {
37 + jvmTarget = '1.8'
38 + }
39 +
40 + sourceSets {
41 + main.java.srcDirs += 'src/main/kotlin'
42 + }
43 +
44 + defaultConfig {
45 + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
46 + applicationId "com.mofunsky.one_poem"
47 + minSdkVersion 20
48 + targetSdkVersion 30
49 + versionCode flutterVersionCode.toInteger()
50 + versionName flutterVersionName
51 + }
52 +
53 + buildTypes {
54 + release {
55 + // TODO: Add your own signing config for the release build.
56 + // Signing with the debug keys for now, so `flutter run --release` works.
57 + signingConfig signingConfigs.debug
58 + }
59 + }
60 +}
61 +
62 +flutter {
63 + source '../..'
64 +}
65 +
66 +dependencies {
67 + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
68 +}
1 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 + package="com.mofunsky.one_poem">
3 + <!-- Flutter needs it to communicate with the running application
4 + to allow setting breakpoints, to provide hot reload, etc.
5 + -->
6 + <uses-permission android:name="android.permission.INTERNET"/>
7 +</manifest>
1 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 + package="com.mofunsky.one_poem">
3 + <application
4 + android:label="one_poem"
5 + android:icon="@mipmap/ic_launcher">
6 + <activity
7 + android:name=".MainActivity"
8 + android:launchMode="singleTop"
9 + android:theme="@style/LaunchTheme"
10 + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
11 + android:hardwareAccelerated="true"
12 + android:windowSoftInputMode="adjustResize">
13 + <!-- Specifies an Android theme to apply to this Activity as soon as
14 + the Android process has started. This theme is visible to the user
15 + while the Flutter UI initializes. After that, this theme continues
16 + to determine the Window background behind the Flutter UI. -->
17 + <meta-data
18 + android:name="io.flutter.embedding.android.NormalTheme"
19 + android:resource="@style/NormalTheme"
20 + />
21 + <!-- Displays an Android View that continues showing the launch screen
22 + Drawable until Flutter paints its first frame, then this splash
23 + screen fades out. A splash screen is useful to avoid any visual
24 + gap between the end of Android's launch screen and the painting of
25 + Flutter's first frame. -->
26 + <meta-data
27 + android:name="io.flutter.embedding.android.SplashScreenDrawable"
28 + android:resource="@drawable/launch_background"
29 + />
30 + <intent-filter>
31 + <action android:name="android.intent.action.MAIN"/>
32 + <category android:name="android.intent.category.LAUNCHER"/>
33 + </intent-filter>
34 + </activity>
35 + <!-- Don't delete the meta-data below.
36 + This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
37 + <meta-data
38 + android:name="flutterEmbedding"
39 + android:value="2" />
40 + </application>
41 +</manifest>
1 +package com.mofunsky.one_poem
2 +
3 +import io.flutter.embedding.android.FlutterActivity
4 +
5 +class MainActivity: FlutterActivity() {
6 +}
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!-- Modify this file to customize your launch splash screen -->
3 +<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:drawable="?android:colorBackground" />
5 +
6 + <!-- You can insert your own image assets here -->
7 + <!-- <item>
8 + <bitmap
9 + android:gravity="center"
10 + android:src="@mipmap/launch_image" />
11 + </item> -->
12 +</layer-list>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!-- Modify this file to customize your launch splash screen -->
3 +<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
4 + <item android:drawable="@android:color/white" />
5 +
6 + <!-- You can insert your own image assets here -->
7 + <!-- <item>
8 + <bitmap
9 + android:gravity="center"
10 + android:src="@mipmap/launch_image" />
11 + </item> -->
12 +</layer-list>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 + <!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
4 + <style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
5 + <!-- Show a splash screen on the activity. Automatically removed when
6 + Flutter draws its first frame -->
7 + <item name="android:windowBackground">@drawable/launch_background</item>
8 + </style>
9 + <!-- Theme applied to the Android Window as soon as the process has started.
10 + This theme determines the color of the Android Window while your
11 + Flutter UI initializes, as well as behind your Flutter UI while its
12 + running.
13 +
14 + This Theme is only used starting with V2 of Flutter's Android embedding. -->
15 + <style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
16 + <item name="android:windowBackground">?android:colorBackground</item>
17 + </style>
18 +</resources>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<resources>
3 + <!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
4 + <style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
5 + <!-- Show a splash screen on the activity. Automatically removed when
6 + Flutter draws its first frame -->
7 + <item name="android:windowBackground">@drawable/launch_background</item>
8 + </style>
9 + <!-- Theme applied to the Android Window as soon as the process has started.
10 + This theme determines the color of the Android Window while your
11 + Flutter UI initializes, as well as behind your Flutter UI while its
12 + running.
13 +
14 + This Theme is only used starting with V2 of Flutter's Android embedding. -->
15 + <style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
16 + <item name="android:windowBackground">?android:colorBackground</item>
17 + </style>
18 +</resources>
1 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 + package="com.mofunsky.one_poem">
3 + <!-- Flutter needs it to communicate with the running application
4 + to allow setting breakpoints, to provide hot reload, etc.
5 + -->
6 + <uses-permission android:name="android.permission.INTERNET"/>
7 +</manifest>
1 +buildscript {
2 + ext.kotlin_version = '1.6.10'
3 + repositories {
4 + google()
5 + mavenCentral()
6 + }
7 +
8 + dependencies {
9 + classpath 'com.android.tools.build:gradle:7.0.2'
10 + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11 + }
12 +}
13 +
14 +allprojects {
15 + repositories {
16 + google()
17 + mavenCentral()
18 + }
19 +}
20 +
21 +rootProject.buildDir = '../build'
22 +subprojects {
23 + project.buildDir = "${rootProject.buildDir}/${project.name}"
24 + project.evaluationDependsOn(':app')
25 +}
26 +
27 +task clean(type: Delete) {
28 + delete rootProject.buildDir
29 +}
1 +org.gradle.jvmargs=-Xmx1536M
2 +android.useAndroidX=true
3 +android.enableJetifier=true
1 +#Fri Jun 23 08:50:38 CEST 2017
2 +distributionBase=GRADLE_USER_HOME
3 +distributionPath=wrapper/dists
4 +zipStoreBase=GRADLE_USER_HOME
5 +zipStorePath=wrapper/dists
6 +distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
...\ No newline at end of file ...\ No newline at end of file
1 +include ':app'
2 +
3 +def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
4 +def properties = new Properties()
5 +
6 +assert localPropertiesFile.exists()
7 +localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
8 +
9 +def flutterSdkPath = properties.getProperty("flutter.sdk")
10 +assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
11 +apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
1 +[
2 + {
3 + "id": 1,
4 + "bankName": "民生银行",
5 + "firstLetter": "M"
6 + },
7 + {
8 + "id": 2,
9 + "bankName": "工商银行",
10 + "firstLetter": "G"
11 + },
12 + {
13 + "id": 3,
14 + "bankName": "农业银行",
15 + "firstLetter": "N"
16 + },
17 + {
18 + "id": 4,
19 + "bankName": "中国银行",
20 + "firstLetter": "Z"
21 + },
22 + {
23 + "id": 5,
24 + "bankName": "建设银行",
25 + "firstLetter": "J"
26 + },
27 + {
28 + "id": 6,
29 + "bankName": "交通银行",
30 + "firstLetter": "J"
31 + },
32 + {
33 + "id": 7,
34 + "bankName": "中信银行",
35 + "firstLetter": "Z"
36 + },
37 + {
38 + "id": 8,
39 + "bankName": "招商银行",
40 + "firstLetter": "Z"
41 + },
42 + {
43 + "id": 9,
44 + "bankName": "兴业银行",
45 + "firstLetter": "X"
46 + },
47 + {
48 + "id": 10,
49 + "bankName": "浦发银行",
50 + "firstLetter": "P"
51 + },
52 + {
53 + "id": 16,
54 + "bankName": "光大银行",
55 + "firstLetter": "G"
56 + },
57 + {
58 + "id": 17,
59 + "bankName": "华夏银行",
60 + "firstLetter": "H"
61 + },
62 + {
63 + "id": 18,
64 + "bankName": "广发银行",
65 + "firstLetter": "G"
66 + },
67 + {
68 + "id": 19,
69 + "bankName": "平安银行",
70 + "firstLetter": "P"
71 + },
72 + {
73 + "id": 20,
74 + "bankName": "北京银行",
75 + "firstLetter": "B"
76 + },
77 + {
78 + "id": 43,
79 + "bankName": "上海银行",
80 + "firstLetter": "S"
81 + },
82 + {
83 + "id": 44,
84 + "bankName": "南京银行",
85 + "firstLetter": "N"
86 + },
87 + {
88 + "id": 48,
89 + "bankName": "杭州银行",
90 + "firstLetter": "H"
91 + },
92 + {
93 + "id": 49,
94 + "bankName": "宁波银行",
95 + "firstLetter": "N"
96 + },
97 + {
98 + "id": 54,
99 + "bankName": "浙江稠州商业银行",
100 + "firstLetter": "Z"
101 + },
102 + {
103 + "id": 83,
104 + "bankName": "汉口银行",
105 + "firstLetter": "H"
106 + },
107 + {
108 + "id": 84,
109 + "bankName": "长沙银行",
110 + "firstLetter": "C"
111 + },
112 + {
113 + "id": 116,
114 + "bankName": "浙商银行",
115 + "firstLetter": "Z"
116 + },
117 + {
118 + "id": 118,
119 + "bankName": "渤海银行",
120 + "firstLetter": "B"
121 + },
122 + {
123 + "id": 127,
124 + "bankName": "上海农商银行",
125 + "firstLetter": "S"
126 + },
127 + {
128 + "id": 128,
129 + "bankName": "北京农商行",
130 + "firstLetter": "B"
131 + },
132 + {
133 + "id": 143,
134 + "bankName": "中国邮储银行",
135 + "firstLetter": "Y"
136 + }
137 +]
...\ No newline at end of file ...\ No newline at end of file
1 +[
2 + {
3 + "id": 13035,
4 + "bankName": "西安市城南支行",
5 + "firstLetter": "X"
6 + },
7 + {
8 + "id": 13036,
9 + "bankName": "西安经济技术开发区支行",
10 + "firstLetter": "X"
11 + },
12 + {
13 + "id": 13037,
14 + "bankName": "西安市东新街支行",
15 + "firstLetter": "X"
16 + },
17 + {
18 + "id": 13038,
19 + "bankName": "西安南大街支行",
20 + "firstLetter": "X"
21 + },
22 + {
23 + "id": 13039,
24 + "bankName": "西安市解放路支行",
25 + "firstLetter": "X"
26 + },
27 + {
28 + "id": 13040,
29 + "bankName": "西安市太华路支行",
30 + "firstLetter": "X"
31 + },
32 + {
33 + "id": 13041,
34 + "bankName": "西安民乐园支行",
35 + "firstLetter": "X"
36 + },
37 + {
38 + "id": 13042,
39 + "bankName": "西安市东大街支行",
40 + "firstLetter": "X"
41 + },
42 + {
43 + "id": 13043,
44 + "bankName": "西安南院门支行",
45 + "firstLetter": "X"
46 + },
47 + {
48 + "id": 13044,
49 + "bankName": "西安东关支行",
50 + "firstLetter": "X"
51 + },
52 + {
53 + "id": 13045,
54 + "bankName": "西安和平路支行",
55 + "firstLetter": "X"
56 + },
57 + {
58 + "id": 13046,
59 + "bankName": "西安互助路支行",
60 + "firstLetter": "X"
61 + },
62 + {
63 + "id": 13047,
64 + "bankName": "西安市北大街支行",
65 + "firstLetter": "X"
66 + },
67 + {
68 + "id": 13048,
69 + "bankName": "西安西大街支行",
70 + "firstLetter": "X"
71 + },
72 + {
73 + "id": 13049,
74 + "bankName": "西安星火路支行",
75 + "firstLetter": "X"
76 + },
77 + {
78 + "id": 13050,
79 + "bankName": "西安市南关支行",
80 + "firstLetter": "X"
81 + },
82 + {
83 + "id": 13051,
84 + "bankName": "西安小寨支行",
85 + "firstLetter": "X"
86 + },
87 + {
88 + "id": 13052,
89 + "bankName": "西安雁塔路支行",
90 + "firstLetter": "X"
91 + },
92 + {
93 + "id": 13053,
94 + "bankName": "西安含光路支行",
95 + "firstLetter": "X"
96 + },
97 + {
98 + "id": 13054,
99 + "bankName": "西安铁路局支行",
100 + "firstLetter": "X"
101 + },
102 + {
103 + "id": 13055,
104 + "bankName": "西安电子工业区支行",
105 + "firstLetter": "X"
106 + },
107 + {
108 + "id": 13056,
109 + "bankName": "西安大雁塔支行",
110 + "firstLetter": "X"
111 + },
112 + {
113 + "id": 13057,
114 + "bankName": "西安市土门支行",
115 + "firstLetter": "X"
116 + },
117 + {
118 + "id": 13058,
119 + "bankName": "西安市纺织城支行",
120 + "firstLetter": "X"
121 + },
122 + {
123 + "id": 13059,
124 + "bankName": "西安市韩森寨支行",
125 + "firstLetter": "X"
126 + },
127 + {
128 + "id": 13060,
129 + "bankName": "西安咸宁路支行",
130 + "firstLetter": "X"
131 + },
132 + {
133 + "id": 13061,
134 + "bankName": "西安市韩森寨支行万寿路分理处",
135 + "firstLetter": "X"
136 + },
137 + {
138 + "id": 13062,
139 + "bankName": "西安市阎良区支行",
140 + "firstLetter": "X"
141 + },
142 + {
143 + "id": 13063,
144 + "bankName": "西安市周至县支行",
145 + "firstLetter": "X"
146 + },
147 + {
148 + "id": 13064,
149 + "bankName": "西安市户县支行",
150 + "firstLetter": "X"
151 + },
152 + {
153 + "id": 13065,
154 + "bankName": "西安市临潼区支行",
155 + "firstLetter": "X"
156 + },
157 + {
158 + "id": 13066,
159 + "bankName": "西安市高新技术开发区支行",
160 + "firstLetter": "X"
161 + },
162 + {
163 + "id": 13067,
164 + "bankName": "西安劳动南路支行",
165 + "firstLetter": "X"
166 + },
167 + {
168 + "id": 13068,
169 + "bankName": "西安市未央支行",
170 + "firstLetter": "X"
171 + },
172 + {
173 + "id": 13069,
174 + "bankName": "西安徐家湾支行",
175 + "firstLetter": "X"
176 + },
177 + {
178 + "id": 17731,
179 + "bankName": "西安莲湖路支行",
180 + "firstLetter": "X"
181 + },
182 + {
183 + "id": 17747,
184 + "bankName": "陕西省西安凤城八路分理处",
185 + "firstLetter": "S"
186 + },
187 + {
188 + "id": 17748,
189 + "bankName": "西安长乐中路支行",
190 + "firstLetter": "X"
191 + },
192 + {
193 + "id": 17749,
194 + "bankNumber": "102791013020",
195 + "bankName": "陕西省西安咸宁中路支行",
196 + "firstLetter": "S"
197 + },
198 + {
199 + "id": 17750,
200 + "bankName": "西安万寿南路分理处",
201 + "firstLetter": "X"
202 + },
203 + {
204 + "id": 17759,
205 + "bankName": "陕西省西安紫薇田园都市分理处",
206 + "firstLetter": "S"
207 + }
208 +]
...\ No newline at end of file ...\ No newline at end of file
This diff is collapsed. Click to expand it.
1 +[
2 + {
3 + "id": "1",
4 + "name": "超市便利"
5 + },
6 + {
7 + "id": "2",
8 + "name": "生鲜果蔬"
9 + },
10 + {
11 + "id": "3",
12 + "name": "零食小吃"
13 + },
14 + {
15 + "id": "4",
16 + "name": "美食餐饮"
17 + },
18 + {
19 + "id": "5",
20 + "name": "鲜花烘培"
21 + },
22 + {
23 + "id": "6",
24 + "name": "生活服务"
25 + },
26 + {
27 + "id": "7",
28 + "name": "其他"
29 + },
30 + {
31 + "id": "8",
32 + "name": "综合"
33 + },
34 + {
35 + "id": "10",
36 + "name": "美容个护"
37 + },
38 + {
39 + "id": "11",
40 + "name": "家居生活"
41 + },
42 + {
43 + "id": "12",
44 + "name": "服饰箱包"
45 + },
46 + {
47 + "id": "13",
48 + "name": "母婴玩具"
49 + },
50 + {
51 + "id": "15",
52 + "name": "海淘进口"
53 + },
54 + {
55 + "id": "755",
56 + "name": "快递代收"
57 + },
58 + {
59 + "id": "756",
60 + "name": "食品保健"
61 + },
62 + {
63 + "id": "764",
64 + "name": "家居生活"
65 + },
66 + {
67 + "id": "769",
68 + "name": "米面杂粮"
69 + },
70 + {
71 + "id": "786",
72 + "name": "水果生鲜"
73 + },
74 + {
75 + "id": "807",
76 + "name": "社区健身"
77 + },
78 + {
79 + "id": "811",
80 + "name": "艺术礼品"
81 + },
82 + {
83 + "id": "814",
84 + "name": "今日特卖"
85 + },
86 + {
87 + "id": "816",
88 + "name": "周边旅游"
89 + },
90 + {
91 + "id": "820",
92 + "name": "家装建材"
93 + },
94 + {
95 + "id": "823",
96 + "name": "虚拟商品"
97 + },
98 + {
99 + "id": "14057",
100 + "name": "生活用品"
101 + },
102 + {
103 + "id": "14181",
104 + "name": "手机数码"
105 + }
106 +]
...\ No newline at end of file ...\ No newline at end of file
1 +[
2 + {
3 + "id": "15677",
4 + "name": "厨房用具"
5 + },
6 + {
7 + "id": "15690",
8 + "name": "精美餐具"
9 + },
10 + {
11 + "id": "15698",
12 + "name": "家纺"
13 + },
14 + {
15 + "id": "15717",
16 + "name": "家具"
17 + },
18 + {
19 + "id": "15740",
20 + "name": "灯具"
21 + },
22 + {
23 + "id": "15755",
24 + "name": "生活日用"
25 + },
26 + {
27 + "id": "15765",
28 + "name": "宠物用品"
29 + },
30 + {
31 + "id": "15773",
32 + "name": "家装建材"
33 + },
34 + {
35 + "id": "15795",
36 + "name": "赠品"
37 + },
38 + {
39 + "id": "15797",
40 + "name": "家装软饰"
41 + },
42 + {
43 + "id": "15814",
44 + "name": "收纳用品"
45 + },
46 + {
47 + "id": "26541",
48 + "name": "演出票务"
49 + },
50 + {
51 + "id": "26551",
52 + "name": "健康体检"
53 + },
54 + {
55 + "id": "26554",
56 + "name": "教育培训"
57 + },
58 + {
59 + "id": "26561",
60 + "name": "汽车保养"
61 + },
62 + {
63 + "id": "26563",
64 + "name": "影视会员"
65 + },
66 + {
67 + "id": "26565",
68 + "name": "摄影、摄像"
69 + }
70 +]
...\ No newline at end of file ...\ No newline at end of file
1 +[
2 + {
3 + "id": "15691",
4 + "name": "酒具/杯具"
5 + },
6 + {
7 + "id": "15692",
8 + "name": "水具"
9 + },
10 + {
11 + "id": "15693",
12 + "name": "筷勺/刀叉"
13 + },
14 + {
15 + "id": "15694",
16 + "name": "碗碟"
17 + },
18 + {
19 + "id": "15695",
20 + "name": "组合套装"
21 + },
22 + {
23 + "id": "15696",
24 + "name": "美食工具"
25 + },
26 + {
27 + "id": "15697",
28 + "name": "茶具/咖啡具"
29 + }
30 +]
...\ No newline at end of file ...\ No newline at end of file
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.