hwq 2 years ago
parent
commit
b882f5c80d
100 changed files with 23310 additions and 0 deletions
  1. 4 0
      .browserslistrc
  2. 12 0
      .editorconfig
  3. 5 0
      .eslintignore
  4. 26 0
      .eslintrc.js
  5. 10 0
      .gitattributes
  6. 39 0
      .github/workflows/main.yml
  7. 18 0
      .gitignore
  8. 3 0
      .stylelintrc.js
  9. 15 0
      .vscode/launch.json
  10. 56 0
      .vscode/settings.json
  11. 373 0
      LICENSE
  12. 24 0
      README.md
  13. 17 0
      babel.config.js
  14. 13 0
      debug.log
  15. 11 0
      deploy.sh
  16. 3 0
      dockerfile
  17. 12 0
      jsconfig.json
  18. 91 0
      mock/controller/departmentManagement.js
  19. 34 0
      mock/controller/goods.js
  20. 51 0
      mock/controller/menuManagement.js
  21. 53 0
      mock/controller/roleManagement.js
  22. 66 0
      mock/controller/table.js
  23. 118 0
      mock/controller/user.js
  24. 69 0
      mock/controller/userManagement.js
  25. 16 0
      mock/index.js
  26. 94 0
      mock/mockServer.js
  27. 43 0
      mock/utils/index.js
  28. 28 0
      nginx.conf
  29. 121 0
      package.json
  30. 13 0
      plopfile.js
  31. 16 0
      prettier.config.js
  32. BIN
      public/favicon.ico
  33. 52 0
      public/index.html
  34. 96 0
      public/static/css/loading.css
  35. 11 0
      src/App.vue
  36. 121 0
      src/access/check.js
  37. 961 0
      src/access/node.js
  38. 51 0
      src/api/Cart.js
  39. 184 0
      src/api/Cashier.js
  40. 17 0
      src/api/Charts.js
  41. 298 0
      src/api/Commission.js
  42. 474 0
      src/api/Customer.js
  43. 73 0
      src/api/Delivery.js
  44. 165 0
      src/api/Department.js
  45. 680 0
      src/api/Finance.js
  46. 118 0
      src/api/Integral.js
  47. 253 0
      src/api/Market.js
  48. 68 0
      src/api/Material.js
  49. 197 0
      src/api/Merchants.js
  50. 404 0
      src/api/Order.js
  51. 176 0
      src/api/Price.js
  52. 279 0
      src/api/Purchase.js
  53. 51 0
      src/api/Reward.js
  54. 197 0
      src/api/Shop.js
  55. 689 0
      src/api/Stock.js
  56. 42 0
      src/api/Supplier.js
  57. 793 0
      src/api/System.js
  58. 187 0
      src/api/common.js
  59. 659 0
      src/api/goods.js
  60. 178 0
      src/api/user.js
  61. 14382 0
      src/assets/area.json
  62. BIN
      src/assets/error_images/401.png
  63. BIN
      src/assets/error_images/404.png
  64. BIN
      src/assets/error_images/cloud.png
  65. BIN
      src/assets/img/10.jpg
  66. BIN
      src/assets/img/11.jpg
  67. BIN
      src/assets/img/20.jpg
  68. BIN
      src/assets/img/30.jpg
  69. BIN
      src/assets/img/40.jpg
  70. BIN
      src/assets/img/cube_four.png
  71. BIN
      src/assets/img/cube_one.png
  72. BIN
      src/assets/img/cube_three.png
  73. BIN
      src/assets/img/cube_two.png
  74. BIN
      src/assets/img/enterprise_bg.png
  75. BIN
      src/assets/img/goods.jpeg
  76. BIN
      src/assets/img/ic-time.png
  77. BIN
      src/assets/img/ic-yxtime.png
  78. BIN
      src/assets/img/icon-success.png
  79. BIN
      src/assets/img/login-bg.jpg
  80. BIN
      src/assets/img/login-pic.png
  81. BIN
      src/assets/img/logo-21249f@2x.png
  82. BIN
      src/assets/img/logo-white.png
  83. BIN
      src/assets/img/marshalling5.png
  84. BIN
      src/assets/img/no_enterprise.png
  85. BIN
      src/assets/img/pageComponents/adv-size-01.jpg
  86. BIN
      src/assets/img/pageComponents/adv-size-02.jpg
  87. BIN
      src/assets/img/pageComponents/adv-size-03.jpg
  88. BIN
      src/assets/img/pageComponents/adv-style-01.png
  89. BIN
      src/assets/img/pageComponents/adv-style-02.png
  90. BIN
      src/assets/img/pageComponents/adv-style-03.png
  91. BIN
      src/assets/img/pageComponents/banner.png
  92. BIN
      src/assets/img/pageComponents/blank.png
  93. BIN
      src/assets/img/pageComponents/coupon.png
  94. BIN
      src/assets/img/pageComponents/coupon_bck.png
  95. BIN
      src/assets/img/pageComponents/coupon_item.png
  96. BIN
      src/assets/img/pageComponents/cube.png
  97. BIN
      src/assets/img/pageComponents/float.png
  98. BIN
      src/assets/img/pageComponents/goods.png
  99. BIN
      src/assets/img/pageComponents/guess.png
  100. BIN
      src/assets/img/pageComponents/line.png

+ 4 - 0
.browserslistrc

@@ -0,0 +1,4 @@
+> 1%
+last 2 versions
+not dead
+

+ 12 - 0
.editorconfig

@@ -0,0 +1,12 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 2
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.md]
+trim_trailing_whitespace = false

+ 5 - 0
.eslintignore

@@ -0,0 +1,5 @@
+src/assets
+src/icons
+public
+dist
+node_modules

+ 26 - 0
.eslintrc.js

@@ -0,0 +1,26 @@
+module.exports = {
+  root: true,
+  env: {
+    node: true,
+  },
+  extends: ["plugin:vue/recommended", "@vue/prettier"],
+  rules: {
+    "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
+    "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
+    "vue/no-v-html": "off",
+  },
+  parserOptions: {
+    parser: "babel-eslint",
+  },
+  overrides: [
+    {
+      files: [
+        "**/__tests__/*.{j,t}s?(x)",
+        "**/tests/unit/**/*.spec.{j,t}s?(x)",
+      ],
+      env: {
+        jest: true,
+      },
+    },
+  ],
+};

+ 10 - 0
.gitattributes

@@ -0,0 +1,10 @@
+*.html text eol=lf
+*.css text eol=lf
+*.js text eol=lf
+*.scss text eol=lf
+*.vue text eol=lf
+*.hbs text eol=lf
+*.sh text eol=lf
+*.md text eol=lf
+*.json text eol=lf
+*.yml text eol=lf

+ 39 - 0
.github/workflows/main.yml

@@ -0,0 +1,39 @@
+name: CI
+
+on:
+  push:
+    branches: [ master ]
+
+jobs:
+  Build:
+    name: Build
+    runs-on: ubuntu-latest
+    steps:
+      - name: Checkout Source
+        uses: actions/checkout@v2
+        with:
+          fetch-depth: 1
+      - name: Setup Node.js environment
+        uses: actions/setup-node@v1
+        with:
+          node-version: "12"
+      - name: Save & Restore Npm Package Cache
+        uses: actions/cache@v2
+        with:
+          path: ~/.npm
+          key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
+          restore-keys: |
+            ${{ runner.os }}-node-
+      - name: Install Dependencies
+        run: npm install
+      - name: Build
+        run: npm run build
+      - name: Deploy
+        run: |
+          cd dist
+          git init
+          git config user.name "${{ secrets.GIT_USER_NAME }}"
+          git config user.email "${{ secrets.GIT_USER_EMAIL }}"
+          git add .
+          git commit -m "deploy"
+          git push -f -q "https://${{ secrets.ACCESS_TOKEN }}@github.com/vue-admin-beautiful/vue-admin-beautiful-pro.git" master:gh-pages

+ 18 - 0
.gitignore

@@ -0,0 +1,18 @@
+.DS_Store
+node_modules
+dist
+.env.local
+.env.*.local
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+.idea
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
+public/video
+*.zip
+*.7z
+package-lock.json

+ 3 - 0
.stylelintrc.js

@@ -0,0 +1,3 @@
+module.exports = {
+  extends: ["stylelint-config-recess-order", "stylelint-config-prettier"],
+};

+ 15 - 0
.vscode/launch.json

@@ -0,0 +1,15 @@
+{
+  // 使用 IntelliSense 了解相关属性。 
+  // 悬停以查看现有属性的描述。
+  // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
+  "version": "0.2.0",
+  "configurations": [
+    {
+      "type": "pwa-msedge",
+      "request": "launch",
+      "name": "Launch Chrome against localhost",
+      "url": "http://localhost:8080",
+      "webRoot": "${workspaceFolder}"
+    }
+  ]
+}

+ 56 - 0
.vscode/settings.json

@@ -0,0 +1,56 @@
+{
+  "[vue]": {
+    "editor.defaultFormatter": "esbenp.prettier-vscode"
+  },
+  "editor.quickSuggestions": {
+    "strings": true
+  },
+  "workbench.colorTheme": "Default Dark+",
+  "editor.tabSize": 2,
+  "editor.detectIndentation": false,
+  "emmet.triggerExpansionOnTab": true,
+  "editor.formatOnSave": true,
+  "javascript.format.enable": true,
+  "git.enableSmartCommit": true,
+  "git.autofetch": true,
+  "git.confirmSync": false,
+  "[json]": {
+    "editor.defaultFormatter": "esbenp.prettier-vscode"
+  },
+  "liveServer.settings.donotShowInfoMsg": true,
+  "explorer.confirmDelete": false,
+  "javascript.updateImportsOnFileMove.enabled": "always",
+  "typescript.updateImportsOnFileMove.enabled": "always",
+  "files.exclude": {
+    "**/.idea": true
+  },
+  "editor.codeActionsOnSave": {
+    "source.fixAll.stylelint": true,
+    "source.fixAll.eslint": true
+  },
+  "[javascript]": {
+    "editor.defaultFormatter": "esbenp.prettier-vscode"
+  },
+  "[scss]": {
+    "editor.defaultFormatter": "HookyQR.beautify"
+  },
+  "[jsonc]": {
+    "editor.defaultFormatter": "esbenp.prettier-vscode"
+  },
+  "[html]": {
+    "editor.defaultFormatter": "esbenp.prettier-vscode"
+  },
+  "editor.suggest.snippetsPreventQuickSuggestions": false,
+  "prettier.htmlWhitespaceSensitivity": "ignore",
+  "prettier.vueIndentScriptAndStyle": true,
+  "docthis.authorName": "chuzhixin 1204505056@qq.com",
+  "docthis.includeAuthorTag": true,
+  "docthis.includeDescriptionTag": true,
+  "docthis.enableHungarianNotationEvaluation": true,
+  "docthis.inferTypesFromNames": true,
+  "vetur.format.defaultFormatter.html": "prettier",
+  "files.autoSave": "off",
+  "path-intellisense.mappings": {
+    "@": "${workspaceRoot}/src"
+  }
+}

+ 373 - 0
LICENSE

@@ -0,0 +1,373 @@
+Mozilla Public License Version 2.0
+==================================
+
+1. Definitions
+--------------
+
+1.1. "Contributor"
+    means each individual or legal entity that creates, contributes to
+    the creation of, or owns Covered Software.
+
+1.2. "Contributor Version"
+    means the combination of the Contributions of others (if any) used
+    by a Contributor and that particular Contributor's Contribution.
+
+1.3. "Contribution"
+    means Covered Software of a particular Contributor.
+
+1.4. "Covered Software"
+    means Source Code Form to which the initial Contributor has attached
+    the notice in Exhibit A, the Executable Form of such Source Code
+    Form, and Modifications of such Source Code Form, in each case
+    including portions thereof.
+
+1.5. "Incompatible With Secondary Licenses"
+    means
+
+    (a) that the initial Contributor has attached the notice described
+        in Exhibit B to the Covered Software; or
+
+    (b) that the Covered Software was made available under the terms of
+        version 1.1 or earlier of the License, but not also under the
+        terms of a Secondary License.
+
+1.6. "Executable Form"
+    means any form of the work other than Source Code Form.
+
+1.7. "Larger Work"
+    means a work that combines Covered Software with other material, in
+    a separate file or files, that is not Covered Software.
+
+1.8. "License"
+    means this document.
+
+1.9. "Licensable"
+    means having the right to grant, to the maximum extent possible,
+    whether at the time of the initial grant or subsequently, any and
+    all of the rights conveyed by this License.
+
+1.10. "Modifications"
+    means any of the following:
+
+    (a) any file in Source Code Form that results from an addition to,
+        deletion from, or modification of the contents of Covered
+        Software; or
+
+    (b) any new file in Source Code Form that contains any Covered
+        Software.
+
+1.11. "Patent Claims" of a Contributor
+    means any patent claim(s), including without limitation, method,
+    process, and apparatus claims, in any patent Licensable by such
+    Contributor that would be infringed, but for the grant of the
+    License, by the making, using, selling, offering for sale, having
+    made, import, or transfer of either its Contributions or its
+    Contributor Version.
+
+1.12. "Secondary License"
+    means either the GNU General Public License, Version 2.0, the GNU
+    Lesser General Public License, Version 2.1, the GNU Affero General
+    Public License, Version 3.0, or any later versions of those
+    licenses.
+
+1.13. "Source Code Form"
+    means the form of the work preferred for making modifications.
+
+1.14. "You" (or "Your")
+    means an individual or a legal entity exercising rights under this
+    License. For legal entities, "You" includes any entity that
+    controls, is controlled by, or is under common control with You. For
+    purposes of this definition, "control" means (a) the power, direct
+    or indirect, to cause the direction or management of such entity,
+    whether by contract or otherwise, or (b) ownership of more than
+    fifty percent (50%) of the outstanding shares or beneficial
+    ownership of such entity.
+
+2. License Grants and Conditions
+--------------------------------
+
+2.1. Grants
+
+Each Contributor hereby grants You a world-wide, royalty-free,
+non-exclusive license:
+
+(a) under intellectual property rights (other than patent or trademark)
+    Licensable by such Contributor to use, reproduce, make available,
+    modify, display, perform, distribute, and otherwise exploit its
+    Contributions, either on an unmodified basis, with Modifications, or
+    as part of a Larger Work; and
+
+(b) under Patent Claims of such Contributor to make, use, sell, offer
+    for sale, have made, import, and otherwise transfer either its
+    Contributions or its Contributor Version.
+
+2.2. Effective Date
+
+The licenses granted in Section 2.1 with respect to any Contribution
+become effective for each Contribution on the date the Contributor first
+distributes such Contribution.
+
+2.3. Limitations on Grant Scope
+
+The licenses granted in this Section 2 are the only rights granted under
+this License. No additional rights or licenses will be implied from the
+distribution or licensing of Covered Software under this License.
+Notwithstanding Section 2.1(b) above, no patent license is granted by a
+Contributor:
+
+(a) for any code that a Contributor has removed from Covered Software;
+    or
+
+(b) for infringements caused by: (i) Your and any other third party's
+    modifications of Covered Software, or (ii) the combination of its
+    Contributions with other software (except as part of its Contributor
+    Version); or
+
+(c) under Patent Claims infringed by Covered Software in the absence of
+    its Contributions.
+
+This License does not grant any rights in the trademarks, service marks,
+or logos of any Contributor (except as may be necessary to comply with
+the notice requirements in Section 3.4).
+
+2.4. Subsequent Licenses
+
+No Contributor makes additional grants as a result of Your choice to
+distribute the Covered Software under a subsequent version of this
+License (see Section 10.2) or under the terms of a Secondary License (if
+permitted under the terms of Section 3.3).
+
+2.5. Representation
+
+Each Contributor represents that the Contributor believes its
+Contributions are its original creation(s) or it has sufficient rights
+to grant the rights to its Contributions conveyed by this License.
+
+2.6. Fair Use
+
+This License is not intended to limit any rights You have under
+applicable copyright doctrines of fair use, fair dealing, or other
+equivalents.
+
+2.7. Conditions
+
+Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
+in Section 2.1.
+
+3. Responsibilities
+-------------------
+
+3.1. Distribution of Source Form
+
+All distribution of Covered Software in Source Code Form, including any
+Modifications that You create or to which You contribute, must be under
+the terms of this License. You must inform recipients that the Source
+Code Form of the Covered Software is governed by the terms of this
+License, and how they can obtain a copy of this License. You may not
+attempt to alter or restrict the recipients' rights in the Source Code
+Form.
+
+3.2. Distribution of Executable Form
+
+If You distribute Covered Software in Executable Form then:
+
+(a) such Covered Software must also be made available in Source Code
+    Form, as described in Section 3.1, and You must inform recipients of
+    the Executable Form how they can obtain a copy of such Source Code
+    Form by reasonable means in a timely manner, at a charge no more
+    than the cost of distribution to the recipient; and
+
+(b) You may distribute such Executable Form under the terms of this
+    License, or sublicense it under different terms, provided that the
+    license for the Executable Form does not attempt to limit or alter
+    the recipients' rights in the Source Code Form under this License.
+
+3.3. Distribution of a Larger Work
+
+You may create and distribute a Larger Work under terms of Your choice,
+provided that You also comply with the requirements of this License for
+the Covered Software. If the Larger Work is a combination of Covered
+Software with a work governed by one or more Secondary Licenses, and the
+Covered Software is not Incompatible With Secondary Licenses, this
+License permits You to additionally distribute such Covered Software
+under the terms of such Secondary License(s), so that the recipient of
+the Larger Work may, at their option, further distribute the Covered
+Software under the terms of either this License or such Secondary
+License(s).
+
+3.4. Notices
+
+You may not remove or alter the substance of any license notices
+(including copyright notices, patent notices, disclaimers of warranty,
+or limitations of liability) contained within the Source Code Form of
+the Covered Software, except that You may alter any license notices to
+the extent required to remedy known factual inaccuracies.
+
+3.5. Application of Additional Terms
+
+You may choose to offer, and to charge a fee for, warranty, support,
+indemnity or liability obligations to one or more recipients of Covered
+Software. However, You may do so only on Your own behalf, and not on
+behalf of any Contributor. You must make it absolutely clear that any
+such warranty, support, indemnity, or liability obligation is offered by
+You alone, and You hereby agree to indemnify every Contributor for any
+liability incurred by such Contributor as a result of warranty, support,
+indemnity or liability terms You offer. You may include additional
+disclaimers of warranty and limitations of liability specific to any
+jurisdiction.
+
+4. Inability to Comply Due to Statute or Regulation
+---------------------------------------------------
+
+If it is impossible for You to comply with any of the terms of this
+License with respect to some or all of the Covered Software due to
+statute, judicial order, or regulation then You must: (a) comply with
+the terms of this License to the maximum extent possible; and (b)
+describe the limitations and the code they affect. Such description must
+be placed in a text file included with all distributions of the Covered
+Software under this License. Except to the extent prohibited by statute
+or regulation, such description must be sufficiently detailed for a
+recipient of ordinary skill to be able to understand it.
+
+5. Termination
+--------------
+
+5.1. The rights granted under this License will terminate automatically
+if You fail to comply with any of its terms. However, if You become
+compliant, then the rights granted under this License from a particular
+Contributor are reinstated (a) provisionally, unless and until such
+Contributor explicitly and finally terminates Your grants, and (b) on an
+ongoing basis, if such Contributor fails to notify You of the
+non-compliance by some reasonable means prior to 60 days after You have
+come back into compliance. Moreover, Your grants from a particular
+Contributor are reinstated on an ongoing basis if such Contributor
+notifies You of the non-compliance by some reasonable means, this is the
+first time You have received notice of non-compliance with this License
+from such Contributor, and You become compliant prior to 30 days after
+Your receipt of the notice.
+
+5.2. If You initiate litigation against any entity by asserting a patent
+infringement claim (excluding declaratory judgment actions,
+counter-claims, and cross-claims) alleging that a Contributor Version
+directly or indirectly infringes any patent, then the rights granted to
+You by any and all Contributors for the Covered Software under Section
+2.1 of this License shall terminate.
+
+5.3. In the event of termination under Sections 5.1 or 5.2 above, all
+end user license agreements (excluding distributors and resellers) which
+have been validly granted by You or Your distributors under this License
+prior to termination shall survive termination.
+
+************************************************************************
+*                                                                      *
+*  6. Disclaimer of Warranty                                           *
+*  -------------------------                                           *
+*                                                                      *
+*  Covered Software is provided under this License on an "as is"       *
+*  basis, without warranty of any kind, either expressed, implied, or  *
+*  statutory, including, without limitation, warranties that the       *
+*  Covered Software is free of defects, merchantable, fit for a        *
+*  particular purpose or non-infringing. The entire risk as to the     *
+*  quality and performance of the Covered Software is with You.        *
+*  Should any Covered Software prove defective in any respect, You     *
+*  (not any Contributor) assume the cost of any necessary servicing,   *
+*  repair, or correction. This disclaimer of warranty constitutes an   *
+*  essential part of this License. No use of any Covered Software is   *
+*  authorized under this License except under this disclaimer.         *
+*                                                                      *
+************************************************************************
+
+************************************************************************
+*                                                                      *
+*  7. Limitation of Liability                                          *
+*  --------------------------                                          *
+*                                                                      *
+*  Under no circumstances and under no legal theory, whether tort      *
+*  (including negligence), contract, or otherwise, shall any           *
+*  Contributor, or anyone who distributes Covered Software as          *
+*  permitted above, be liable to You for any direct, indirect,         *
+*  special, incidental, or consequential damages of any character      *
+*  including, without limitation, damages for lost profits, loss of    *
+*  goodwill, work stoppage, computer failure or malfunction, or any    *
+*  and all other commercial damages or losses, even if such party      *
+*  shall have been informed of the possibility of such damages. This   *
+*  limitation of liability shall not apply to liability for death or   *
+*  personal injury resulting from such party's negligence to the       *
+*  extent applicable law prohibits such limitation. Some               *
+*  jurisdictions do not allow the exclusion or limitation of           *
+*  incidental or consequential damages, so this exclusion and          *
+*  limitation may not apply to You.                                    *
+*                                                                      *
+************************************************************************
+
+8. Litigation
+-------------
+
+Any litigation relating to this License may be brought only in the
+courts of a jurisdiction where the defendant maintains its principal
+place of business and such litigation shall be governed by laws of that
+jurisdiction, without reference to its conflict-of-law provisions.
+Nothing in this Section shall prevent a party's ability to bring
+cross-claims or counter-claims.
+
+9. Miscellaneous
+----------------
+
+This License represents the complete agreement concerning the subject
+matter hereof. If any provision of this License is held to be
+unenforceable, such provision shall be reformed only to the extent
+necessary to make it enforceable. Any law or regulation which provides
+that the language of a contract shall be construed against the drafter
+shall not be used to construe this License against a Contributor.
+
+10. Versions of the License
+---------------------------
+
+10.1. New Versions
+
+Mozilla Foundation is the license steward. Except as provided in Section
+10.3, no one other than the license steward has the right to modify or
+publish new versions of this License. Each version will be given a
+distinguishing version number.
+
+10.2. Effect of New Versions
+
+You may distribute the Covered Software under the terms of the version
+of the License under which You originally received the Covered Software,
+or under the terms of any subsequent version published by the license
+steward.
+
+10.3. Modified Versions
+
+If you create software not governed by this License, and you want to
+create a new license for such software, you may create and use a
+modified version of this License if you rename the license and remove
+any references to the name of the license steward (except to note that
+such modified license differs from this License).
+
+10.4. Distributing Source Code Form that is Incompatible With Secondary
+Licenses
+
+If You choose to distribute Source Code Form that is Incompatible With
+Secondary Licenses under the terms of this version of the License, the
+notice described in Exhibit B of this License must be attached.
+
+Exhibit A - Source Code Form License Notice
+-------------------------------------------
+
+  This Source Code Form is subject to the terms of the Mozilla Public
+  License, v. 2.0. If a copy of the MPL was not distributed with this
+  file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+If it is not possible or desirable to put the notice in a particular
+file, then You may include the notice in a location (such as a LICENSE
+file in a relevant directory) where a recipient would be likely to look
+for such a notice.
+
+You may add additional accurate notices of copyright ownership.
+
+Exhibit B - "Incompatible With Secondary Licenses" Notice
+---------------------------------------------------------
+
+  This Source Code Form is "Incompatible With Secondary Licenses", as
+  defined by the Mozilla Public License, v. 2.0.

+ 24 - 0
README.md

@@ -0,0 +1,24 @@
+<h1> 千鸟云商SAAS平台 </h1>
+
+| 分支名                                                                                                   | 是否精简 commit | 是否精简功能 | 是否支持 i18n | 更新时间 |                                                                                                  维护人                                                                                                   |
+| -------------------------------------------------------------------------------------------------------- | :-------------: | :----------: | :-----------: | :------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
+| [master](git@gitee.com:qianniaoyunshang/jindouyunNewFront.git)                                |       ❌        |      ❌      |       ✔       |   即时   | 千鸟云商前端小组 |
+| [dev](git@gitee.com:qianniaoyunshang/jindouyunNewFront.git)    开发分支                            |       ❌        |      ❌      |       ✔       |   即时   | 千鸟云商前端小组 |
+| [feilong]濮阳代理 飞龙                           |       ❌        |      ❌      |       ✔       |   即时   | 千鸟云商前端小组 |
+| [handan]河北邯郸客户                            |       ❌        |      ❌      |       ✔       |   即时   | 千鸟云商前端小组 |
+| [xinhongtai]河南郑州 鑫弘泰                            |       ❌        |      ❌      |       ✔       |   即时   | 千鸟云商前端小组 |
+| [jituyunshang]极兔云商(代理商)                           |       ❌        |      ❌      |       ✔       |   即时   | 千鸟云商前端小组 |
+| [QPL]趣批零(代理商)                             |       ❌        |      ❌      |       ✔       |   即时   | 千鸟云商前端小组 |
+| [xhjc]鲜汇精彩(客户:刘明灯)                             |       ❌        |      ❌      |       ✔       |   即时   | 千鸟云商前端小组 |
+| [jinluruipu]锦鹿瑞普                           |       ❌        |      ❌      |       ✔       |   即时   | 千鸟云商前端小组 |
+
+```bash
+# 克隆项目
+git clone git@gitee.com:qianniaoyunshang/jindouyunNewFront.git
+# 进入项目目录
+cd jindouyunNewFront
+# 安装依赖
+npm i
+# 本地开发 启动项目
+npm run serve
+```

+ 17 - 0
babel.config.js

@@ -0,0 +1,17 @@
+module.exports = {
+  presets: ["@vue/cli-plugin-babel/preset"],
+  env: {
+    development: {
+      plugins: ["dynamic-import-node"],
+    },
+  },
+  plugins: [
+    [
+      "import",
+      {
+        libraryName: "vxe-table",
+        style: true, // 样式是否也按需加载
+      },
+    ],
+  ],
+};

+ 13 - 0
debug.log

@@ -0,0 +1,13 @@
+[0111/090653.207:ERROR:directory_reader_win.cc(43)] FindFirstFile: ϵͳ�Ҳ���ָ����·���� (0x3)
+[0112/092644.254:ERROR:directory_reader_win.cc(43)] FindFirstFile: ϵͳ�Ҳ���ָ����·���� (0x3)
+[0113/093845.789:ERROR:directory_reader_win.cc(43)] FindFirstFile: ϵͳ�Ҳ���ָ����·���� (0x3)
+[0113/142858.976:ERROR:directory_reader_win.cc(43)] FindFirstFile: ϵͳ�Ҳ���ָ����·���� (0x3)
+[0114/092624.008:ERROR:directory_reader_win.cc(43)] FindFirstFile: ϵͳ�Ҳ���ָ����·���� (0x3)
+[0115/093930.872:ERROR:directory_reader_win.cc(43)] FindFirstFile: ϵͳ�Ҳ���ָ����·���� (0x3)
+[0118/092542.463:ERROR:directory_reader_win.cc(43)] FindFirstFile: ϵͳ�Ҳ���ָ����·���� (0x3)
+[0119/101438.265:ERROR:directory_reader_win.cc(43)] FindFirstFile: ϵͳ�Ҳ���ָ����·���� (0x3)
+[0120/092625.197:ERROR:directory_reader_win.cc(43)] FindFirstFile: ϵͳ�Ҳ���ָ����·���� (0x3)
+[0121/094330.541:ERROR:directory_reader_win.cc(43)] FindFirstFile: ϵͳ�Ҳ���ָ����·���� (0x3)
+[0121/191406.634:ERROR:directory_reader_win.cc(43)] FindFirstFile: ϵͳ�Ҳ���ָ����·���� (0x3)
+[0123/095027.675:ERROR:directory_reader_win.cc(43)] FindFirstFile: ϵͳ�Ҳ���ָ����·���� (0x3)
+[0125/095401.154:ERROR:directory_reader_win.cc(43)] FindFirstFile: ϵͳ�Ҳ���ָ����·���� (0x3)

+ 11 - 0
deploy.sh

@@ -0,0 +1,11 @@
+cd dist
+git init
+git add -A
+git commit -m 'deploy'
+/* 如果是master分支直接写master 如果是其他分支 master:[branch](master后面加上其他分支的名字) */
+git push -f "git@gitee.com:qianniaoyunshang/jindouyun_front_build.git" master:[branch]
+cd -
+
+
+
+

+ 3 - 0
dockerfile

@@ -0,0 +1,3 @@
+FROM nginx
+COPY dist/  /home/web
+COPY nginx.conf /etc/nginx/nginx.conf

+ 12 - 0
jsconfig.json

@@ -0,0 +1,12 @@
+{
+  "compilerOptions": {
+    "target": "ES6",
+    "module": "commonjs",
+    "allowSyntheticDefaultImports": true,
+    "baseUrl": "./",
+    "paths": {
+      "@/*": ["src/*"]
+    }
+  },
+  "exclude": ["node_modules"]
+}

+ 91 - 0
mock/controller/departmentManagement.js

@@ -0,0 +1,91 @@
+const { mock } = require("mockjs");
+const List = [
+  {
+    id: "root",
+    createTime: "@datetime",
+    name: "根节点",
+    order: 0,
+    children: [
+      {
+        id: "1",
+        parentId: "root",
+        parentName: "根节点",
+        createTime: "@datetime",
+        name: "桃花坞",
+        order: 0,
+      },
+      {
+        id: "2",
+        parentId: "root",
+        parentName: "根节点",
+        createTime: "@datetime",
+        name: "少林寺",
+        order: 1,
+        children: [
+          {
+            id: "@uuid",
+            parentId: "2",
+            parentName: "少林寺",
+            createTime: "@datetime",
+            name: "达摩院",
+            order: 0,
+          },
+          {
+            id: "@uuid",
+            parentId: "2",
+            parentName: "少林寺",
+            createTime: "@datetime",
+            name: "戒律堂",
+            order: 1,
+          },
+        ],
+      },
+    ],
+  },
+];
+
+module.exports = [
+  {
+    url: "/departmentManagement/getList",
+    type: "get",
+    response: (config) => {
+      const { name, pageNo = 1, pageSize = 20 } = config.query;
+
+      let mockList = List.filter((item) => {
+        if (name && item.name.indexOf(name) < 0) return false;
+        return true;
+      });
+      const pageList = mockList.filter(
+        (item, index) =>
+          index < pageSize * pageNo && index >= pageSize * (pageNo - 1)
+      );
+
+      return {
+        code: 200,
+        msg: "success",
+        totalCount: mockList.length,
+        data: pageList,
+      };
+    },
+  },
+  {
+    url: "/departmentManagement/doEdit",
+    type: "post",
+    response: () => {
+      return {
+        code: 200,
+        msg: "模拟保存成功",
+      };
+    },
+  },
+  {
+    url: "/departmentManagement/doDelete",
+    type: "post",
+    response: () => {
+      return {
+        code: 200,
+        msg: "模拟删除成功",
+      };
+    },
+  },
+];

+ 34 - 0
mock/controller/goods.js

@@ -0,0 +1,34 @@
+const List = [
+  {
+    uuid: "@uuid",
+    icon: "file-pdf-line",
+    title: "pdf打印",
+    price: "0",
+    type: "组件",
+    isRecommend: 1,
+  },
+];
+
+module.exports = [
+  {
+    url: "/goods/getList",
+    type: "get",
+    response(config) {
+      const { title, pageNo = 1, pageSize = 20 } = config.query;
+      let mockList = List.filter((item) => {
+        if (title && item.title.indexOf(title) < 0) return false;
+        return true;
+      });
+      const pageList = mockList.filter(
+        (item, index) =>
+          index < pageSize * pageNo && index >= pageSize * (pageNo - 1)
+      );
+      return {
+        code: 200,
+        msg: "success",
+        totalCount: mockList.length,
+        data: pageList,
+      };
+    },
+  },
+];

+ 51 - 0
mock/controller/menuManagement.js

@@ -0,0 +1,51 @@
+module.exports = [
+  {
+    url: "/menuManagement/getTree",
+    type: "get",
+    response() {
+      return {
+        code: 200,
+        msg: "success",
+        totalCount: 999,
+        data: [
+          {
+            id: "root",
+            label: "全部角色",
+            children: [
+              {
+                id: "@id",
+                role: "admin",
+                label: "admin角色",
+              },
+              {
+                id: "@id",
+                role: "editor",
+                label: "editor角色",
+              },
+            ],
+          },
+        ],
+      };
+    },
+  },
+  {
+    url: "/menuManagement/doEdit",
+    type: "post",
+    response() {
+      return {
+        code: 200,
+        msg: "模拟保存成功",
+      };
+    },
+  },
+  {
+    url: "/menuManagement/doDelete",
+    type: "post",
+    response() {
+      return {
+        code: 200,
+        msg: "模拟删除成功",
+      };
+    },
+  },
+];

+ 53 - 0
mock/controller/roleManagement.js

@@ -0,0 +1,53 @@
+const List = [
+  {
+    id: "@id",
+    role: "admin",
+  },
+  {
+    id: "@id",
+    role: "editor",
+  },
+];
+module.exports = [
+  {
+    url: "/roleManagement/getList",
+    type: "get",
+    response(config) {
+      const { role, pageNo = 1, pageSize = 20 } = config.query;
+      let mockList = List.filter((item) => {
+        if (role && item.title.indexOf(role) < 0) return false;
+        return true;
+      });
+      const pageList = mockList.filter(
+        (item, index) =>
+          index < pageSize * pageNo && index >= pageSize * (pageNo - 1)
+      );
+      return {
+        code: 200,
+        msg: "success",
+        totalCount: mockList.length,
+        data: pageList,
+      };
+    },
+  },
+  {
+    url: "/roleManagement/doEdit",
+    type: "post",
+    response(config) {
+      return {
+        code: 200,
+        msg: "模拟保存成功",
+      };
+    },
+  },
+  {
+    url: "/roleManagement/doDelete",
+    type: "post",
+    response(config) {
+      return {
+        code: 200,
+        msg: "模拟删除成功",
+      };
+    },
+  },
+];

+ 66 - 0
mock/controller/table.js

@@ -0,0 +1,66 @@
+const { mock } = require("mockjs");
+const { handleRandomImage } = require("../utils");
+const List = [];
+const count = 50;
+for (let i = 0; i < count; i++) {
+  List.push(
+    mock({
+      uuid: "@uuid",
+      id: "@id",
+      title: "@title(1, 2)",
+      description: "@csentence",
+      "status|1": ["published", "draft", "deleted"],
+      author: "@cname",
+      datetime: "@datetime",
+      pageViews: "@integer(300, 5000)",
+      img: handleRandomImage(228, 228),
+      switch: "@boolean",
+      percent: "@integer(80,99)",
+      "rate|1": [1, 2, 3, 4, 5],
+    })
+  );
+}
+
+module.exports = [
+  {
+    url: "/table/getList",
+    type: "get",
+    response(config) {
+      const { title, pageNo = 1, pageSize = 20 } = config.query;
+      let mockList = List.filter((item) => {
+        if (title && item.title.indexOf(title) < 0) return false;
+        return true;
+      });
+      const pageList = mockList.filter(
+        (item, index) =>
+          index < pageSize * pageNo && index >= pageSize * (pageNo - 1)
+      );
+      return {
+        code: 200,
+        msg: "success",
+        totalCount: mockList.length,
+        data: pageList,
+      };
+    },
+  },
+  {
+    url: "/table/doEdit",
+    type: "post",
+    response() {
+      return {
+        code: 200,
+        msg: "模拟保存成功",
+      };
+    },
+  },
+  {
+    url: "/table/doDelete",
+    type: "post",
+    response() {
+      return {
+        code: 200,
+        msg: "模拟删除成功",
+      };
+    },
+  },
+];

+ 118 - 0
mock/controller/user.js

@@ -0,0 +1,118 @@
+const accessTokens = {
+  admin: "admin-accessToken",
+  editor: "editor-accessToken",
+  test: "test-accessToken",
+};
+
+module.exports = [
+  {
+    url: "/publicKey",
+    type: "post",
+    response() {
+      return {
+        code: 200,
+        msg: "success",
+        data: {
+          mockServer: true,
+          publicKey:
+            "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDBT2vr+dhZElF73FJ6xiP181txKWUSNLPQQlid6DUJhGAOZblluafIdLmnUyKE8mMHhT3R+Ib3ssZcJku6Hn72yHYj/qPkCGFv0eFo7G+GJfDIUeDyalBN0QsuiE/XzPHJBuJDfRArOiWvH0BXOv5kpeXSXM8yTt5Na1jAYSiQ/wIDAQAB",
+        },
+      };
+    },
+  },
+  {
+    url: "/login",
+    type: "post",
+    response(config) {
+      const { username } = config.body;
+      const accessToken = accessTokens[username];
+      if (!accessToken) {
+        return {
+          code: 500,
+          msg: "帐户或密码不正确。",
+        };
+      }
+      return {
+        code: 200,
+        msg: "success",
+        data: { accessToken },
+      };
+    },
+  },
+  {
+    url: "/socialLogin",
+    type: "post",
+    response(config) {
+      const { code } = config.body;
+      if (!code) {
+        return {
+          code: 500,
+          msg: "未成功获取Token。",
+        };
+      }
+      return {
+        code: 200,
+        msg: "success",
+        data: { accessToken: accessTokens["admin"] },
+      };
+    },
+  },
+  {
+    url: "/register",
+    type: "post",
+    response() {
+      return {
+        code: 200,
+        msg: "模拟注册成功",
+      };
+    },
+  },
+  {
+    url: "/userInfo",
+    type: "post",
+    response(config) {
+      const { accessToken } = config.body;
+      let roles = ["admin"];
+      let ability = ["READ"];
+      let username = "admin";
+      if ("admin-accessToken" === accessToken) {
+        roles = ["admin"];
+        ability = ["READ", "WRITE", "DELETE"];
+        username = "admin";
+      }
+      if ("editor-accessToken" === accessToken) {
+        roles = ["editor"];
+        ability = ["READ", "WRITE"];
+        username = "editor";
+      }
+      if ("test-accessToken" === accessToken) {
+        roles = ["admin", "editor"];
+        ability = ["READ"];
+        username = "test";
+      }
+      return {
+        code: 200,
+        msg: "success",
+        data: {
+          roles,
+          ability,
+          username,
+          "avatar|1": [
+            "https://i.gtimg.cn/club/item/face/img/2/15922_100.gif",
+            "https://i.gtimg.cn/club/item/face/img/8/15918_100.gif",
+          ],
+        },
+      };
+    },
+  },
+  {
+    url: "/logout",
+    type: "post",
+    response() {
+      return {
+        code: 200,
+        msg: "success",
+      };
+    },
+  },
+];

+ 69 - 0
mock/controller/userManagement.js

@@ -0,0 +1,69 @@
+const List = [
+  {
+    id: "@id",
+    username: "admin",
+    password: "admin",
+    email: "@email",
+    roles: ["admin"],
+    datatime: "@datetime",
+  },
+  {
+    id: "@id",
+    username: "editor",
+    password: "editor",
+    email: "@email",
+    roles: ["editor"],
+    datatime: "@datetime",
+  },
+  {
+    id: "@id",
+    username: "test",
+    password: "test",
+    email: "@email",
+    roles: ["admin", "editor"],
+    datatime: "@datetime",
+  },
+];
+module.exports = [
+  {
+    url: "/userManagement/getList",
+    type: "get",
+    response(config) {
+      const { username, pageNo = 1, pageSize = 20 } = config.query;
+      let mockList = List.filter((item) => {
+        if (username && item.username.indexOf(username) < 0) return false;
+        return true;
+      });
+      const pageList = mockList.filter(
+        (item, index) =>
+          index < pageSize * pageNo && index >= pageSize * (pageNo - 1)
+      );
+      return {
+        code: 200,
+        msg: "success",
+        totalCount: mockList.length,
+        data: pageList,
+      };
+    },
+  },
+  {
+    url: "/userManagement/doEdit",
+    type: "post",
+    response() {
+      return {
+        code: 200,
+        msg: "模拟保存成功",
+      };
+    },
+  },
+  {
+    url: "/userManagement/doDelete",
+    type: "post",
+    response() {
+      return {
+        code: 200,
+        msg: "模拟删除成功",
+      };
+    },
+  },
+];

+ 16 - 0
mock/index.js

@@ -0,0 +1,16 @@
+/**
+
+ * @description 导入所有 controller 模块,npm run serve时在node环境中自动输出controller文件夹下Mock接口,请勿修改。
+ */
+
+const { handleMockArray } = require("./utils");
+
+const mocks = [];
+const mockArray = handleMockArray();
+mockArray.forEach((item) => {
+  const obj = require(item);
+  mocks.push(...obj);
+});
+module.exports = {
+  mocks,
+};

+ 94 - 0
mock/mockServer.js

@@ -0,0 +1,94 @@
+const chokidar = require("chokidar");
+const bodyParser = require("body-parser");
+const chalk = require("chalk");
+const path = require("path");
+const Mock = require("mockjs");
+const { baseURL } = require("../src/config/settings");
+const mockDir = path.join(process.cwd(), "mock");
+
+/**
+ *
+ * @param app
+ * @returns {{mockStartIndex: number, mockRoutesLength: number}}
+ */
+const registerRoutes = (app) => {
+  let mockLastIndex;
+  const { mocks } = require("./index.js");
+  const mocksForServer = mocks.map((route) => {
+    return responseFake(route.url, route.type, route.response);
+  });
+  for (const mock of mocksForServer) {
+    app[mock.type](mock.url, mock.response);
+    mockLastIndex = app._router.stack.length;
+  }
+  const mockRoutesLength = Object.keys(mocksForServer).length;
+  return {
+    mockRoutesLength: mockRoutesLength,
+    mockStartIndex: mockLastIndex - mockRoutesLength,
+  };
+};
+
+/**
+ *
+ * @param url
+ * @param type
+ * @param respond
+ * @returns {{response(*=, *=): void, type: (*|string), url: RegExp}}
+ */
+const responseFake = (url, type, respond) => {
+  return {
+    url: new RegExp(`${baseURL}${url}`),
+    type: type || "get",
+    response(req, res) {
+      res.status(200);
+      if (JSON.stringify(req.body) !== "{}") {
+        console.log(chalk.green(`> 请求地址:${req.path}`));
+        console.log(chalk.green(`> 请求参数:${JSON.stringify(req.body)}\n`));
+      } else {
+        console.log(chalk.green(`> 请求地址:${req.path}\n`));
+      }
+      res.json(
+        Mock.mock(respond instanceof Function ? respond(req, res) : respond)
+      );
+    },
+  };
+};
+/**
+ *
+ * @param app
+ */
+module.exports = (app) => {
+  app.use(bodyParser.json());
+  app.use(
+    bodyParser.urlencoded({
+      extended: true,
+    })
+  );
+
+  const mockRoutes = registerRoutes(app);
+  let mockRoutesLength = mockRoutes.mockRoutesLength;
+  let mockStartIndex = mockRoutes.mockStartIndex;
+  chokidar
+    .watch(mockDir, {
+      ignored: /mock-server/,
+      ignoreInitial: true,
+    })
+    .on("all", (event) => {
+      if (event === "change" || event === "add") {
+        try {
+          app._router.stack.splice(mockStartIndex, mockRoutesLength);
+
+          Object.keys(require.cache).forEach((item) => {
+            if (item.includes(mockDir)) {
+              delete require.cache[require.resolve(item)];
+            }
+          });
+          const mockRoutes = registerRoutes(app);
+          mockRoutesLength = mockRoutes.mockRoutesLength;
+          mockStartIndex = mockRoutes.mockStartIndex;
+        } catch (error) {
+          console.log(chalk.red(error));
+        }
+      }
+    });
+};

+ 43 - 0
mock/utils/index.js

@@ -0,0 +1,43 @@
+const { Random } = require("mockjs");
+const { join } = require("path");
+const fs = require("fs");
+
+/**
+
+ * @description 随机生成图片url。
+ * @param width
+ * @param height
+ * @returns {string}
+ */
+function handleRandomImage(width = 50, height = 50) {
+  return `https://picsum.photos/${width}/${height}?random=${Random.guid()}`;
+}
+
+/**
+
+ * @description 处理所有 controller 模块,npm run serve时在node环境中自动输出controller文件夹下Mock接口,请勿修改。
+ * @returns {[]}
+ */
+function handleMockArray() {
+  const mockArray = [];
+  const getFiles = (jsonPath) => {
+    const jsonFiles = [];
+    const findJsonFile = (path) => {
+      const files = fs.readdirSync(path);
+      files.forEach((item) => {
+        const fPath = join(path, item);
+        const stat = fs.statSync(fPath);
+        if (stat.isDirectory() === true) findJsonFile(item);
+        if (stat.isFile() === true) jsonFiles.push(item);
+      });
+    };
+    findJsonFile(jsonPath);
+    jsonFiles.forEach((item) => mockArray.push(`./controller/${item}`));
+  };
+  getFiles("mock/controller");
+  return mockArray;
+}
+module.exports = {
+  handleRandomImage,
+  handleMockArray,
+};

+ 28 - 0
nginx.conf

@@ -0,0 +1,28 @@
+worker_processes auto;
+
+events {
+    worker_connections  1024;
+}
+
+http {
+    include       mime.types;
+    default_type  application/octet-stream;
+
+    sendfile        on;
+    keepalive_timeout  65;
+
+    client_max_body_size   20m;
+    server {
+        listen       80;
+        server_name  localhost;
+        location / {
+           root   /home/web;
+           index  index.html index.htm;
+           try_files $uri $uri/ /index.html;
+        }
+        error_page   500 502 503 504  /50x.html;
+        location = /50x.html {
+            root   html;
+        }
+    }
+}

+ 121 - 0
package.json

@@ -0,0 +1,121 @@
+{
+  "name": "QianNiaoStation2.0",
+  "version": "2.0.0",
+  "author": "chuzhixin",
+  "license": "Mozilla Public License Version 2.0",
+  "private": true,
+  "participants": [
+    "fwfmiao"
+  ],
+  "homepage": "https://chu1204505056.gitee.io/vue-admin-beautiful-pro",
+  "scripts": {
+    "serve": "vue-cli-service serve",
+    "build": "vue-cli-service build",
+    "build:report": "vue-cli-service build --report",
+    "lint": "vue-cli-service lint",
+    "lint:style": "stylelint-config-prettier-check",
+    "inspect": "vue-cli-service inspect",
+    "template": "plop",
+    "clear": "npm cache clean -f&&rimraf node_modules&&npm install --registry=https://registry.npm.taobao.org",
+    "use:npm": "nrm use npm",
+    "use:taobao": "nrm use taobao",
+    "update": "ncu -u&&npm install --registry=https://registry.npm.taobao.org",
+    "update:globle": "ncu -g",
+    "push": "start ./push.sh",
+    "deploy": "start ./deploy.sh",
+    "docker:build": "npm run build&&docker build --pull --rm -f \"dockerfile\" -t vueadminbeautifulpro:latest \".\"&&docker run --rm -d  -p 80:80/tcp vueadminbeautifulpro:latest"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/vue-admin-beautiful/vue-admin-beautiful-pro.git"
+  },
+  "gitHooks": {
+    "pre-commit": "lint-staged"
+  },
+  "lint-staged": {
+    "*.{js,scss,vue}": [
+      "vue-cli-service lint",
+      "git add"
+    ]
+  },
+  "dependencies": {
+    "ali-oss": "^6.13.2",
+    "awe-dnd": "^0.3.4",
+    "axios": "^0.21.1",
+    "clipboard": "^2.0.6",
+    "core-js": "^3.6.5",
+    "dayjs": "^1.8.36",
+    "echarts": "^4.9.0",
+    "element-ui": "^2.13.2",
+    "file-saver": "^2.0.2",
+    "js-cookie": "^2.2.1",
+    "jsencrypt": "^3.0.0-rc.1",
+    "lodash": "^4.17.21",
+    "mockjs": "^1.1.0",
+    "nprogress": "^0.2.0",
+    "number-precision": "^1.5.0",
+    "qs": "^6.9.4",
+    "remixicon": "^2.5.0",
+    "screenfull": "^5.0.2",
+    "vue": "^2.6.12",
+    "vue-baidu-map": "^0.21.22",
+    "vue-echarts": "^4.1.0",
+    "vue-print-nb": "^1.5.0",
+    "vue-router": "^3.4.3",
+    "vuex": "^3.6.2",
+    "vxe-table": "^3.2.6",
+    "xe-utils": "^3.1.13",
+    "xlsx": "^0.16.9",
+    "zx-contextmenu": "0.0.1",
+    "zx-count": "^0.3.7",
+    "zx-layouts": "^0.6.13",
+    "zx-magnifie": "^0.4.0",
+    "zx-markdown-editor": "^0.0.2",
+    "zx-player": "^1.0.1",
+    "zx-quill": "^0.0.2",
+    "zx-templates": "^0.0.21"
+  },
+  "devDependencies": {
+    "@vue/cli-plugin-babel": "^4.5.6",
+    "@vue/cli-plugin-eslint": "^4.5.6",
+    "@vue/cli-service": "^4.5.13",
+    "@vue/eslint-config-prettier": "^6.0.0",
+    "babel-eslint": "^10.1.0",
+    "babel-plugin-import": "^1.13.3",
+    "body-parser": "^1.19.0",
+    "chalk": "^4.1.0",
+    "chokidar": "^3.4.2",
+    "compression-webpack-plugin": "^6.0.2",
+    "eslint": "^7.9.0",
+    "eslint-plugin-prettier": "^3.1.4",
+    "eslint-plugin-vue": "^6.2.2",
+    "filemanager-webpack-plugin": "^2.0.5",
+    "lint-staged": "^10.4.0",
+    "plop": "^2.7.4",
+    "prettier": "^2.1.2",
+    "raw-loader": "^4.0.1",
+    "sass": "^1.26.11",
+    "sass-loader": "^10.0.2",
+    "stylelint": "^13.7.1",
+    "stylelint-config-prettier": "^8.0.2",
+    "stylelint-config-recess-order": "^2.1.0",
+    "svg-sprite-loader": "^5.0.0",
+    "vue-template-compiler": "^2.6.12",
+    "webpackbar": "^4.0.0"
+  },
+  "keywords": [
+    "vue",
+    "admin",
+    "dashboard",
+    "element-ui",
+    "vue-admin",
+    "element-admin",
+    "boilerplate",
+    "admin-template",
+    "management-system"
+  ],
+  "engines": {
+    "node": ">=8.9",
+    "npm": ">= 3.0.0"
+  }
+}

+ 13 - 0
plopfile.js

@@ -0,0 +1,13 @@
+const viewGenerator = require("zx-templates/view/prompt");
+const curdGenerator = require("zx-templates/curd/prompt");
+const componentGenerator = require("zx-templates/component/prompt");
+const mockGenerator = require("zx-templates/mock/prompt");
+const vuexGenerator = require("zx-templates/vuex/prompt");
+
+module.exports = (plop) => {
+  plop.setGenerator("view", viewGenerator);
+  plop.setGenerator("curd", curdGenerator);
+  plop.setGenerator("component", componentGenerator);
+  plop.setGenerator("mock&api", mockGenerator);
+  plop.setGenerator("vuex", vuexGenerator);
+};

+ 16 - 0
prettier.config.js

@@ -0,0 +1,16 @@
+module.exports = {
+  printWidth: 80,
+  tabWidth: 2,
+  useTabs: false,
+  semi: true,
+  singleQuote: false,
+  quoteProps: "as-needed",
+  jsxSingleQuote: false,
+  trailingComma: "es5",
+  bracketSpacing: true,
+  jsxBracketSameLine: false,
+  arrowParens: "always",
+  htmlWhitespaceSensitivity: "ignore",
+  vueIndentScriptAndStyle: true,
+  endOfLine: "lf",
+};

BIN
public/favicon.ico


+ 52 - 0
public/index.html

@@ -0,0 +1,52 @@
+<!DOCTYPE html>
+<html lang="zh-cmn-Hans">
+  <head>
+    <meta charset="utf-8" />
+    <meta content="IE=edge" http-equiv="X-UA-Compatible" />
+    <meta content="width=device-width,initial-scale=1.0" name="viewport" />
+    <link href="<%= BASE_URL %>favicon.ico" rel="icon" />
+    <title><%= VUE_APP_TITLE %></title>
+    <meta
+      content="千鸟云商,进销存,订货系统,新零售,小程序,APP商城,B2B2C,B2C,S2B,S2B2C,POS线下收银,B2B订货系统,三级分销系统,新零售系统,社区团购,电商定制开发"
+      name="keywords"
+    />
+    <meta
+      content="千鸟云商致力于传统企业向互联网转型,专注于为传统企业提供全渠道线上线下一体化新零售营销系统,帮助传统企业线上+线下+业务财务一体化的解决方案!提供产业互联网全套解决方案"
+      name="description"
+    />
+    <meta content="<%= VUE_APP_AUTHOR %>" name="author" />
+    <link href="<%= BASE_URL %>static/css/loading.css" rel="stylesheet" />
+    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Noto+Sans+SC:100,300,400,500,700,900">
+  </head>
+  <body>
+    <noscript>
+      非常抱歉,您无法查看<%= VUE_APP_TITLE %>源代码
+    </noscript>
+    <div id="vue-admin-beautiful-pro">
+      <div class="first-loading-wrp">
+        <div class="loading-wrp">
+          <span class="dot dot-spin">
+            <i></i>
+            <i></i>
+            <i></i>
+            <i></i>
+          </span>
+        </div>
+        <h1><%= VUE_APP_TITLE %></h1>
+      </div>
+    </div>
+    <script>
+      /^http(s*):\/\//.test(location.href) ||
+        alert("基于千鸟云商开发的项目需要部署到服务器下访问");
+    </script>
+<!--    <script>-->
+<!--      var _hmt = _hmt || [];-->
+<!--      (function () {-->
+<!--        var hm = document.createElement("script");-->
+<!--        hm.src = "https://hm.baidu.com/hm.js?7174bade1219f9cc272e7978f9523fc8";-->
+<!--        var s = document.getElementsByTagName("script")[0];-->
+<!--        s.parentNode.insertBefore(hm, s);-->
+<!--      })();-->
+<!--    </script>-->
+  </body>
+</html>

+ 96 - 0
public/static/css/loading.css

@@ -0,0 +1,96 @@
+.first-loading-wrp {
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+  justify-content: center;
+  height: 90vh;
+  min-height: 90vh;
+}
+
+.first-loading-wrp > h1 {
+  font-size: 30px;
+  font-weight: bolder;
+}
+
+.first-loading-wrp .loading-wrp {
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  padding: 98px;
+}
+
+.dot {
+  position: relative;
+  box-sizing: border-box;
+  display: inline-block;
+  width: 64px;
+  height: 64px;
+  font-size: 64px;
+  transform: rotate(45deg);
+  animation: antRotate 1.2s infinite linear;
+}
+
+.dot i {
+  position: absolute;
+  display: block;
+  width: 28px;
+  height: 28px;
+  background-color: #1890ff;
+  border-radius: 100%;
+  opacity: 0.3;
+  transform: scale(0.75);
+  transform-origin: 50% 50%;
+  animation: antSpinMove 1s infinite linear alternate;
+}
+
+.dot i:nth-child(1) {
+  top: 0;
+  left: 0;
+}
+
+.dot i:nth-child(2) {
+  top: 0;
+  right: 0;
+  -webkit-animation-delay: 0.4s;
+  animation-delay: 0.4s;
+}
+
+.dot i:nth-child(3) {
+  right: 0;
+  bottom: 0;
+  -webkit-animation-delay: 0.8s;
+  animation-delay: 0.8s;
+}
+
+.dot i:nth-child(4) {
+  bottom: 0;
+  left: 0;
+  -webkit-animation-delay: 1.2s;
+  animation-delay: 1.2s;
+}
+
+@keyframes antRotate {
+  to {
+    -webkit-transform: rotate(405deg);
+    transform: rotate(405deg);
+  }
+}
+
+@-webkit-keyframes antRotate {
+  to {
+    -webkit-transform: rotate(405deg);
+    transform: rotate(405deg);
+  }
+}
+
+@keyframes antSpinMove {
+  to {
+    opacity: 1;
+  }
+}
+
+@-webkit-keyframes antSpinMove {
+  to {
+    opacity: 1;
+  }
+}

+ 11 - 0
src/App.vue

@@ -0,0 +1,11 @@
+<template>
+  <div id="vue-admin-beautiful-pro">
+    <router-view></router-view>
+  </div>
+</template>
+
+<script>
+  export default {
+    name: "App",
+  };
+</script>

+ 121 - 0
src/access/check.js

@@ -0,0 +1,121 @@
+import store from "@/store";
+
+/**
+ * 获取用户
+ * @returns {String}
+ */
+export function getUserInfo() {
+  return JSON.parse(sessionStorage.getItem("user_info")) || {};
+}
+
+/**
+ * 获取token失效时间
+ * @returns {String}
+ */
+export function tokenDate() {
+  return getUserInfo().expireTime;
+}
+
+/**
+ * 获取token
+ * @returns {String}
+ */
+export function getToken() {
+  return getUserInfo().token || "";
+}
+/**
+ * 获取企业token
+ * @returns {String}
+ */
+export function getEnToken() {
+  console.log("获取企业token", sessionStorage.getItem("enToken"));
+  return sessionStorage.getItem("enToken") || "";
+}
+/**
+ * 获取用户权限节点
+ * @returns {*}
+ */
+export function getUserAccess() {
+  return JSON.parse(sessionStorage.getItem("nodes")) || [];
+}
+/**
+ * 获取用户数据域权限
+ * @returns {*}
+ */
+export function getDataField() {
+  return sessionStorage.getItem("dataField")
+    ? JSON.parse(sessionStorage.getItem("dataField"))
+    : { dataField: 3 };
+}
+/**
+ * 获取用户数据域权限radio
+ * @returns {*}
+ */
+export function getDataFieldRadio() {
+  return getDataField().dataField || 3;
+}
+
+/**
+ * 是否超级管理员
+ * @returns {boolean}
+ */
+export function isSuperAdmin() {
+  if (sessionStorage.getItem("isSuper") === null) {
+    return true;
+  } else {
+    return !!JSON.parse(sessionStorage.getItem("isSuper"));
+  }
+}
+
+/**
+ * 检查路由权限
+ * @param route
+ * @returns {boolean}
+ */
+export function checkRouterAccess(route) {
+  if (isSuperAdmin()) {
+    return true;
+  }
+  const {
+    meta: { access },
+  } = route;
+  if (access === undefined) {
+    return true;
+  }
+  const roles = getUserAccess();
+  return checkAccess(access, roles);
+}
+
+/**
+ * 检查操作权限
+ * @param role
+ * @returns {boolean}
+ */
+export function checkActionAccess(role) {
+  if (isSuperAdmin()) {
+    return true;
+  }
+  if (role === undefined) {
+    return true;
+  }
+  const roles = getUserAccess();
+  return checkAccess(role, roles);
+}
+
+/**
+ * 检查权限
+ * @param role
+ * @param rolescheckRouterAccess
+ * @returns {boolean}
+ */
+export function checkAccess(role, roles = []) {
+  let isCheck = false;
+  for (let i in roles) {
+    const item = roles[i];
+    if (item === role) {
+      isCheck = true;
+      break;
+    }
+  }
+  return isCheck;
+}

+ 961 - 0
src/access/node.js

@@ -0,0 +1,961 @@
+export const overview = "overview"; // 首页概况
+// 商品资料
+export const BaseDataList = "goodsManage_BaseDataList"; // 基础资料
+export const getAllGoodsBasic = "BaseDataList_getAllGoodsBasic"; // 列表
+export const AddBaseData = "BaseDataList_addGoodsBasic"; // 添加基础资料
+export const EditBaseData = "BaseDataList_editGoodsBasic"; // 修改基础资料
+export const delBaseData = "BaseDataList_delGoodsBasic"; // 删除基础资料
+export const BaseDataListUpdateEnableStatus = "BaseDataList_updateEnableStatus"; // 启用/禁用
+export const BaseDataListDetail = "BaseDataList_getGoodsBasicInfoById"; // 详情
+export const BaseDataListSearch = "BaseDataList_search"; // 搜索基础商品
+export const BaseDataListUpdateCategory = "BaseDataList_updateCategory"; // 移动基础商品的分类
+export const BaseDataListGetGoodsBasicOfShopId =
+  "BaseDataList_getGoodsBasicOfShopId"; // 商铺下允许销售的商品列表
+export const BaseDataListSetNoSalesShop = "BaseDataList_setNoSalesShop"; // 批量设置不可销售店铺
+export const BaseDataListSetBrand = "BaseDataList_setBrand"; // 批量设置品牌
+export const BaseDataListSetSku = "BaseDataList_setSku"; // 批量设置辅助单位
+
+// 商品分类
+export const GoodsClassify = "goodsManage_GoodsBasicCategory"; // 商品分类
+export const GoodsBasicCategoryAddGoodsClassify =
+  "GoodsBasicCategory_addCategory"; // 新增
+export const GoodsBasicCategoryEditCategory = "GoodsBasicCategory_editCategory"; // 编辑
+export const GoodsBasicCategoryDelCategory = "GoodsBasicCategory_delCategory"; // 删除
+export const GoodsBasicCategoryGetAllCategory =
+  "GoodsBasicCategory_getAllCategory"; // 列表
+export const GoodsBasicCategoryGetCategoryInfoById =
+  "GoodsBasicCategory_getCategoryInfoById"; // 详情
+export const GoodsBasicCategoryUpdateCategoryStatus =
+  "GoodsBasicCategory_updateCategoryStatus"; // 启用禁用
+// 商品品牌
+export const BrandManage = "goodsManage_BrandManage"; // 商品品牌
+export const BrandManageGetAllBrand = "BrandManage_getAllBrand"; // 列表
+export const BrandManageDelBrand = "BrandManage_delBrand"; // 删除
+export const BrandManageUpdateBrandStatus = "BrandManage_updateBrandStatus"; // 启用/禁用
+export const BrandManageAddBrand = "BrandManage_addBrand"; // 新增
+export const BrandManageGetBrandInfoById = "BrandManage_getBrandInfoById"; // 详情
+export const BrandManageEditBrand = "BrandManage_editBrand"; // 编辑
+// 计量单位
+export const UnitSet = "goodsManage_UnitSet"; // 计量单位
+export const UnitSetGetAll = "UnitSet_getAll"; // 列表
+export const UnitSetDel = "UnitSet_del"; // 删除
+export const UnitSetAdd = "UnitSet_add"; // 新增
+export const UnitSetUpdateEnablesStatus = "UnitSet_updateEnablesStatus"; // 启用/禁用
+export const UnitSetEdit = "UnitSet_edit"; // 编辑
+// 属性管理
+export const specManage = "goodsManage_specManage"; // 属性管理
+export const specManageGetAll = "specManage_getAll"; // 列表
+export const specManageAdd = "specManage_add"; // 新增
+export const specManageEdit = "specManage_edit"; // 编辑
+export const specManageDel = "specManage_del"; // 删除
+// 订单
+export const newOrderList = "newOrderList"; // 新订单列表
+export const newOrderListGetAllOrder = "newOrderList_getAllOrder"; // 列表
+export const newOrderListAddOrder = "newOrderList_add"; // 新的新增
+export const newOrderListEdit = "newOrderList_edit"; // 编辑
+export const newOrderLitSearch = "newOrderList_search"; // 搜索
+export const newOrderLitUpdateAuditStatus = "newOrderList_updateAuditStatus"; // 审核
+export const newOrderLitGetOrderInfoById = "newOrderList_getOrderInfoById"; // 详情
+// 取消订单
+export const CancelOrder = "cancelOrder"; // 取消订单
+export const CancelOrderGetAllOrde = "cancelOrder_getAllOrder"; // 列表
+export const CancelOrderGetOrderInfoById = "cancelOrder_getOrderInfoById"; // 详情
+export const CancelOrderSearch = "cancelOrder_search"; // 搜索
+// 订单汇总
+export const OrderStatistics = "orderManage_OrderStatistics"; // 订单汇总
+export const OrderStatisticsGetAllOrderData = "OrderStatistics_getAllOrderData"; // 订单汇总
+// 代客下单
+export const OrderAdd = "orderManage_OrderAdd"; // 创建订单
+export const OrderAddAddOrder = "OrderAdd_add"; // 新增
+export const OrderAddeditGoodsPrice = "OrderAdd_editGoodsPrice"; // 修改商品价格
+// 订单查询
+export const orderQuery = "orderManage_orderQuery"; // 订单查询
+export const orderQueryAddOrder = "orderQuery_add"; // 新增
+export const orderQueryGetAllOrder = "orderQuery_getAllOrder"; // 列表
+export const orderQuerySearch = "orderQuery_search"; // 搜索
+export const orderQueryDelOrder = "orderQuery_delOrder"; // 删除
+export const orderQueryUpdateAuditStatus = "orderQuery_updateAuditStatus"; // 审核
+export const orderQueryUpdateOrderStatus = "orderQuery_updateOrderStatus"; // 取消订单
+export const orderQueryUpdateOrderPayData = "orderQuery_updateOrderPayData"; // 确认收款
+// 退货单
+export const ReturnWarehousingOrder = "orderManage_ReturnWarehousingOrder"; // 退货单
+export const ReturnWarehousingOrderGetAllOrderReturn =
+  "ReturnWarehousingOrder_getAllOrderReturn"; // 列表/导出
+export const ReturnWarehousingOrderUpdateOrderReturn =
+  "ReturnWarehousingOrder_updateOrderReturn"; // 编辑
+export const ReturnWarehousingOrderDeleteOrderReturn =
+  "ReturnWarehousingOrder_deleteOrderReturn"; // 删除
+export const ReturnWarehousingOrderAuditOrderReturn =
+  "ReturnWarehousingOrder_auditOrderReturn"; // 审核
+export const ReturnWarehousingOrderAddOrderReturn =
+  "ReturnWarehousingOrder_addOrderReturn"; // 添加
+export const ReturnWarehousingOrderGetOrderReturn =
+  "ReturnWarehousingOrder_getOrderReturn"; // 详情
+export const ReturnWarehousingOrderSearchAllOrderReturn =
+  "ReturnWarehousingOrder_searchAllOrderReturn"; // 搜索
+// 自提订单
+export const selfOrder = "orderManage_selfOrder"; // 自提订单
+// 创建销售单
+export const addSaleOrder = "addSaleOrder"; // 创建销售单
+
+// 销售单列表
+export const saleOrderList = "saleOrderList"; // 销售单列表
+export const saleOrderListGetAllOrder = "saleOrderList_getAllOrder"; // 列表
+export const saleOrderListAddSalesOrder = "saleOrderList_addSalesOrder"; // 新增
+export const saleOrderListSearch = "saleOrderList_search"; // 搜索
+export const saleOrderListGetOrderInfoById = "saleOrderList_getOrderInfoById"; // 详情
+
+// 客户
+export const CustomerList = "customerManage_CustomerList"; // 客户
+export const CustomerListAddCustomer = "CustomerList_addCustomer"; // 新增
+export const CustomerListGetCustomerInfo = "CustomerList_getCustomerInfo"; // 详情
+export const CustomerListEditCustomer = "CustomerList_editCustomer"; // 编辑
+export const CustomerListDelCustomer = "CustomerList_delCustomer"; // 删除
+export const CustomerListUpdateCustomerStatus =
+  "CustomerList_updateCustomerStatus"; // 禁用
+export const CustomerListUpdateCustomerCheckStatus =
+  "CustomerList_updateCustomerCheckStatus"; // 审核
+export const CustomerListGetAllCustomer = "CustomerList_getAllCustomer"; // 列表
+export const CustomerListAddCustomerTag = "CustomerList_addCustomerTag"; // 添加标签
+export const CustomerListDelCustomerTag = "CustomerList_delCustomerTag"; // 删除标签
+export const CustomerListSearch = "CustomerList_search"; // 搜索
+export const CustomerListExport = "CustomerList_export"; // 导出
+export const CustomerListIntegralDetail = "CustomerList_IntegralDetail"; // 积分明细
+export const CustomerListSaldoDetail = "CustomerList_SaldoDetail"; // 余额明细
+export const CustomerListvisitedLogs = "CustomerList_visitedLogs"; // 跟进记录
+export const CustomerListupdateBalance = "CustomerList_updateBalance"; // 修改余额
+export const CustomerListupdateIntegral = "CustomerList_updateIntegral"; // 修改积分
+
+// 标签管理
+export const LabelManagement = "customerManage_LabelManagement"; // 标签管理
+export const LabelManagementaddTabs = "LabelManagement_addTabs"; // 创建标签组
+export const LabelManagementeditTags = "LabelManagement_editTags"; // 编辑标签组
+export const LabelManagementdeleteTags = "LabelManagement_deleteTags"; // 删除
+
+// 客户行为
+
+export const CustomerBehaviorBrowsingHistory =
+  "CustomerBehavior_BrowsingHistory"; // 浏览记录
+export const CustomerBehaviorPurchaseHistory =
+  "CustomerBehavior_PurchaseHistory"; // 购买记录
+export const CustomerBehaviorDemandReporting =
+  "CustomerBehavior_DemandReporting"; // 需求提报
+
+//客户报表
+export const CustomerStatementsAnomalyAnalysisTable =
+  "CustomerStatements_AnomalyAnalysisTable"; // 异常客户分析表
+export const CustomerStatementsPullNewStatistics =
+  "CustomerStatements_PullNewStatistics"; // 拉新统计
+export const CustomerStatementsVisitRepor = "CustomerStatements_VisitRepor"; // 拜访报表
+export const CustomerStatementsCustomerDistribution =
+  "CustomerStatements_CustomerDistribution"; // 客户分布图
+
+// 客户类型
+export const CustomerType = "customerManage_CustomerType"; // 客户类型
+export const CustomerTypeAddCustomerSource = "CustomerType_addCustomerSource"; // 新增
+export const CustomerTypeGetCustomerSourceInfo =
+  "CustomerType_getCustomerSourceInfo"; // 详情
+export const CustomerTypeEditCustomerSource = "CustomerType_editCustomerSource"; // 编辑
+export const CustomerTypeDelCustomerSource = "CustomerType_delCustomerSource"; // 删除
+export const CustomerTypeGetAllCustomerSource =
+  "CustomerType_getAllCustomerSource"; // 列表
+export const CustomerTypeUpdateCustomerSourceStatus =
+  "CustomerType_updateCustomerSourceStatus"; // 禁用
+export const CustomerTypeUpdateDefaultStatus =
+  "CustomerType_updateDefaultStatuss"; // 设置默认
+// 客户查询
+export const CustomerQuery = "CustomerQuery"; // 客户查询
+export const CustomerQueryQuery = "CustomerQuery_query"; // 列表
+// 客户分群
+export const CustomerClustering = "CustomerClustering"; // 客户分群
+// 客户已审核
+export const FinishCheck = "FinishCheck"; // 已审核
+export const FinishCheckGetAllCustomer = "FinishCheck_getAllCustomer"; // 查看
+export const FinishCheckSearch = "FinishCheck_search"; // 搜索
+// 客户未审核
+export const NotCheck = "customerCheck_NotCheck"; // 未审核
+export const NotCheckGetAllCustomer = "NotCheck_getAllCustomer"; // 查看
+export const NotCheckSearch = "NotCheck_search"; // 搜索
+// 待完善资料
+export const getAuditAllCustomer = "customerCheck_getAuditAllCustomer"; // 待完善资料
+// 商城设置
+export const mallManage = "basicSetting_mallManage"; // 商城设置
+export const mallManagepaySetting = "paySetting"; // 交易设置
+export const mallManageGoodsSet = "GoodsSet"; // 商品设置
+export const mallManageCustomerSet = "CustomerSet"; // 客户设置
+export const mallManagePrinterSet = "PrinterSet"; // 打印机设置
+
+// 小程序设置
+export const WxCodeSet = "mall_WxCodeSet"; // 小程序设置
+export const WxCodeSetGetSystemSettingsInfo = "WxCodeSet_getSystemSettingsInfo"; // 详情
+export const WxCodeSetUpdateSystemSettings = "WxCodeSet_updateSystemSettings"; // 提交
+// 模板设置
+export const TemplateSet = "TemplateSet"; // 模板设置
+export const TemplateSetGetAllTemplate = "TemplateSet_getAllTemplate"; // 列表
+export const TemplateSetBindTemplate = "TemplateSet_bindTemplate"; // 启用模板
+// 登录日志
+export const LoginRecord = "organizeSet_LoginRecord"; // 登录日志
+export const LoginRecordSearch = "LoginRecord_search"; // 查看
+// 商品服务
+export const GoodsEmprego = "goodsManage_GoodsEmprego"; // 查看
+export const GoodsEmpregoaddGoodsEmprego = "GoodsEmprego_addGoodsEmprego"; // 添加商品服务
+export const GoodsEmpregoeditGoodsEmprego = "GoodsEmprego_editGoodsEmprego"; // 编辑
+export const GoodsEmpregodeleteGoodsEmprego = "GoodsEmprego_deleteGoodsEmprego"; // 删除
+// 商品分组
+export const GoodsGrouping = "goodsManage_GoodsGrouping";
+export const GoodsGroupingAddGoodsGrouping = "GoodsGrouping_addGoodsGrouping"; //添加
+export const GoodsGroupingEditGoodsGrouping = "GoodsGrouping_editGoodsGrouping"; //编辑
+export const GoodsGroupingDelGoodsGrouping = "GoodsGrouping_delGoodsGrouping"; //删除
+export const GoodsGroupingUpdateGoodsGrouping =
+  "GoodsGrouping_updateGoodsGrouping"; //启用/禁用
+// 商品列表
+export const PublishGoods = "goodsManage_PublishGoods"; // 商品列表
+export const PublishGoodsGetAllGoods = "PublishGoods_getAllGoods"; // 列表
+export const PublishGoodsAddGoods = "PublishGoods_addGoods"; // 新增
+export const PublishGoodsEditGoods = "PublishGoods_editGoods"; // 编辑
+export const PublishGoodsGetGoodsInfo = "PublishGoods_getGoodsInfo"; // 查看详情
+export const PublishGoodsDelGoods = "PublishGoods_delGoods"; // 删除
+export const PublishGoodsUpdateEnableStatus = "PublishGoods_updateEnableStatus"; // 上架/下架
+export const PublishGoodsSearch = "PublishGoods_search"; // 搜索
+// 商品列表(单店铺)
+export const PublishGoodsAddBasicAndPublishGoods =
+  "PublishGoods_addBasicAndPublishGoods"; // 新增(单店铺)
+export const PublishGoodsGetQuickGoodsInfo = "PublishGoods_getQuickGoodsInfo"; // 详情(单店铺)
+export const PublishGoodsEditQuickGoods = "PublishGoods_editQuickGoods"; // 编辑(单店铺)
+
+//--------
+export const PublishGoodsgetGoodsByBarCode = "PublishGoods_getGoodsByBarCode"; // 扫条码查询商品
+export const PublishGoodssetSalesNum = "PublishGoods_setSalesNum"; // 设置虚拟销量
+export const PublishGoodssetTop = "PublishGoods_setTop"; // 商品置顶
+export const PublishGoodssetSalesNumBatch = "PublishGoods_setSalesNumBatch"; // 设置虚拟销量(批量)
+export const PublishGoodsbatchGoodsExpress = "PublishGoods_batchGoodsExpress"; // 设置物流(批量)
+
+// 价格管理
+export const PriceTable = "goodsPrice_PriceTable"; // 价格管理
+export const PriceTableGetAllGoodsPrice = "PriceTable_getAllGoodsPrice"; // 价格管理
+export const PriceTableSearch = "PriceTable_search"; // 价格搜索
+// 商品调价
+export const AdjustPrice = "goodsPrice_AdjustPrice"; // 商品调价
+export const AdjustPriceAdd = "AdjustPrice_add"; // 新增
+export const AdjustPriceGetAll = "AdjustPrice_getAll"; // 列表
+export const AdjustPriceEffective = "AdjustPrice_effective"; // 生效
+// 客户调价
+export const CostumeAdjustPrice = "goodsPrice_CostumeAdjustPrice"; // 客户调价
+export const CostumeAdjustPriceAdd = "CostumeAdjustPrice_add"; // 新增
+export const CostumeAdjustPriceGetAll = "CostumeAdjustPrice_getAll"; // 列表
+export const CostumeAdjustPriceEffective = "CostumeAdjustPrice_effective"; // 生效
+// 客户类型调价
+export const CustomerTypeAdj = "goodsPrice_customerTypeAdj"; // 客户类型调价
+export const CustomerTypeAdjGetAll = "customerTypeAdj_getAll"; // 列表
+export const CustomerTypeAdjEffective = "customerTypeAdj_effective"; // 生效
+export const CustomerTypeAdjAdd = "customerTypeAdj_add"; // 新增
+// 供应商管理
+export const Supplier = "SupplyManageGroup_Supplier"; // 生效
+export const SupplierAddSupplier = "Supplier_addSupplier"; // 新增
+export const SupplierGetAllSupplier = "Supplier_getAllSupplier"; // 列表
+export const SupplierDelSupplier = "Supplier_delSupplier"; // 删除
+export const SupplierEditSupplier = "Supplier_editSupplier"; // 编辑
+export const SupplierUpdateEnableStatus = "Supplier_updateEnableStatus"; // 启用/禁用
+export const SupplierGetSupplierInfoById = "Supplier_getSupplierInfoById"; // 详情
+// 采购单
+export const PurchaseOrder = "SupplyManageGroup_PurchaseOrder"; // 采购单
+export const PurchaseOrderGetAllPurchase = "PurchaseOrder_getAllPurchase"; // 列表
+export const PurchaseOrderAddPurchase = "PurchaseOrder_addPurchase"; // 新增
+export const PurchaseOrderGetPurchaseInfoById =
+  "PurchaseOrder_getPurchaseInfoById"; // 详情
+export const PurchaseOrderUpdateAuditStatus = "PurchaseOrder_updateAuditStatus"; // 审核
+export const PurchaseOrderDelPurchase = "PurchaseOrder_delPurchase"; // 删除
+export const PurchaseOrderEditPurchase = "PurchaseOrder_editPurchase"; // 编辑
+// 采购汇总
+export const PurchaseStatistics = "SupplyManageGroup_PurchaseStatistics"; // 采购汇总
+export const PurchaseStatisticsGetAllPurchaseByFields =
+  "PurchaseStatistics_getAllPurchaseByFields"; // 采购汇总
+export const GetSupplierAllPurchaseByFields =
+  "PurchaseStatistics_getSupplierAllPurchaseByFields"; // 供应商汇总表
+export const GetStaffAllPurchaseByFields =
+  "PurchaseStatistics_getStaffAllPurchaseByFields"; // 人员汇总表
+// 采购退货单
+export const PurchaseReturnOrder = "SupplyManageGroup_PurchaseReturnOrder"; // 采购退货单
+export const PurchaseReturnOrderAddPurchaseOut =
+  "PurchaseReturnOrder_addPurchaseOut"; // 新增
+export const PurchaseReturnOrderGetAllPurchaseOut =
+  "PurchaseReturnOrder_getAllPurchaseOut"; // 列表
+export const PurchaseReturnOrderDelPurchaseOut =
+  "PurchaseReturnOrder_delPurchaseOut"; // 删除
+export const PurchaseReturnOrderGetPurchaseOutInfoById =
+  "PurchaseReturnOrder_getPurchaseOutInfoById"; // 详情
+export const PurchaseReturnOrderUpdateAuditStatus =
+  "PurchaseReturnOrder_updateAuditStatus"; // 审核
+export const PurchaseReturnOrderEditPurchase =
+  "PurchaseReturnOrder_editPurchase"; // 编辑
+// 采购明细
+export const PurchaseDetail = "SupplyManageGroup_PurchaseDetail"; // 采购明细
+export const PurchaseDetailSearchAllPurchaseDetails =
+  "PurchaseDetail_searchAllPurchaseDetails"; // 采购明细
+export const PurchaseDetailGetAllPurchaseDetails =
+  "PurchaseDetail_getAllPurchaseDetails"; // 导出
+export const PurchaseDetailGetAllData = "PurchaseDetail_getAllData"; // 统计
+
+// 缺货单
+export const Stockout = "SupplyManageGroup_Stockout"; // 缺货单
+
+// 出库管理
+export const InventoryOut = "stockOutManage_InventoryOut"; // 出库管理
+export const InventoryOutGetAllInventoryOut = "InventoryOut_getAllInventoryOut"; // 列表
+export const InventoryOutGetInventoryOutInfo =
+  "InventoryOut_getInventoryOutInfo"; // 详情
+export const InventoryOutUpdateInventoryOutStatus =
+  "InventoryOut_updateInventoryOutStatus"; // 审核
+export const InventoryOutSearchAllInventoryOut =
+  "InventoryOut_searchAllInventoryOut"; // 搜索
+export const InventoryOutStatisticsAllInventoryOut =
+  "InventoryOut_statisticsAllInventoryOut"; // 统计
+// 入库管理
+export const InventoryIn = "stockOutManage_InventoryIn"; // 入库管理
+export const InventoryInGetInventoryInInfo = "InventoryIn_getInventoryInInfo"; // 详情
+export const InventoryInGetAllInventoryIn = "InventoryIn_getAllInventoryIn"; // 列表
+export const InventoryInUpdateInventoryInStatus =
+  "InventoryIn_updateInventoryInStatus"; // 审核
+export const InventoryInStatisticsAllInventoryIn =
+  "InventoryIn_statisticsAllInventoryIn"; // 统计
+export const InventoryInSearchAllInventoryIn =
+  "InventoryIn_searchAllInventoryIn"; // 搜索
+// 库存查询
+export const query = "kucunManage_query"; // 库存查询
+export const queryGetInventoryAll = "query_getInventoryAll"; // 列表
+export const queryGetInventoryByWarehouseId = "query_getInventoryByWarehouseId"; // 仓库下的库存列表
+// 库存流水
+export const flowing = "kucunManage_flowing"; // 库存流水
+export const flowingGetInventoryDetailsAll = "flowing_getInventoryDetailsAll"; // 列表
+export const flowingSearchAllInventoryDetails =
+  "flowing_searchAllInventoryDetails"; // 搜索
+// 仓库管理
+export const management = "warehouseManageGroup_management"; // 仓库管理
+export const managementGetWarehouseInfo = "management_getWarehouseInfo"; // 详情
+export const managementEnableWarehouse = "management_enableWarehouse"; // 启用
+export const managementUpdateWarehouse = "management_updateWarehouse"; // 修改
+export const managementDeleteWarehouse = "management_deleteWarehouse"; // 删除
+export const managementAddWarehouse = "management_addWarehouse"; // 添加
+export const managementAddWarehouseBeginning =
+  "management_addWarehouseBeginning"; // 期初
+//库区管理
+export const WarehouseArea = "warehouseManageGroup_WarehouseArea";
+export const WarehouseAreaAddWarehouseArea = "WarehouseArea_addWarehouseArea"; //新增
+export const WarehouseAreaEditWarehouseArea = "WarehouseArea_editWarehouseArea"; //编辑
+export const WarehouseAreaAuditWarehouseArea =
+  "WarehouseArea_auditWarehouseArea"; //审核状态
+export const WarehouseAreaDeleteWarehouseArea =
+  "WarehouseArea_deleteWarehouseArea"; //删除
+
+//库位管理
+export const LocationManagement = "warehouseManageGroup_LocationManagement";
+export const warehouseManageGroupAddLocationManagement =
+  "warehouseManageGroup_addLocationManagement"; //新增
+export const warehouseManageGroupEditLocationManagement =
+  "warehouseManageGroup_editLocationManagement"; //编辑
+export const warehouseManageGroupAuditLocationManagement =
+  "warehouseManageGroup_auditLocationManagement"; //审核状态
+
+//报损单
+export const LossReport = "warehouseManageGroup_LossReport";
+export const LossReportAddLossReport = "LossReport_addLossReport"; //新增
+export const LossReportAuditLossReport = "LossReport_auditLossReport"; //审核
+export const LossReportDeleteLossReport = "LossReport_deleteLossReport"; //删除
+export const LossReportEditLossReport = "LossReport_editLossReport"; //编辑
+export const LossReportDetailLossReport = "LossReport_detailLossReport"; //详情
+
+// 金额查看
+export const moneyshow = "stock_moneyshow";
+export const moneyshowinventoryStatisticsMoney =
+  "moneyshow_inventoryStatisticsMoney"; // 库存汇总金额
+export const moneyshowstockInMoenyShow = "moneyshow_stockInMoenyShow"; // 入库金额
+export const moneyshowstockOutMoneyShow = "moneyshow_stockOutMoneyShow"; // 出库金额
+export const moneyshowcostPriceShow = "moneyshow_costPriceShow"; // 成本金额
+// 批次流水
+export const Batch = "kucunManage_Batch"; // 批次流水
+export const BatchGetInventoryDetailsAll = "Batch_getInventoryDetailsAll"; // 批次流水
+// 保质期查询
+export const GetBatch = "kucunManage_getBatch"; // 保质期查询
+export const GetBatchGetAllBatch = "getBatch_getAllBatch"; // 保质期查询
+export const GetBatchSearchAllInventoryBatch =
+  "getBatch_searchAllInventoryBatch"; // 保质期搜索
+// 库存汇总
+export const inventoryStatistics = "kucunManage_inventoryStatistics"; // 库存汇总
+export const inventoryStatisticsList =
+  "inventoryStatistics_inventoryStatistics"; // 库存汇总汇列表
+export const inventoryStatisticsSearchInventoryStatistics =
+  "inventoryStatistics_searchInventoryStatistics"; // 库存汇总搜索
+
+// 盘点单
+export const inventoryInfo = "warehouseManageGroup_inventoryInfo"; // 盘点单
+export const inventoryInfoGetStocktakingInfo =
+  "inventoryInfo_getStocktakingInfo"; // 详情
+export const inventoryInfoUpdateStocktaking = "inventoryInfo_updateStocktaking"; // 修改
+export const inventoryInfoAuditStocktaking = "inventoryInfo_auditStocktaking"; // 审核
+export const inventoryInfoGetAllStocktaking = "inventoryInfo_getAllStocktaking"; // 列表
+export const inventoryInfoAddStocktaking = "inventoryInfo_addStocktaking"; // 添加
+export const inventoryInfoSearchAllStocktaking =
+  "inventoryInfo_searchAllStocktaking"; // 搜索
+
+// 调拨单
+export const AllocationForm = "warehouseManageGroup_AllocationForm"; // 调拨单
+export const AllocationFormAddAllocate = "AllocationForm_addAllocate"; // 添加
+export const AllocationFormAuditAllocate = "AllocationForm_auditAllocate"; // 审核
+export const AllocationFormDeleteAllocate = "AllocationForm_deleteAllocate"; // 删除
+export const AllocationFormGetAllocateInfo = "AllocationForm_getAllocateInfo"; // 详情
+export const AllocationFormUpdateAllocate = "AllocationForm_updateAllocate"; // 修改
+export const AllocationFormGetAllAllocate = "AllocationForm_getAllAllocate"; // 列表
+export const AllocationFormSearchAllocate = "AllocationForm_searchAllocate"; // 搜索
+
+// 商铺列表
+export const ShopList = "system_ShopList"; // 商铺列表
+export const ShopListAddShop = "ShopList_addShop"; // 新增
+export const ShopListGetShopInfo = "ShopList_getShopInfo"; // 查看
+export const ShopListEditShop = "ShopList_editShop"; // 编辑
+export const ShopListDelShop = "ShopList_delShop"; // 删除
+export const ShopListGetAllShop = "ShopList_getAllShop"; // 列表
+export const ShopListSearch = "ShopList_search"; // 搜索
+export const ShopListChangeManagerForShop = "ShopList_changeManagerForShop"; // 更换负责人
+export const ShopListUpdateShopStatus = "ShopList_updateShopStatus"; // 启用禁用
+// 合伙管理
+export const Partnership = "Partnership"; // 合伙管理
+export const PartnershipAddShopPartner = "Partnership_addShopPartner"; // 新增
+export const PartnershipGetShopPartnerInfo = "Partnership_getShopPartnerInfo"; // 详情
+export const PartnershipUpdateShopPartner = "Partnership_updateShopPartner"; // 编辑
+export const PartnershipGetAllShopPartner = "Partnership_getAllShopPartner"; // 列表
+export const PartnershipDeleteShopPartner = "Partnership_deleteShopPartner"; // 删除
+export const PartnershipEnableShopPartner = "Partnership_enableShopPartner"; // 启用/禁用
+export const PartnershipSearch = "Partnership_search"; // 搜索
+// 支付方式
+export const PayList = "system_PayList"; // 支付方式
+export const PayListEditPayment = "PayList_editPayment"; // 编辑
+export const PayListGetAllPayment = "PayList_getAllPayment"; // 列表
+export const PayListUpdateEnableStatus = "PayList_updateEnableStatus"; // 禁用
+export const PayListUpdateDefaultStatus = "PayList_updateDefaultStatus"; // 默认/非默认
+export const PayListGetPaymentInfoById = "PayList_getPaymentInfoById"; // 详情
+
+// 配送设置
+export const Deliverys = "system_Delivery"; // 配送设置
+export const DeliverySet = "Delivery_DeliverySet"; // 配送配置
+export const DeliverySetgetAllDelivery = "DeliverySet_getAllDelivery"; // 列表
+export const DeliverygetInfo = "DeliverySet_getInfo"; // 详情
+export const DeliverygetRuleInfo = "DeliverySet_getRuleInfo"; // 运费模版详情
+export const DeliverysetData = "DeliverySet_setData"; // 设置运费模版
+export const DeliverydelDeliveryRule = "DeliverySet_delDeliveryRule"; // 删除运费模版
+export const DeliverySetupdateEnableStatus = "DeliverySet_updateEnableStatus"; // 启用/禁用
+export const DeliverySetupdateDefaultStatus = "DeliverySet_updateDefaultStatus"; // 设置默认
+export const DeliverySetgetSelfRuleInfo = "DeliverySet_getSelfRuleInfo"; // 自提点详情
+export const DeliverySetsetSelfData = "DeliverySet_setSelfData"; // 新增自提点
+export const DeliverySeteditSelfData = "DeliverySet_editSelfData"; // 编辑自提点
+export const DeliverySetdelDeliverySelfRule = "DeliverySet_delDeliverySelfRule"; // 删除自提点
+
+//物流接口
+export const Logistics = "Delivery_Logistics"; // 物流接口
+export const LogisticsgetBasicSetup = "Logistics_getBasicSetup"; // 物流接口
+export const Logisticssetting = "Logistics_setting"; // 配置
+
+// 部门管理
+export const Department = "organizeSet_Department"; // 部门管理
+export const DepartmentAddDepartment = "Department_addDepartment"; // 添加
+export const DepartmentDeleteDepartment = "Department_deleteDepartment"; // 删除
+export const DepartmentUpdateDepartment = "Department_updateDepartment"; // 修改
+export const DepartmentGetAllDepartment = "Department_getAllDepartment"; // 列表
+export const DepartmentGetDepartmentInfo = "Department_getDepartmentInfo"; // 详情
+// 员工管理
+export const Staff = "organizeSet_Staff"; // 员工管理
+export const StaffAddStaff = "Staff_addStaff"; // 添加
+export const StaffDeleteStaff = "Staff_deleteStaff"; // 删除
+export const StaffUpdateStaff = "Staff_updateStaff"; // 修改
+export const StaffGetAllStaff = "Staff_getAllStaff"; // 列表
+export const StaffGetStaffInfo = "Staff_getStaffInfo"; // 详情
+export const StaffUpdatePassword = "Staff_updatePassword"; // 修改密码
+// 角色管理
+export const Role = "organizeSet_Role"; // 角色管理
+export const RoleGetAllRole = "Role_getAllRole"; // 列表
+export const RoleGetRoleInfo = "Role_getRoleInfo"; // 详情
+export const RoleUpdateRole = "Role_updateRole"; // 修改
+export const RoleDeleteRole = "Role_deleteRole"; // 删除
+export const RoleAddRole = "Role_addRole"; // 添加
+
+// 优惠券
+export const CouponList = "coupon_CouponList"; // 优惠券啊u按
+export const CouponListGetAll = "CouponList_getAll"; // 列表
+export const CouponListGetInfo = "CouponList_getInfo"; // 详情
+export const CouponListEdit = "CouponList_edit"; // 修改
+export const CouponListDel = "CouponList_del"; // 删除
+export const CouponListAdd = "CouponList_add"; // 添加
+export const CouponListSearch = "CouponList_search"; // 搜索
+export const CouponListUpdateAuditStatus = "CouponList_updateAuditStatus"; // 审核
+// 发放记录
+export const GrantLog = "coupon_GrantLog"; // 发放记录
+export const GrantLogGetAll = "GrantLog_getAll"; // 列表
+// 商品促销
+export const ActivityGoods = "activity_ActivityGoods"; // 商品促销
+export const ActivityGoodsAdd = "ActivityGoods_add"; // 新增
+export const ActivityGoodsGetInfo = "ActivityGoods_getInfo"; // 详情
+export const ActivityGoodsEdit = "ActivityGoods_edit"; // 修改
+export const ActivityGoodsUpdateAuditStatus = "ActivityGoods_updateAuditStatus"; // 审核
+export const ActivityGoodsDel = "ActivityGoods_del"; // 删除
+export const ActivityGoodsGetAll = "ActivityGoods_getAll"; // 列表
+export const ActivityGoodsSearch = "ActivityGoods_search"; // 搜索
+export const ActivityGoodsUpdateEnableStatus =
+  "ActivityGoods_updateEnableStatus"; // 上下架
+// 组合套餐
+export const Application_SetMeal = "Application_SetMeal"; // 组合套餐
+export const SetMeal_addGroupGoods = "SetMeal_addGroupGoods"; // 新增
+export const SetMeal_editGroupGoods = "SetMeal_editGroupGoods"; // 编辑
+// 多门店
+export const Application_Multistore = "Application_Multistore"; // 多门店
+export const Multistore_MultistoreList = "Multistore_MultistoreList"; // 门店管理
+export const MultistoreList_AddStore = "MultistoreList_AddStore"; // 创建店铺
+export const MultistoreList_shopGoodsManage = "MultistoreList_shopGoodsManage"; // 商品管理
+export const MultistoreList_editStore = "MultistoreList_editStore"; // 编辑
+export const MultistoreList_setMasterShop = "MultistoreList_setMasterShop"; // 设为总店
+export const MultistoreList_shopManager = "MultistoreList_shopManager"; // 门店店长
+export const MultistoreList_shopSystem = "MultistoreList_shopSystem"; // 门店后台
+export const Multistore_StoreSet = "Multistore_StoreSet"; // 功能设置
+//供应商管理端
+export const Application_supplierManage = "Multistore_supplierManage"; // 供应商管理端
+export const supplierManage_supplierSet = "supplierManage_supplierSet"; // 设置
+export const supplierManage_offerSet = "supplierManage_offerSet"; //报价单管理
+export const offerSet_auditSupplierOfferPrice =
+  "offerSet_auditSupplierOfferPrice"; //审核
+export const supplierManage_SupplierSettlement =
+  "supplierManage_SupplierSettlement"; //结算管理
+export const SupplierSettlement_SupplierWithdrawalUpStatus =
+  "SupplierSettlement_SupplierWithdrawalUpStatus"; //审核
+export const SupplierSettlement_SupplierWithdrawalRefulse =
+  "SupplierSettlement_SupplierWithdrawalRefulse"; //拒绝
+export const SupplierSettlement_SupplierWithdrawalCash =
+  "SupplierSettlement_SupplierWithdrawalCash"; //打款
+
+// 财务
+// 应收管理
+export const shouldReceiveManage = "shouldReceiveManage"; // 应收管理
+// 应收列表
+export const ReceivableList = "shouldReceiveManage_ReceivableList"; // 应收列表
+export const ReceivableListAddReceipt = "ReceivableList_AddReceipt"; //收款
+export const ReceivableListGetReceiveInfo = "ReceivableList_getReceiveInfo"; // 详情
+export const ReceivableListUpdateReceiveStatus =
+  "ReceivableList_updateReceiveStatus"; // 审核
+export const ReceivableListGetAllReceive = "ReceivableList_getAllReceive"; // 列表
+// 收款单列表
+export const ReceiptList = "ReceiptList"; // 收款单列表
+export const ReceiptListAddReceived = "ReceiptList_addReceived"; // 添加
+export const ReceiptListUpdateReceivedStatus =
+  "ReceiptList_updateReceivedStatus"; // 审核
+export const ReceiptListGetAllReceived = "ReceiptList_getAllReceived"; // 列表
+export const ReceiptListSearch = "ReceiptList_search"; // 搜索
+export const ReceiptListGetTempReceivedData = "ReceiptList_getTempReceivedData"; // 暂存
+export const ReceiptListGetReceivedInfo = "ReceiptList_getReceivedInfo"; // 详情
+// 客户余额
+export const CustomerBalance = "CustomerBalance"; // 客户余额
+export const CustomerBalanceGetAllCustomerBalance =
+  "CustomerBalance_getAllCustomerBalance"; // 列表
+//往来汇总表--余额流水
+export const CustomerBalanceSaldoDetail = "CustomerBalance_SaldoDetail";
+//往来汇总表--收款
+export const CustomerBalanceAddReceipt = "CustomerBalance_AddReceipt";
+
+// 余额明细
+export const CustomerBalanceDetail =
+  "shouldReceiveManage_CustomerBalanceDetail"; // 客户余额
+export const CustomerBalanceDetailGetAllCustomerBalanceDetail =
+  "CustomerBalanceDetail_getAllCustomerBalanceDetail"; // 列表
+// 应付列表
+export const HandleList = "HandleList_getAllPay"; // 应付列表
+export const HandleListGetPayInfo = "HandleList_getPayInfo"; // 详情
+export const HandleListUpdatePayStatus = "HandleList_updatePayStatus"; // 审核
+export const HandleListGetAllPay = "HandleList_getAllPay"; // 列表
+export const HandleListSearch = "HandleList_search"; // 搜索
+// 付款单列表
+export const PaymentList = "shouldPayManage_PaymentList"; // 付款单列表
+export const PaymentListAddPaid = "PaymentList_addPaid"; // 添加
+export const PaymentListUpdatePaidStatus = "PaymentList_updatePaidStatus"; // 审核
+export const PaymentListGetAllPaid = "PaymentList_getAllPaid"; // 列表
+export const PaymentListSearch = "PaymentList_search"; // 搜索
+export const PaymentListGetTempPaidData = "PaymentList_getTempPaidData"; // 暂存
+export const PaymentListGetPaidInfo = "PaymentList_getPaidInfo"; // 详情
+// 供应商余额表
+export const SupplierBalance = "shouldPayManage_SupplierBalance"; // 供应商余额表
+export const CustomerBalanceGetAllSupplierBalance =
+  "SupplierBalance_getAllSupplierBalance"; // 列表
+// 供应商明细
+export const SupplierBalanceDetails = "shouldPayManage_SupplierBalance"; // 客户余额
+export const SupplierBalanceDetailsGetAllSupplierBalanceDetail =
+  "SupplierBalanceDetails_getAllSupplierBalanceDetail"; // 列表
+
+// 资金转账单
+export const FunTransfer = "cashierManagement_FunTransfer"; // 资金转账单
+export const FunTransferAddAccountTransfer = "FunTransfer_addAccountTransfer"; // 添加
+export const FunTransferUpdateAccountTransferStatus =
+  "FunTransfer_updateAccountTransferStatus"; // 审核
+export const FunTransferGetAllAccountTransfer =
+  "FunTransfer_getAllAccountTransfer"; // 搜索 列表
+export const FunTransferGetTempAccountTransferData =
+  "FunTransfer_getTempAccountTransferData"; // 暂存
+export const FunTransferGetAccountTransferInfo =
+  "FunTransfer_getAccountTransferInfo"; // 详情
+export const AccountListEditAccountTransfer = "AccountList_editAccountTransfer"; // 编辑
+
+// 账户管理
+export const AccountList = "cashierManagement_AccountList"; // 账户管理
+export const AccountListAddAccount = "AccountList_addAccount"; // 添加
+export const AccountListEditAccount = "AccountList_editAccount"; // 编辑
+export const AccountListGetAllAccount = "AccountList_getAllAccount"; // 列表
+export const AccountListDelAccount = "AccountList_delAccount"; // 删除
+export const AccountListUpdateAccountStatus = "AccountList_updateAccountStatus"; // 启用/禁用
+export const AccountListGetAccountInfo = "AccountList_getAccountInfo"; // 详情
+// 账户明细查询
+export const AccountDetails = "cashierManagement_AccountDetails"; // 账户明细查询
+export const AccountDetailsGetAllAccountDetail =
+  "AccountDetails_getAllAccountDetail"; // 添加
+
+// 财务类型
+export const FinanceType = "finance_financialManagement"; // 账户管理
+export const FinanceTypeAddFinanceType = "FinanceType_addFinanceType"; // 添加
+export const FinanceTypeEditFinanceType = "FinanceType_editFinanceType"; // 编辑
+export const FinanceTypeGetAllFinanceType = "FinanceType_getAllFinanceType"; // 列表
+export const FinanceTypeDelFinanceType = "FinanceType_delFinanceType"; // 删除
+export const FinanceTypeUpdateFinanceTypeStatus =
+  "FinanceType_updateFinanceTypeStatus"; // 启用/禁用
+export const FinanceTypeGetFinanceTypeInfo = "FinanceType_getFinanceTypeInfo"; // 详情
+export const FinanceTypeUpdateFinanceTypeDefaultStatus =
+  "FinanceType_updateFinanceTypeDefaultStatus"; // 默认
+
+// 会员卡
+export const MembershipCard = "vip_membershipCard"; // 会员卡
+export const MembershipCardAddVipCard = "membershipCard_addVipCard"; // 添加
+export const MembershipCardEditVipCard = "membershipCard_editVipCard"; // 编辑
+export const MembershipCardGetVipCardInfo = "membershipCard_getVipCardInfo"; // 详情
+export const MembershipCardUpdateVipCardStatus =
+  "membershipCard_updateVipCardStatus"; // 启用禁用
+// 领取记录
+export const CollectionRecords = "vip_CollectionRecords";
+export const CollectionRecordsReceiveRecord = "CollectionRecords_receiveRecord"; // 添加
+
+// 页面设计
+export const PageSet = "shopStyle_pageSet"; // 页面设计
+export const PageSetGetAll = "pageSet_getAll"; // 列表
+export const PageSetSave = "pageSet_save"; // 添加/编辑
+export const PageSetUpdateEnableStatus = "pageSet_updateEnableStatus"; // 启用/停用
+export const PageSetDel = "pageSet_del"; // 删除
+export const PageSetGetPageInfo = "pageSet_getPageInfo"; // 详情
+
+// 风格设置
+export const StyleSet = "shopStyle_styleSet"; // 风格设置
+export const StyleSetSetting = "styleSet_setting"; // 添加
+// 分类模版
+export const CategorySet = "shopStyle_categorySet"; // 分类模版
+export const CategorySetSetClassSetting = "categorySet_setClassSetting"; // 添加
+export const CategorySetGetClassSettingInfo = "categorySet_getClassSettingInfo"; // 详情
+// 启动页
+export const StartPage = "shopStyle_startPage"; // 启动页
+export const StartPageSetting = "startPage_setting"; // 保存
+// 公告管理
+export const Announcement = "mall_Announcement"; // 公告管理
+export const AnnouncementAddAnnouncement = "Announcement_addAnnouncement"; // 添加
+export const AnnouncementDelAnnouncement = "Announcement_delAnnouncement"; // 删除
+export const AnnouncementEditAnnouncement = "Announcement_editAnnouncement"; // 公告编辑
+export const AnnouncementOnAnnouncement = "Announcement_onAnnouncement"; // 公告启用/禁用
+export const AnnouncementGetAllAnnouncement = "Announcement_getAllAnnouncement"; // 公告列表
+export const AnnouncementGetAnnouncementInfo =
+  "Announcement_getAnnouncementInfo"; // 公告详情
+
+// 流程设置
+export const StepSet = "system_StepSet"; // 流程设置
+export const StepSetGetAll = "StepSet_getAll"; // 列表
+export const StepSetSet = "StepSet_set"; // 配置
+
+// 语音配置
+export const voiceSet = "system_voiceSet"; // 语音配置
+export const voiceSetGet = "voiceSet_get"; // 详情
+export const voiceSetSet = "voiceSet_set"; // 配置
+
+//应用
+export const Application = "Application"; // 应
+//日清对账
+export const getTodayStatistics = "Application_getTodayStatistics";
+export const getTodayStatistics_statisticsGetAllOrderData =
+  "getTodayStatistics_statisticsGetAllOrderData"; //销售日对账
+
+export const getTodayStatistics_statisticsInventoryStatistics =
+  "getTodayStatistics_statisticsInventoryStatistics"; //库存日对账
+
+export const getTodayStatistics_statisticsGetTodayStatistics =
+  "getTodayStatistics_statisticsGetTodayStatistics"; //财务日对账
+export const showSaleBillMoney = "amountShow_showSaleBillMoney"; // 钱货日清对账金额
+export const stockBillMoney = "amountShow_stockBillMoney"; //销售毛利总金额
+export const fianceBillMoney = "amountShow_fianceBillMoney"; //财务毛利总金额
+
+// 分销
+export const Distribution = "Application_Distribution"; // 分销
+export const DOverview = "Distribution_DOverview"; // 分销概况
+export const DOverviewstatisticsCommissionOne =
+  "DOverview_statisticsCommissionOne"; // 佣金概览
+export const DOverviewstatisticsCommissionTwo =
+  "DOverview_statisticsCommissionTwo"; // 分销商概览
+export const DOverviewstatisticsCommissionThree =
+  "DOverview_statisticsCommissionThree"; // 新增分销商数
+// 分销商品
+export const DGoodsList = "Distribution_DGoodsList"; // 分销商品列表
+export const DGoodsListGetAll = "DGoodsList_getAll"; // 列表
+export const DGoodsListGetInfo = "DGoodsList_getInfo"; // 详情
+export const DGoodsListsetCommission = "DGoodsList_setCommission"; // 设置佣金
+export const DGoodsListupdateIsJoin = "DGoodsList_updateIsJoin"; // 参与分销
+//分销订单
+export const DOrderList = "Distribution_DOrderList"; // 分销订单
+export const DOrderListgetAll = "DOrderList_getAll"; // 列表
+//分销商等级
+export const DistributionList = "Distribution_DistributionList";
+export const DistributionListgetAllGrade = "DistributionList_getAllGrade"; //列表
+export const DistributionListgetInfoGrade = "DistributionList_getInfoGrade"; //详情
+export const DistributionListupdateGrade = "DistributionList_updateGrade"; //设置
+export const DistributionListdelGrade = "DistributionList_delGrade"; //删除
+// 分销商管理
+export const Businessman = "Distribution_Businessman";
+export const BusinessmangetAllBusinessman = "Businessman_getAllBusinessman"; //列表
+export const BusinessmangetAuditBusinessman = "Businessman_auditBusinessman"; //审核
+export const BusinessmangetgetAllSub = "Businessman_getAllSub"; //查看下级
+export const BusinessmangetdelBusinessman = "Businessman_delBusinessman"; //删除
+//提现管理
+export const CashOut = "Distribution_CashOut";
+export const CashOutgetAll = "CashOut_getAll"; //列表
+export const CashOutupdateAuditStatus = "CashOut_updateAuditStatus"; //审核
+//分销商设置
+export const DistributionSet = "Distribution_DistributionSet";
+//基础设置
+export const BaseDSet = "DistributionSet_BaseDSet";
+export const BaseDSetgetSetting = "BaseDSet_getSetting"; //详情
+export const BaseDSetsaveSetting = "BaseDSet_saveSetting"; //设置
+
+//结算设置
+export const SettlementSet = "DistributionSet_BaseDSet";
+export const SettlementSetgetSetting = "SettlementSet_getSetting"; //详情
+export const SettlementSetsaveSetting = "SettlementSet_saveSetting"; //设置
+
+//文字设置
+export const TextSet = "DistributionSet_TextSet";
+export const TextSetgetTxtSetting = "TextSet_getTxtSetting"; //详情
+export const TextSetsaveTxtSetting = "TextSet_saveTxtSetting"; //设置
+
+//单据模版
+export const TemplateList = "Application_TemplateList";
+export const TemplateListgetAll = "TemplateList_getAll"; //列表
+export const TemplateListgetInfo = "TemplateList_getInfo"; //详情
+export const TemplateListsave = "TemplateList_save"; //保存
+
+// 收银台
+export const Cashier = "Application_Cashier";
+//收银台设置
+export const cashierSet = "Cashier_cashierSet";
+export const cashierSetget = "cashierSet_get"; //详情
+export const cashierSetset = "cashierSet_set"; //配置
+
+//收银员
+export const Cashiers = "Cashier_Cashiers";
+export const CashiersgetAllStaff = "Cashiers_getAllStaff"; //列表
+export const CashiersgetStaffInfo = "Cashiers_getStaffInfo"; //详情
+export const CashiersupdateStaff = "Cashiers_updateStaff"; //设置
+
+//导购员
+export const ShoppingGuide = "Cashier_ShoppingGuide";
+export const ShoppingGuidegetAllStaff = "ShoppingGuide_getAllStaff"; //列表
+export const ShoppingGuidegetStaffInfo = "ShoppingGuide_getStaffInfo"; //详情
+export const ShoppingGuideupdateStaff = "ShoppingGuide_updateStaff"; //设置
+
+//提成明细
+export const Withdrawal = "Cashier_Withdrawal";
+export const WithdrawalgetAll = "Withdrawal_getAll"; //提成明细
+
+//提成统计
+export const Commission = "Cashier_Commission";
+export const CommissionoverView = "Commission_overView"; //提成统计
+
+//交班记录
+export const ShiftOver = "Cashier_ShiftOver";
+export const ShiftOvergetRecordList = "ShiftOver_getRecordList"; //列表
+export const ShiftOvergetRecordInfo = "ShiftOver_getRecordInfo"; //详情
+//收银台
+export const CashierShop = "Cashier_CashierShop";
+//销售提成
+export const saleCommission = "Application_saleCommission";
+
+// 提成规则
+export const CommissionRule = "saleCommission_CommissionRule";
+export const CommissionRuleAddCommissionRule =
+  "CommissionRule_addCommissionRule"; // 新增
+export const CommissionRuleEditCommissionRule =
+  "CommissionRule_editCommissionRule"; // 编辑
+export const CommissionRuleDelCommissionRule =
+  "CommissionRule_delCommissionRule"; //删除
+export const CommissionRuleStatusCommissionRule =
+  "CommissionRule_statusCommissionRule"; //状态管理
+// 提成统计
+export const CommissionStatistic = "saleCommission_CommissionStatistic";
+export const CommissionStatisticDetailCommissionStatistic =
+  "CommissionStatistic_detailCommissionStatistic"; // 明细
+export const CommissionStatisticSetTarget = "CommissionStatistic_setTarget"; //设置目标
+export const CommissionStatisticAmountIssued =
+  "CommissionStatistic_AmountIssued"; //设置目标
+//积分商城
+export const PointsMall = "Application_PointsMall";
+//商品管理
+export const PointsGoodsManage = "PointsMall_PointsGoodsManage";
+export const PointsGoodsManageAddPointsGoods =
+  "PointsGoodsManage_addPointsGoods"; //新增商品
+export const PointsGoodsManageEditPointsGoods =
+  "PointsGoodsManage_editPointsGoods"; // 编辑
+export const PointsGoodsManageDeletePpintsGoods =
+  "PointsGoodsManage_deletePpintsGoods"; //删除
+export const PointsGoodsManageStatusUpdate = "PointsGoodsManage_statusUpdate"; // 状态管理
+//兑换记录
+export const ExchangeRecord = "PointsMall_ExchangeRecord";
+export const ExchangeRecordShipExchangeRecord =
+  "ExchangeRecord_ShipExchangeRecord"; //发货
+export const ExchangeRecordCancelExchangeRecord =
+  "ExchangeRecord_cancelExchangeRecord"; //作废
+//积分规则
+export const PointRule = "PointsMall_PointRule";
+export const PointRuleAddPointRule = "PointRule_addPointRule"; //新增
+export const PointRuleEditPointRule = "PointRule_editPointRule"; //编辑
+export const PointRuleDelPointRule = "PointRule_delPointRule"; //删除
+export const PointRuleStatusPointRule = "PointRule_statusPointRule"; //状态管理
+
+// 小程序发布
+
+export const wxPush = "mall_wxPush";
+export const wxPushpreAuthCode = "wxPush_preAuthCode"; //小程序授权 //查询审核状态
+export const wxPushsubmitCode = "wxPush_submitCode"; //提交代码
+export const wxPushsubmitAudit = "wxPush_submitAudit"; //提交审核
+export const wxPushrelease = "wxPush_release"; //小程序发布
+export const wxPushgetAll = "wxPush_getAll"; //设置模版
+
+// 多商户
+//商户列表
+export const MerchartsList = "Merchants_MerchartsList";
+export const MerchartsListAddMercharts = "MerchartsList_addMercharts"; //新增
+export const MerchartsListEditMercharts = "MerchartsList_editMercharts"; //编辑
+export const MerchartsListDetailMercharts = "MerchartsList_detailMercharts"; //详情
+export const MerchartsListUpStatus = "MerchartsList_upStatus"; //状态管理
+
+//商户商品
+export const MerchartsGoods = "Merchants_MerchartsGoods";
+export const MerchartsGoodsAddMerchartsGoods =
+  "MerchartsGoods_addMerchartsGoods"; //发布商品
+export const MerchartsGoodsUpMerchartsGoods = "MerchartsGoods_upMerchartsGoods"; //状态管理
+export const MerchartsGoodsEditMerchartsGoods =
+  "MerchartsGoods_editMerchartsGoods"; //编辑
+export const MerchartsGoodsDelMerchartsGoods =
+  "MerchartsGoods_delMerchartsGoods"; //删除
+export const MerchartsGoodsTopMerchartsGoods =
+  "MerchartsGoods_topMerchartsGoods"; //置顶
+
+// 结算管理
+export const MerchantsSettlement = "Merchants_MerchantsSettlement";
+export const MerchantsSettlementUpdateAuditStatusConfirm =
+  "MerchantsSettlement_updateAuditStatusConfirm"; //审核
+export const MerchantsSettlementUpdateAuditStatusRefuse =
+  "MerchantsSettlement_updateAuditStatusRefuse"; //拒绝
+export const MerchantsSettlementUpdateAuditStatusCash =
+  "MerchantsSettlement_updateAuditStatusCash"; //打款
+export const MerchantsSettlementMerchantsBasicsSet =
+  "MerchantsSettlement_MerchantsBasicsSet"; //基础设置
+
+// 报表
+// 商品销售报表
+export const goodsFormMerchandiseSalesStatement =
+  "goodsForm_MerchandiseSalesStatement";
+// 客户商品报表
+export const goodsFormCustomerMerchandiseReport =
+  "goodsForm_CustomerMerchandiseReport";
+// 客户订单报表
+export const orderFormCustomerOrderReport = "orderForm_CustomerOrderReport";
+// 业务员订单表
+export const orderFormSalesOrderReport = "orderForm_SalesOrderReport";
+// 订单数据报表
+export const orderFormOrderDataReport = "orderForm_OrderDataReport";
+// 地区订单报表
+export const orderFormRegionalOrderReport = "orderForm_RegionalOrderReport";
+
+// 收款申请单
+export const ApplyReceipt = "shouldReceiveManage_ApplyReceipt";
+// 新增
+export const addApplyReceipt = "ApplyReceipt_addApplyReceipt";
+// 编辑
+export const editApplyReceipt = "ApplyReceipt_editApplyReceipt";
+// 审核
+export const auditApplyReceipt = "ApplyReceipt_auditApplyReceipt";
+
+// 费用类型
+export const CostTypes = "financialManagement_CostTypes";
+// 新增
+export const CostTypesaddCostType = "CostTypes_addCostType";
+// 编辑
+export const CostTypeseditCostType = "CostTypes_editCostType";
+// 删除
+export const CostTypesdeleteCostType = "CostTypes_deleteCostType";
+// 余额提现
+export const WithdrawAsh = "financialManagement_WithdrawAsh";
+// 审核
+export const WithdrawAshupdateReflectDetail = "WithdrawAsh_updateReflectDetail";
+// 打款
+export const WithdrawAshmakeMoney = "WithdrawAsh_makeMoney";
+// 拒绝
+export const WithdrawAshupdaterefuseMoney = "WithdrawAsh_refuseMoney";
+// 费用单
+export const CostSheet = "cashierManagement_CostSheet";
+export const CostSheetaddCostSheet = "CostSheet_addCostSheet"; //新增
+export const CostSheetdeleteCostSheet = "CostSheet_deleteCostSheet"; // 删除
+export const CostSheeteditCostSheet = "CostSheet_editCostSheet"; // 编辑
+export const CostSheetaudtCostSheet = "CostSheet_audtCostSheet"; // 审核
+// 销售排行
+export const SalesRanking = "statement_salesRanking";
+//商户采购单
+export const Merchant = "SupplyManageGroup_Merchant";
+//新增
+export const MerchantAddMerchant = "Merchant_AddMerchant";
+//导出
+export const MerchantAllPurchase = "Merchant_getAllPurchaseWerahouse";
+// 审核
+export const MerchantupdatePurchaseStatus = "Merchant_updatePurchaseStatus";
+// 编辑
+export const MerchantPurchaseOrderEdit = "Merchant_PurchaseOrderEdit";
+// 删除
+export const MerchantdelPurchase = "Merchant_delPurchaseWerahouse";
+// 退单
+export const MerchantPurchaseReturnOrderAdd = "Merchant_PurchaseReturnOrderAdd";
+
+// 退款单
+export const RefundForm = "cashierManagement_RefundForm";
+// 审核
+export const RefundFormupdateRefundStatus = "RefundForm_updateRefundStatus";
+// 编辑
+export const RefundFormEditRefundForm = "RefundForm_EditRefundForm";
+export const RefundForm_AddRefundForm = "RefundForm_AddRefundForm"; //新增
+// 仓库库存
+export const warehouseInventory = "kucunManage_warehouseInventory";
+// 司机设置
+export const Driver = "system_Driver";
+// 新增
+export const DriveraddDriver = "Driver_DriveraddDriver";
+// 编辑
+export const DrivereditDriver = "Driver_DrivereditDriver";
+// 删除
+export const DriverdelDriver = "Driver_DriverdelDriver";
+//禁用
+export const DriverstatusSet = "Driver_DriverstatusSet";
+// 线路列表
+export const line = "system_line";
+export const lineAddLine = "line_addLine"; //新增线路
+export const lineEditLine = "line_editLine"; //编辑线路
+export const lineDelLine = "line_delLine"; //删除线路
+export const lineUpdateLine = "line_updateLine"; //启用禁用
+export const lineLookLine = "line_lookLine"; //查看客户
+
+// 消息推送
+export const PushNotification = "system_PushNotification";
+export const PushNotification_addMsg = "PushNotification_addMsg"; //开通通知
+export const PushNotification_setMsg = "PushNotification_setMsg"; //设置
+export const PushNotification_updatePushEnableStatus =
+  "PushNotification_updatePushEnableStatus"; //小程序订阅消息状态切换

+ 51 - 0
src/api/Cart.js

@@ -0,0 +1,51 @@
+import request from "@/utils/request";
+
+/* --------------加入购物车-------------------- */
+// 加入购物车
+export function addCart(id, data) {
+  return request({
+    url: `/Cart/Cart/addCart/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 获取购物车
+export function getCartByUserCenterId(id, data) {
+  return request({
+    url: `/Cart/Cart/getCartByUserCenterId/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 移出购物车
+export function delCart(id, data) {
+  return request({
+    url: `/Cart/Cart/delCart/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 商品选中/取消选中
+export function updateSelection(id, data) {
+  return request({
+    url: `/Cart/Cart/updateSelection/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 更新购物车某个商品数量
+export function updateBuyNum(id, data) {
+  return request({
+    url: `/Cart/Cart/updateBuyNum/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 清空购物车
+export function clearCart(id, data) {
+  return request({
+    url: `/Cart/Cart/clearCart/${id}`,
+    method: "delete",
+    data,
+  });
+}

+ 184 - 0
src/api/Cashier.js

@@ -0,0 +1,184 @@
+import request from "@/utils/request";
+// 设置
+export function setSettings(data) {
+  return request({
+    url: `/Cashier/Settings/set`,
+    method: "post",
+    data,
+  });
+}
+export function getSettings(data) {
+  return request({
+    url: `/Cashier/Settings/get`,
+    method: "get",
+    data,
+  });
+}
+// 交班记录
+export function getRecordList(data) {
+  return request({
+    url: `/Cashier/PushMoney/getRecordList`,
+    method: "post",
+    data,
+  });
+}
+// 提成明细
+export function getAllPushMoney(data) {
+  return request({
+    url: `/Cashier/PushMoney/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 提成统计
+export function overView(data) {
+  return request({
+    url: `/Cashier/Cashier/overView`,
+    method: "post",
+    data,
+  });
+}
+// 交班详情
+export function getRecordInfo(id, data) {
+  return request({
+    url: `/Cashier/PushMoney/getRecordInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 商品列表
+export function GoodsByCategory(data) {
+  return request({
+    url: `/Cashier/CashierGoods/getGoodsByCategory`,
+    method: "post",
+    data,
+  });
+}
+// 商品详情
+export function getGoodsDetail(id, data) {
+  return request({
+    url: `/Cashier/CashierGoods/getGoodsDetail/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 收银台登录记录
+export function loggerConnect(data) {
+  return request({
+    url: `/Cashier/PushMoney/loggerConnect`,
+    method: "post",
+    data,
+  });
+}
+// 收银申请交接
+export function connectDetails(data) {
+  return request({
+    url: `/Cashier/PushMoney/connectDetails`,
+    method: "post",
+    data,
+  });
+}
+// 收银确认交接
+export function confirmConnect(id, data) {
+  return request({
+    url: `/Cashier/PushMoney/confirmConnect/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 会员
+export function searchCustomerDetails(data) {
+  return request({
+    url: `/Cashier/Cashier/searchCustomerDetails`,
+    method: "post",
+    data,
+  });
+}
+// 加入购物车
+export function addCartCashier(data) {
+  return request({
+    url: `/Cashier/Cashier/addCart`,
+    method: "post",
+    data,
+  });
+}
+// 购物车详情
+export function getCartByUser(data) {
+  return request({
+    url: `/Cashier/Cashier/getCartByUserCenterId`,
+    method: "post",
+    data,
+  });
+}
+// 修改购物车商品数量
+export function updateBuyNumCashier(id, data) {
+  return request({
+    url: `/Cashier/Cashier/updateBuyNum/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 删除购物车
+export function delCartCashier(data) {
+  return request({
+    url: `/Cashier/Cashier/delCart`,
+    method: "post",
+    data,
+  });
+}
+// 清空购物车
+export function clearCartCashier(data) {
+  return request({
+    url: `/Cashier/Cashier/clearCart`,
+    method: "put",
+    data,
+  });
+}
+// 改价
+export function changePrice(data) {
+  return request({
+    url: `/Cashier/Cashier/changePrice`,
+    method: "post",
+    data,
+  });
+}
+// 挂单
+export function saveEntryData(data) {
+  return request({
+    url: `/Cashier/Cashier/saveEntryData`,
+    method: "post",
+    data,
+  });
+}
+// 挂单列表
+export function getAllEntryData(data) {
+  return request({
+    url: `/Cashier/Cashier/getAllEntryData`,
+    method: "post",
+    data,
+  });
+}
+// 取单
+export function getEntryData(id, data) {
+  return request({
+    url: `/Cashier/Cashier/getEntryData/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 删除挂单
+export function delEntryData(id, data) {
+  return request({
+    url: `/Cashier/Cashier/delEntryData/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 优惠活动
+export function activityAll(data) {
+  return request({
+    url: `/Cashier/Cashier/activityAll`,
+    method: "post",
+    data,
+  });
+}

+ 17 - 0
src/api/Charts.js

@@ -0,0 +1,17 @@
+import request from "@/utils/request";
+//商品销售报表
+export function goods(data) {
+  return request({
+    url: "Charts/Charts/goods",
+    method: "post",
+    data,
+  });
+}
+// 客户商品报表
+export function customerGoods(data) {
+  return request({
+    url: "Charts/Charts/customerGoods",
+    method: "post",
+    data,
+  });
+}

+ 298 - 0
src/api/Commission.js

@@ -0,0 +1,298 @@
+import request from "@/utils/request";
+
+/* ------------分销----------------- */
+/* 等级设置 */
+//  新增等级
+export function addGrade(data) {
+  return request({
+    url: `/Commission/CommissionGrade/addGrade`,
+    method: "post",
+    data,
+  });
+}
+//  升级条件
+export function getAllGradeCondition(data) {
+  return request({
+    url: `/Commission/CommissionGrade/getAllGradeCondition`,
+    method: "post",
+    data,
+  });
+}
+//  等级详情
+export function getInfoGrade(id, data) {
+  return request({
+    url: `/Commission/CommissionGrade/getInfoGrade/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  等级列表
+export function getAllGrade(data) {
+  return request({
+    url: `/Commission/CommissionGrade/getAllGrade`,
+    method: "post",
+    data,
+  });
+}
+//  修改等级
+export function updateGrade(id, data) {
+  return request({
+    url: `/Commission/CommissionGrade/updateGrade/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  删除等级
+export function delGrade(id, data) {
+  return request({
+    url: `/Commission/CommissionGrade/delGrade/${id}`,
+    method: "get",
+    data,
+  });
+}
+/* 分销设置 */
+//  查询设置
+export function getSetting(data) {
+  return request({
+    url: `/Commission/CommissionSetting/getSetting`,
+    method: "post",
+    data,
+  });
+}
+// 保存设置
+export function saveSetting(data) {
+  return request({
+    url: `/Commission/CommissionSetting/saveSetting`,
+    method: "post",
+    data,
+  });
+}
+// 文本设置
+export function getTxtSetting(data) {
+  return request({
+    url: `/Commission/CommissionSetting/getTxtSetting`,
+    method: "post",
+    data,
+  });
+}
+export function saveTxtSetting(data) {
+  return request({
+    url: `/Commission/CommissionSetting/saveTxtSetting`,
+    method: "post",
+    data,
+  });
+}
+/* 分销商 */
+// 分销商审核
+export function auditBusinessman(data) {
+  return request({
+    url: `/Commission/CommissionBusinessman/auditBusinessman`,
+    method: "post",
+    data,
+  });
+}
+// 分销商列表
+export function getAllBusinessman(data) {
+  return request({
+    url: `/Commission/CommissionBusinessman/getAllBusinessman`,
+    method: "post",
+    data,
+  });
+}
+// 分销商列表
+export function exportGetAllBusinessman(data) {
+  return request({
+    url: `/Commission/CommissionBusinessman/getAllBusinessman`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 下级列表
+export function getAllSub(data) {
+  return request({
+    url: `/Commission/CommissionBusinessman/getAllSub`,
+    method: "post",
+    data,
+  });
+}
+// 分销商详情
+export function getInfoBusinessman(data) {
+  return request({
+    url: `/Commission/CommissionBusinessman/getInfoBusinessman`,
+    method: "post",
+    data,
+  });
+}
+// 添加分销商
+export function addBusinessman(data) {
+  return request({
+    url: `/Commission/CommissionBusinessman/addBusinessman`,
+    method: "post",
+    data,
+  });
+}
+// 删除分销商
+export function delBusinessman(data) {
+  return request({
+    url: `/Commission/CommissionBusinessman/delBusinessman`,
+    method: "post",
+    data,
+  });
+}
+/* 分销商品 */
+// 设置佣金
+export function setCommission(data) {
+  return request({
+    url: `/Commission/CommissionGoods/setCommission`,
+    method: "post",
+    data,
+  });
+}
+// 列表(可搜索)
+export function CommissionGoodsGetAll(data) {
+  return request({
+    url: `/Commission/CommissionGoods/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 参与分销/不参与(可批量)
+export function updateIsJoin(data) {
+  return request({
+    url: `/Commission/CommissionGoods/updateIsJoin`,
+    method: "post",
+    data,
+  });
+}
+// 详情
+export function CommissionGoodsGetInfo(id, data) {
+  return request({
+    url: `/Commission/CommissionGoods/getInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+
+/* 分销订单 */
+// 列表
+export function CommissionOrderGetAll(data) {
+  return request({
+    url: `/Commission/CommissionOrder/getAll`,
+    method: "post",
+    data,
+  });
+}
+/* 分销概览首页 */
+// 首页统计(TOP)
+export function statisticsCommissionThree(data) {
+  return request({
+    url: `/Commission/CommissionBusinessman/statisticsCommissionThree`,
+    method: "get",
+    data,
+  });
+}
+// 首页统计
+export function statisticsCommissionOne(data) {
+  return request({
+    url: `/Commission/CommissionBusinessman/statisticsCommissionOne`,
+    method: "get",
+    data,
+  });
+}
+// 首页统计(新增分销商数)
+export function statisticsCommissionTwo(data) {
+  return request({
+    url: `/Commission/CommissionBusinessman/statisticsCommissionTwo`,
+    method: "get",
+    data,
+  });
+}
+/* 提现 */
+// 获取提现申请列表
+export function CommissionWithdrawalsGetAll(data) {
+  return request({
+    url: `/Commission/CommissionWithdrawals/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 修改提现审核状态
+export function WithdrawalsUpdateAuditStatus(id, data) {
+  return request({
+    url: `/Commission/CommissionWithdrawals/updateAuditStatus/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 余额提现
+export function getAllReflectDetail(data) {
+  return request({
+    url: `/Customer/Customer/getAllReflectDetail`,
+    method: "post",
+    data,
+  });
+}
+// 审核
+export function updateReflectDetail(data) {
+  return request({
+    url: `Customer/Customer/updateReflectDetail`,
+    method: "post",
+    data,
+  });
+}
+// 业务员订单报表
+export function salesManOrder(data) {
+  return request({
+    url: `Charts/Charts/salesManOrder`,
+    method: "post",
+    data,
+  });
+}
+// 订单数据表
+export function order(data) {
+  return request({
+    url: `Charts/Charts/order`,
+    method: "post",
+    data,
+  });
+}
+// 客户订单报表
+export function customerOrder(data) {
+  return request({
+    url: `Charts/Charts/customerOrder`,
+    method: "post",
+    data,
+  });
+}
+//地区报表
+export function areaOrder(data) {
+  return request({
+    url: `Charts/Charts/areaOrder`,
+    method: "post",
+    data,
+  });
+}
+// 销售排行
+export function salesManRank(data) {
+  return request({
+    url: `Customer/Customer/salesManRank`,
+    method: "post",
+    data,
+  });
+}
+export function exportsalesManRank(data) {
+  return request({
+    url: `Customer/Customer/salesManRank`,
+    method: "post",
+    data,
+  });
+}
+//修改分销商上级关系
+export function editRelationship(data) {
+  return request({
+    url: `Commission/ApiCommissionBusinessman/editRelationship`,
+    method: "post",
+    data,
+  });
+}

+ 474 - 0
src/api/Customer.js

@@ -0,0 +1,474 @@
+import request from "@/utils/request";
+
+// 获取暂存 Customer/Customer/getTempData
+export function getTempCustomerData(data) {
+  return request({
+    url: "/Customer/Customer/getTempData",
+    method: "get",
+    data,
+  });
+}
+// 客户审核/待审核 Customer/Customer/updateCustomerCheckStatus
+export function updateCustomerCheckStatus(data) {
+  return request({
+    url: "/Customer/Customer/updateCustomerCheckStatus",
+    method: "post",
+    data,
+  });
+}
+/* --- 客户管理 --- */
+//  新建客户 Customer/Customer/addCustomer post
+export function addCustomer(data) {
+  return request({
+    url: "/Customer/Customer/addCustomer",
+    method: "post",
+    data,
+  });
+}
+//  客户详情
+export function getCustomerInfo(id, data) {
+  return request({
+    url: `/Customer/Customer/getCustomerInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  编辑客户  Customer/Customer/editCustomer/3  post
+export function editCustomer(id, data) {
+  return request({
+    url: `/Customer/Customer/editCustomer/${id}`,
+    method: "post",
+    data,
+  });
+}
+//  首字母搜索客户
+export function CustomerInitialsSearch(data) {
+  return request({
+    url: `/Customer/Customer/initialsSearch`,
+    method: "post",
+    data,
+  });
+}
+//  客户列表  Customer/Customer/getAllCustomer post
+export function getAllCustomer(data) {
+  return request({
+    url: `/Customer/Customer/getAllCustomer`,
+    method: "post",
+    data,
+  });
+}
+// 客户列表导出
+export function customerExport(data) {
+  return request({
+    url: `/Customer/Customer/export`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+//  删除客户 Customer/Customer/delCustomer/3 get
+// export function delCustomer(id, data) {
+//   return request({
+//     url: `/Customer/Customer/delCustomer/${id}`,
+//     method: "get",
+//     data,
+//   });
+// }
+//  客户停用禁用  Customer/Customer/updateCustomerStatus  post
+export function updateCustomerStatus(data) {
+  return request({
+    url: `/Customer/Customer/updateCustomerStatus`,
+    method: "post",
+    data,
+  });
+}
+// 添加客户标签  Customer/Customer/addCustomerTag  post
+export function addCustomerTag(data) {
+  return request({
+    url: `/Customer/Customer/addCustomerTag`,
+    method: "post",
+    data,
+  });
+}
+//  删除客户标签  Customer/Customer/delCustomerTag post
+export function delCustomerTag(data) {
+  return request({
+    url: `/Customer/Customer/delCustomerTag`,
+    method: "post",
+    data,
+  });
+}
+//  新增客户联系人  Customer/CustomerContact/addCustomerContact  post
+export function addCustomerContact(data) {
+  return request({
+    url: `/Customer/CustomerContact/addCustomerContact`,
+    method: "post",
+    data,
+  });
+}
+// 客户搜索 Customer/Customer/search post
+export function searchCustomer(data) {
+  return request({
+    url: `/Customer/Customer/search`,
+    method: "post",
+    data,
+  });
+}
+// 今日下单客户经纬度分部
+export function getCustomerLocation(data) {
+  return request({
+    url: `/Customer/Customer/getCustomerLocation`,
+    method: "post",
+    data,
+  });
+}
+// 后台批量分配部门及业务员
+export function batchEditCustomer(data) {
+  return request({
+    url: `/Customer/Customer/batchEditCustomer`,
+    method: "post",
+    data,
+  });
+}
+/* --------------客户收货地址-------------------- */
+// 客户收货地址添加
+export function addShippingAddress(data) {
+  return request({
+    url: `/Customer/ShippingAddress/addShippingAddress`,
+    method: "post",
+    data,
+  });
+}
+// 客户收货地址删除
+export function deleteShippingAddress(id, data) {
+  return request({
+    url: `/Customer/ShippingAddress/deleteShippingAddress/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 客户收货地址修改
+export function updateShippingAddress(data) {
+  return request({
+    url: `/Customer/ShippingAddress/updateShippingAddress`,
+    method: "put",
+    data,
+  });
+}
+// 客户收货地址详情
+export function getShippingAddressInfo(id, data) {
+  return request({
+    url: `/Customer/ShippingAddress/getShippingAddressInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 客户收货地址列表
+export function getAllShippingAddress(id, data) {
+  return request({
+    url: `/Customer/ShippingAddress/getAllShippingAddress/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 客户查询 Customer/Customer/query
+export function query(data) {
+  return request({
+    url: `/Customer/Customer/query`,
+    method: "post",
+    data,
+  });
+}
+// 获取跟进记录列表
+export function getAllCustomerCommunication(data) {
+  return request({
+    url: `Customer/CustomerCommunication/getAllCustomerCommunication`,
+    method: "post",
+    data,
+  });
+}
+// 添加跟进记录
+export function addCustomerCommunication(data) {
+  return request({
+    url: `Customer/CustomerCommunication/addCustomerCommunication`,
+    method: "post",
+    data,
+  });
+}
+// 跟进记录删除
+export function delCustomerCommunication(id, data) {
+  return request({
+    url: `Customer/CustomerCommunication/delCustomerCommunication/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 跟进记录修改
+export function updateCustomerCommunication(id, data) {
+  return request({
+    url: `Customer/CustomerCommunication/updateCustomerCommunication/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 后台所有客户标签组
+export function getAllCustomerTagLib(data) {
+  return request({
+    url: `Customer/CustomerTagLib/getAllCustomerTagLib`,
+    method: "get",
+    data,
+  });
+}
+// 新增客户标签
+export function addCustomerTagLib(data) {
+  return request({
+    url: `Customer/CustomerTagLib/addCustomerTagLib`,
+    method: "post",
+    data,
+  });
+}
+// 删除客户标签
+export function delCustomerTagLib(data) {
+  return request({
+    url: `Customer/CustomerTagLib/delCustomerTagLib`,
+    method: "post",
+    data,
+  });
+}
+// 获取指定用户标签
+export function getCustomerTagLibInfo(id, data) {
+  return request({
+    url: `Customer/CustomerTagLib/getCustomerTagLibInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 编辑客户标签
+export function editCustomerTagLib(data) {
+  return request({
+    url: `Customer/CustomerTagLib/editCustomerTagLib`,
+    method: "post",
+    data,
+  });
+}
+// 需求提报
+export function getAllCustomerdemand(data) {
+  return request({
+    url: `/Customer/CustomerDemand/getAllCustomerdemand`,
+    method: "post",
+    data,
+  });
+}
+// 需求提报详情
+export function getCustomerdemandInfo(id, data) {
+  return request({
+    url: `/Customer/CustomerDemand/getCustomerdemandInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 修改客户指定标签
+export function updateCustomerTagLibById(data) {
+  return request({
+    url: `Customer/CustomerTagLib/updateCustomerTagLibById`,
+    method: "post",
+    data,
+  });
+}
+// 客户购买列表
+export function searchCustomerBuyLog(data) {
+  return request({
+    url: `Customer/Customer/searchCustomerBuyLog`,
+    method: "post",
+    data,
+  });
+}
+export function exportsearchCustomerBuyLog(data) {
+  return request({
+    url: `Customer/Customer/searchCustomerBuyLog`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 客户浏览列表
+export function getAllCustomerVisitsLog(data) {
+  return request({
+    url: `Customer/CustomerVisitsLog/getAllCustomerVisitsLog`,
+    method: "post",
+    data,
+  });
+}
+// 客户余额明细
+export function getAllMemberBalanceDetail(data) {
+  return request({
+    url: "Customer/MemberBalanceDetail/getAllMemberBalanceDetail",
+    method: "post",
+    data,
+  });
+}
+//客户积分明细
+export function getAllCustomerIntegralDesc(data) {
+  return request({
+    url: "Customer/Customer/getAllCustomerIntegralDesc",
+    method: "post",
+    data,
+  });
+}
+//修改积分
+export function updateCustomerIntegral(data) {
+  return request({
+    url: "Customer/Customer/updateCustomerIntegral",
+    method: "post",
+    data,
+  });
+}
+// 多长时间未下单客户统计
+export function noOrderCustomer(data) {
+  return request({
+    url: "Customer/Customer/noOrderCustomer",
+    method: "post",
+    data,
+  });
+}
+// 距离上一次上单多久未下单客户统计
+export function intervalNoOrderCustomer(data) {
+  return request({
+    url: "Customer/Customer/intervalNoOrderCustomer",
+    method: "post",
+    data,
+  });
+}
+// 后台充值
+export function rechargeMemberBalance(data) {
+  return request({
+    url: "Customer/Customer/rechargeMemberBalance",
+    method: "post",
+    data,
+  });
+}
+// 拉新统计
+export function recommenderStatic(data) {
+  return request({
+    url: "Customer/Customer/recommenderStatic",
+    method: "post",
+    data,
+  });
+}
+// 客户导入
+export function customerImport(data) {
+  return request({
+    url: "Customer/Customer/customerImport",
+    method: "post",
+    data,
+  });
+}
+// 获取司机信息
+export function getAllDriver(data) {
+  return request({
+    url: `/System/Driver/getAllDriver`,
+    method: "put",
+    data,
+  });
+}
+// 删除司机信息
+export function delDriver(id, data) {
+  return request({
+    url: `System/Driver/delDriver/${id}`,
+    method: "put",
+    data,
+  });
+}
+//添加司机信息
+export function addDriver(data) {
+  return request({
+    url: `System/Driver/addDriver`,
+    method: "put",
+    data,
+  });
+}
+//编辑司机信息
+export function editDriver(data) {
+  return request({
+    url: `System/Driver/editDriver`,
+    method: "put",
+    data,
+  });
+}
+//获取指定信息
+export function getDriverInfo(id, data) {
+  return request({
+    url: `System/Driver/getDriverInfo/${id}`,
+    method: "put",
+    data,
+  });
+}
+
+export function getAllOpenDriver(data) {
+  return request({
+    url: `System/Driver/getAllOpenDriver`,
+    method: "post",
+    data,
+  });
+}
+// 拜访报表
+export function getAllCustomerVisit(data) {
+  return request({
+    url: `Customer/CustomerCommunication/getAllCustomerVisit`,
+    method: "post",
+    data,
+  });
+}
+export function getCustomerCallOnReportForm(data) {
+  return request({
+    url: `Customer/CustomerCommunication/getCustomerCallOnReportForm`,
+    method: "post",
+    data,
+  });
+}
+export function getCustomerVisitInfo(data) {
+  return request({
+    url: `Customer/CustomerCommunication/getCustomerVisitInfo`,
+    method: "post",
+    data,
+  });
+}
+export function getAllDepartment(data) {
+  return request({
+    url: `Department/Department/getAllDepartment`,
+    method: "post",
+    data,
+  });
+}
+// 未拜访客户统计列表
+export function getCustomerNoVisit(data) {
+  return request({
+    url: `Customer/CustomerCommunication/getCustomerNoVisit`,
+    method: "post",
+    data,
+  });
+}
+//客户分布图
+export function getCustomerDistributed(data) {
+  return request({
+    url: `Customer/Customer/getCustomerDistributed`,
+    method: "post",
+    data,
+  });
+}
+//批量设置客户类型
+export function setCustomerType(data) {
+  return request({
+    url: `Customer/Customer/setCustomerType`,
+    method: "post",
+    data,
+  });
+}
+// 删除客户
+export function delCustomer(data) {
+  return request({
+    url: `Customer/Customer/delCustomer`,
+    method: "post",
+    data,
+  });
+}

+ 73 - 0
src/api/Delivery.js

@@ -0,0 +1,73 @@
+import request from "@/utils/request";
+// 配送线路列表
+export function getAllDeliveryRoute(data) {
+  return request({
+    url: "Delivery/Delivery/getAllDeliveryRoute",
+    method: "post",
+    data,
+  });
+}
+// 配送线路添加
+export function addDeliveryRoute(data) {
+  return request({
+    url: "Delivery/Delivery/addDeliveryRoute",
+    method: "post",
+    data,
+  });
+}
+// 配送线路详情
+export function getDeliveryRouteInfo(id, data) {
+  return request({
+    url: `Delivery/Delivery/getDeliveryRouteInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 配送线路修改
+export function updateDeliveryRoute(id, data) {
+  return request({
+    url: `Delivery/Delivery/updateDeliveryRoute/${id}`,
+    method: "put",
+    data,
+  });
+}
+//配送线路启用/禁用
+export function enableDeliveryRoute(id, data) {
+  return request({
+    url: `Delivery/Delivery/enableDeliveryRoute/${id}`,
+    method: "put",
+    data,
+  });
+}
+//配送线路删除
+export function deleteDeliveryRoute(id, data) {
+  return request({
+    url: `Delivery/Delivery/deleteDeliveryRoute/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//配送线路客户
+export function getDeliveryRouteCustomer(data) {
+  return request({
+    url: `Delivery/Delivery/getDeliveryRouteCustomer`,
+    method: "post",
+    data,
+  });
+}
+// 配送线路客户排序
+export function updateDeliveryRouteCustomer(id, data) {
+  return request({
+    url: `Delivery/Delivery/updateDeliveryRouteCustomer/${id}`,
+    method: "put",
+    data,
+  });
+}
+//获取所有的待司机配送单
+export function getAllDistribution(data) {
+  return request({
+    url: `Delivery/DistributionCentre/getAllDistribution`,
+    method: "post",
+    data,
+  });
+}

+ 165 - 0
src/api/Department.js

@@ -0,0 +1,165 @@
+import request from "@/utils/request";
+// 获取员工详情
+export function getStaff(id, data) {
+  return request({
+    url: `/Department/Staff/getStaffInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+export function updateStaffStaff(id, data) {
+  return request({
+    url: `/Department/Staff/updateStaff/${id}`,
+    method: "post",
+    data,
+  });
+}
+//  账号
+//  职工管理
+//  职工添加  /Department/Staff/addStaff post
+export function addStaff(data) {
+  return request({
+    url: `/Department/Staff/addStaff`,
+    method: "post",
+    data,
+  });
+}
+//  职工删除  Department/Staff/deleteStaff/1  post
+export function deleteStaff(data) {
+  return request({
+    url: `/Department/Staff/deleteStaff`,
+    method: "post",
+    data,
+  });
+}
+//  职工修改  Department/Staff/updateStaff/1  put
+export function updateStaff(id, data) {
+  return request({
+    url: `/Department/Staff/updateStaff/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  职工列表  Department/Staff/getAllStaff  post
+export function getAllStaff(data) {
+  return request({
+    url: `/Department/Staff/getAllStaff`,
+    method: "post",
+    data,
+  });
+}
+//  职工详情  Department/Staff/getStaffInfo/1 get
+export function getStaffInfo(id, data) {
+  return request({
+    url: `/Department/Staff/getStaffInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  员工业绩提成修改
+export function updateStaffTargetAndReward(id, data) {
+  return request({
+    url: `/Department/Staff/updateStaffTargetAndReward/${id}`,
+    method: "post",
+    data,
+  });
+}
+//  提成流水
+export function getAllStaffRewardDesc(data) {
+  return request({
+    url: `/Department/Staff/getAllStaffRewardDesc`,
+    method: "post",
+    data,
+  });
+}
+//  部门管理
+//  部门添加  Department/Department/addDepartment  post
+export function addDepartment(data) {
+  return request({
+    url: `/Department/Department/addDepartment`,
+    method: "post",
+    data,
+  });
+}
+//  部门删除  Department/Department/deleteDepartment/1 del
+export function deleteDepartment(id, data) {
+  return request({
+    url: `/Department/Department/deleteDepartment/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//  部门修改  Department/Department/updateDepartment/1  put
+export function updateDepartment(id, data) {
+  return request({
+    url: `/Department/Department/updateDepartment/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  部门列表 Department/Department/getAllDepartment  post
+export function getAllDepartment(data) {
+  return request({
+    url: `/Department/Department/getAllDepartment`,
+    method: "post",
+    data,
+  });
+}
+//  部门详情  Department/Department/getDepartmentInfo/1 get
+export function getDepartmentInfo(id, data) {
+  return request({
+    url: `/Department/Department/getDepartmentInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  角色管理
+//  角色列表  Department/Role/getAllRole  post
+export function getAllRole(data) {
+  return request({
+    url: `/Department/Role/getAllRole`,
+    method: "post",
+    data,
+  });
+}
+//  角色详请 Department/Role/getRoleInfo/1  get
+export function getRoleInfo(id, data) {
+  return request({
+    url: `/Department/Role/getRoleInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  角色修改  Department/Role/updateRole/1 put
+export function updateRole(id, data) {
+  return request({
+    url: `/Department/Role/updateRole/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  角色删除  Department/Role/deleteRole/1   del
+export function deleteRole(id, data) {
+  return request({
+    url: `/Department/Role/deleteRole/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//  角色添加  Department/Role/addRole
+export function addRole(data) {
+  return request({
+    url: `/Department/Role/addRole`,
+    method: "post",
+    data,
+  });
+}
+// 收银台
+// 收银员/导购员列表
+export function getAllStaffStaff(data) {
+  return request({
+    url: `/Department/Staff/getAllStaff`,
+    method: "post",
+    data,
+  });
+}

+ 680 - 0
src/api/Finance.js

@@ -0,0 +1,680 @@
+import request from "@/utils/request";
+/* ------财务类型----------- */
+//  新增财务类型  Finance/FinanceType/addFinanceType  post
+export function addFinanceType(data) {
+  return request({
+    url: `/Finance/FinanceType/addFinanceType`,
+    method: "post",
+    data,
+  });
+}
+//  编辑财务类型  Finance/FinanceType/editFinanceType/1
+export function editFinanceType(id, data) {
+  return request({
+    url: `/Finance/FinanceType/editFinanceType/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 删除 Finance/FinanceType/delFinanceType/1
+export function delFinanceType(id, data) {
+  return request({
+    url: `/Finance/FinanceType/delFinanceType/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//  财务类型列表 Finance/FinanceType/getAllFinanceType
+export function getAllFinanceType(data) {
+  return request({
+    url: `/Finance/FinanceType/getAllFinanceType`,
+    method: "post",
+    data,
+  });
+}
+// 列表Finance/FinanceType/getAllFinanceTypeNoPage
+export function getAllFinanceTypeNoPage(id, data) {
+  return request({
+    url: `/Finance/FinanceType/getAllFinanceTypeNoPage/${id}`,
+    method: "post",
+    data,
+  });
+}
+//  启用和禁用  Finance/FinanceType/updateFinanceTypeStatus
+export function updateFinanceTypeStatus(data) {
+  return request({
+    url: `/Finance/FinanceType/updateFinanceTypeStatus`,
+    method: "post",
+    data,
+  });
+}
+// 默认  Finance/FinanceType/updateFinanceTypeDefaultStatus
+export function updateFinanceTypeDefaultStatus(data) {
+  return request({
+    url: `/Finance/FinanceType/updateFinanceTypeDefaultStatus`,
+    method: "post",
+    data,
+  });
+}
+/* -----------财务-------------- */
+//  应收单列表  Finance/Receive/getAllReceive  post
+export function getAllReceive(data) {
+  return request({
+    url: `/Finance/Receive/getAllReceive`,
+    method: "post",
+    data,
+  });
+}
+//  应收单列表导出
+export function exportGetAllReceive(data) {
+  return request({
+    url: `/Finance/Receive/getAllReceive`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 应收单搜索  Finance/Receive/search
+export function searchAllReceive(data) {
+  return request({
+    url: `/Finance/Receive/search`,
+    method: "post",
+    data,
+  });
+}
+// 应收单搜索 导出
+export function exportSearchAllReceive(data) {
+  return request({
+    url: `/Finance/Receive/search`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+//  应收详情
+export function getReceiveInfo(data) {
+  return request({
+    url: `/Finance/Receive/getReceiveInfo`,
+    method: "post",
+    data,
+  });
+}
+// 更新应收单审核状态  Finance/Receive/updateReceiveStatus
+export function updateReceiveStatus(data) {
+  return request({
+    url: `/Finance/Receive/updateReceiveStatus`,
+    method: "post",
+    data,
+  });
+}
+// 根据订单no查询应收单
+export function getReceivedByOrder(data) {
+  return request({
+    url: `/Finance/Received/getReceivedByOrder`,
+    method: "post",
+    data,
+  });
+}
+//  应付单列表
+export function getAllPay(data) {
+  return request({
+    url: `/Finance/Pay/getAllPay`,
+    method: "post",
+    data,
+  });
+}
+//  应付单列表导出
+export function exportGetAllPay(data) {
+  return request({
+    url: `/Finance/Pay/getAllPay`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 应付单搜索  Finance/Pay/search
+export function searchPay(data) {
+  return request({
+    url: `/Finance/Pay/search`,
+    method: "post",
+    data,
+  });
+}
+// 应付单搜索
+export function exportSearchPay(data) {
+  return request({
+    url: `/Finance/Pay/search`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+
+// 更新应付单列表状态  Finance/Pay/updatePayStatus
+export function updatePayStatus(data) {
+  return request({
+    url: `/Finance/Pay/updatePayStatus`,
+    method: "post",
+    data,
+  });
+}
+// 应付详情
+export function getPayInfo(data) {
+  return request({
+    url: `/Finance/Pay/getPayInfo`,
+    method: "post",
+    data,
+  });
+}
+/* --------账户管理------------ */
+// 新增账户 Finance/Account/addAccount
+export function addAccount(data) {
+  return request({
+    url: `/Finance/Account/addAccount`,
+    method: "post",
+    data,
+  });
+}
+//  账户列表 Finance/Account/getAllAccount
+export function getAllAccount(data) {
+  return request({
+    url: `/Finance/Account/getAllAccount`,
+    method: "post",
+    data,
+  });
+}
+//  编辑账户 Finance/Account/editAccount/1
+export function editAccount(id, data) {
+  return request({
+    url: `/Finance/Account/editAccount/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  删除账户 Finance/Account/delAccount/1
+export function delAccount(id, data) {
+  return request({
+    url: `/Finance/Account/delAccount/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//  设置默认账户 Finance/Account/updateAccountDefaultStatus
+export function updateAccountDefaultStatus(data) {
+  return request({
+    url: `/Finance/Account/updateAccountDefaultStatus`,
+    method: "post",
+    data,
+  });
+}
+// 账户的启用禁用  Finance/Account/updateAccountStatus
+export function updateAccountStatus(data) {
+  return request({
+    url: `/Finance/Account/updateAccountStatus`,
+    method: "post",
+    data,
+  });
+}
+//  账户的详情 Finance/Account/getAccountInfo/1
+export function getAccountInfo(id, data) {
+  return request({
+    url: `/Finance/Account/getAccountInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 账户明细  Finance/AccountDetail/getAllAccountDetail post
+export function getAllAccountDetail(data) {
+  return request({
+    url: `/Finance/AccountDetail/getAllAccountDetail`,
+    method: "post",
+    data,
+  });
+}
+/* -----收款单---------- */
+//  新增收款单 Finance/Received/addReceived
+export function addReceived(data) {
+  return request({
+    url: `/Finance/Received/addReceived`,
+    method: "post",
+    data,
+  });
+}
+//  删除收款单(未审核通过情况下可执行)
+export function deleteReceived(id, data) {
+  return request({
+    url: `/Finance/Received/deleteReceived/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 导出
+export function exportsgetAllReceived(data) {
+  return request({
+    url: `/Finance/Received/getAllReceived`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 收款单列表 Finance/Received/getAllReceived
+export function getAllReceived(data) {
+  return request({
+    url: `Finance/Received/getAllReceived`,
+    method: "post",
+    data,
+  });
+}
+//  收款单详情 Finance/Received/getReceivedInfo
+export function getReceivedInfo(data) {
+  return request({
+    url: `/Finance/Received/getReceivedInfo`,
+    method: "post",
+    data,
+  });
+}
+//  审核收款单  updateReceivedStatus
+export function updateReceivedStatus(data) {
+  return request({
+    url: `/Finance/Received/updateReceivedStatus`,
+    method: "post",
+    data,
+  });
+}
+// 审核收款申请单
+export function updateReceiptRequisitionStatus(data) {
+  return request({
+    url: `Finance/ReceiptRequisition/updateReceiptRequisitionStatus`,
+    method: "post",
+    data,
+  });
+}
+//  获取收款单暂存数据
+export function getTempReceivedData(data) {
+  return request({
+    url: `/Finance/Received/getTempReceivedData`,
+    method: "get",
+    data,
+  });
+}
+//  收款单搜索
+export function ReceivedSearch(data) {
+  return request({
+    url: `/Finance/Received/search`,
+    method: "post",
+    data,
+  });
+}
+// 编辑收款单 Finance/Received/editReceived/1
+export function editReceived(id, data) {
+  return request({
+    url: `/Finance/Received/editReceived/${id}`,
+    method: "post",
+    data,
+  });
+}
+/* -------------付款单---------- */
+//  新增付 款单 Finance/Paid/addPaid
+export function addPaid(data) {
+  return request({
+    url: `/Finance/Paid/addPaid`,
+    method: "post",
+    data,
+  });
+}
+
+// 付款单搜索  Finance/Paid/search
+export function searchPaid(data) {
+  return request({
+    url: `/Finance/Paid/search`,
+    method: "post",
+    data,
+  });
+}
+// 付款单列表 Finance/Paid/getAllPaid
+export function getAllPaid(data) {
+  return request({
+    url: `/Finance/Paid/getAllPaid`,
+    method: "post",
+    data,
+  });
+}
+export function exportsgetAllPaid(data) {
+  return request({
+    url: `/Finance/Paid/getAllPaid`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+//  付款单详情Finance/Paid/getPaidInfo
+export function getPaidInfo(data) {
+  return request({
+    url: `/Finance/Paid/getPaidInfo`,
+    method: "post",
+    data,
+  });
+}
+//  审核付款单 Finance/Paid/updatePaidStatus
+export function updatePaidStatus(data) {
+  return request({
+    url: `/Finance/Paid/updatePaidStatus`,
+    method: "post",
+    data,
+  });
+}
+//  获取付款单暂存数据 Finance/Paid/getTempPaidData
+export function getTempPaidData(data) {
+  return request({
+    url: `/Finance/Paid/getTempPaidData`,
+    method: "get",
+    data,
+  });
+}
+//  编辑付款单Finance/Paid/editPaid/1
+export function editPaid(id, data) {
+  return request({
+    url: `/Finance/Paid/editPaid/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 客户余额表
+export function getAllCustomerBalance(data) {
+  return request({
+    url: `/Finance/CustomerBalance/getAllCustomerBalance`,
+    method: "post",
+    data,
+  });
+}
+export function exportgetAllCustomerBalance(data) {
+  return request({
+    url: `Finance/CustomerBalance/getAllCustomerBalance`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+//  客户余额明细表
+export function getAllCustomerBalanceDetail(data) {
+  return request({
+    url: `/Finance/CustomerBalanceDetail/getAllCustomerBalanceDetail`,
+    method: "post",
+    data,
+  });
+}
+//客户余额导出
+export function exportgetAllCustomerBalanceDetail(data) {
+  return request({
+    url: `/Finance/CustomerBalanceDetail/getAllCustomerBalanceDetail`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+//  供应商余额列表
+export function getAllSupplierBalance(data) {
+  return request({
+    url: `/Finance/SupplierBalance/getAllSupplierBalance`,
+    method: "post",
+    data,
+  });
+}
+//  供应商余额列表导出
+export function exportGetAllSupplierBalance(data) {
+  return request({
+    url: `/Finance/SupplierBalance/getAllSupplierBalance`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 供应商导出
+export function exportgetAllSupplierBalanceDetail(data) {
+  return request({
+    url: `/Finance/SupplierBalanceDetail/getAllSupplierBalanceDetail`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+//  供应商余额明细
+export function getAllSupplierBalanceDetail(data) {
+  return request({
+    url: `/Finance/SupplierBalanceDetail/getAllSupplierBalanceDetail`,
+    method: "post",
+    data,
+  });
+}
+//  添加资金转账单
+export function addAccountTransfer(data) {
+  return request({
+    url: `/Finance/AccountTransfer/addAccountTransfer`,
+    method: "post",
+    data,
+  });
+}
+//  转账单详情
+export function getAccountTransferInfo(id, data) {
+  return request({
+    url: `/Finance/AccountTransfer/getAccountTransferInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  编辑资金转账单
+export function editAccountTransfer(id, data) {
+  return request({
+    url: `/Finance/AccountTransfer/editAccountTransfer/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  列表
+export function getAllAccountTransfer(data) {
+  return request({
+    url: `/Finance/AccountTransfer/getAllAccountTransfer`,
+    method: "post",
+    data,
+  });
+}
+//  审核
+export function updateAccountTransferStatus(id, data) {
+  return request({
+    url: `/Finance/AccountTransfer/updateAccountTransferStatus/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  获取暂存的数据 Finance/AccountTransfer/getTempAccountTransferData
+export function getTempAccountTransferData(data) {
+  return request({
+    url: `/Finance/AccountTransfer/getTempAccountTransferData`,
+    method: "post",
+    data,
+  });
+}
+// 财务日对账
+export function getTodayStatistics(data) {
+  return request({
+    url: `Finance/Account/getTodayStatistics`,
+    method: "post",
+    data,
+  });
+}
+// 收款申请单列表
+export function getAllReceiptRequisition(data) {
+  return request({
+    url: `Finance/ReceiptRequisition/getAllReceiptRequisition`,
+    method: "post",
+    data,
+  });
+}
+// 新增收款申请单
+export function addReceiptRequisition(data) {
+  return request({
+    url: `Finance/ReceiptRequisition/addReceiptRequisition`,
+    method: "post",
+    data,
+  });
+}
+// 编辑收款申请单
+export function editReceiptRequisition(id, data) {
+  return request({
+    url: `Finance/ReceiptRequisition/editReceiptRequisition/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 收款申请单详情
+export function getReceiptRequisitionInfo(id, data) {
+  return request({
+    url: `Finance/ReceiptRequisition/getReceiptRequisitionInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 查看所有费用类型
+export function getAllAccountType(data) {
+  return request({
+    url: `Finance/AccountType/getAllAccountType`,
+    method: "post",
+    data,
+  });
+}
+// 新增费用类型
+export function addAccountType(data) {
+  return request({
+    url: `Finance/AccountType/addAccountType`,
+    method: "post",
+    data,
+  });
+}
+// 删除费用类型
+export function delAccountType(id, data) {
+  return request({
+    url: `Finance/AccountType/delAccountType/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 删除费用类型
+export function getAccountTypeInfo(id, data) {
+  return request({
+    url: `Finance/AccountType/getAccountTypeInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 编辑费用类型
+export function editAccountType(data) {
+  return request({
+    url: `Finance/AccountType/editAccountType`,
+    method: "post",
+    data,
+  });
+}
+// 所有费用单
+export function getAllExpenseSingle(data) {
+  return request({
+    url: `Finance/ExpenseSingle/getAllExpenseSingle`,
+    method: "post",
+    data,
+  });
+}
+// 新增费用单
+export function addExpenseSingle(data) {
+  return request({
+    url: `Finance/ExpenseSingle/addExpenseSingle`,
+    method: "post",
+    data,
+  });
+}
+// 获取指定费用单
+export function getExpenseSingleInfo(id, data) {
+  return request({
+    url: `Finance/ExpenseSingle/getExpenseSingleInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 编辑费用单
+export function editExpenseSingle(id, data) {
+  return request({
+    url: `Finance/ExpenseSingle/editExpenseSingle/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 删除费用单
+export function delExpenseSingle(id, data) {
+  return request({
+    url: `Finance/ExpenseSingle/delExpenseSingle/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 费用单审核
+export function updateExpenseStatus(data) {
+  return request({
+    url: `Finance/ExpenseSingle/updateExpenseStatus`,
+    method: "post",
+    data,
+  });
+}
+// 所有退款单
+export function getAllRefund(data) {
+  return request({
+    url: `Finance/Refund/getAllRefund`,
+    method: "post",
+    data,
+  });
+}
+// 新增退款单
+export function addRefund(data) {
+  return request({
+    url: `Finance/Refund/addRefund`,
+    method: "post",
+    data,
+  });
+}
+// 获取指定退款单
+export function getRefundInfo(data) {
+  return request({
+    url: `Finance/Refund/getRefundInfo`,
+    method: "post",
+    data,
+  });
+}
+// 编辑退款单
+export function editRefund(id, data) {
+  return request({
+    url: `Finance/Refund/editRefund/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 审核退款单
+export function updateRefundStatus(data) {
+  return request({
+    url: `Finance/Refund/updateRefundStatus`,
+    method: "post",
+    data,
+  });
+}
+//收款核销记录
+export function getAllReceivedOffset(data) {
+  return request({
+    url: `Finance/Received/getAllReceivedOffset`,
+    method: "post",
+    data,
+  });
+}
+//付款核销记录
+export function getAllPaidOffset(data) {
+  return request({
+    url: `Finance/Paid/getAllPaidOffset`,
+    method: "post",
+    data,
+  });
+}

+ 118 - 0
src/api/Integral.js

@@ -0,0 +1,118 @@
+import request from "@/utils/request";
+/* --------------积分商城----------------- */
+// 积分商品禁用
+export function enableIntegralGoods(id, data) {
+  return request({
+    url: `/Integral/IntegralGoods/enableIntegralGoods/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 积分商品添加
+export function addIntegralGoods(data) {
+  return request({
+    url: `/Integral/IntegralGoods/addIntegralGoods`,
+    method: "post",
+    data,
+  });
+}
+// 积分商品详情
+export function getIntegralGoodsInfo(id, data) {
+  return request({
+    url: `/Integral/IntegralGoods/getIntegralGoodsInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 积分商品列表
+export function getAllIntegralGoods(data) {
+  return request({
+    url: `/Integral/IntegralGoods/getAllIntegralGoods`,
+    method: "post",
+    data,
+  });
+}
+// 积分商品修改
+export function updateIntegralGoods(id, data) {
+  return request({
+    url: `/Integral/IntegralGoods/updateIntegralGoods/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 积分商品删除
+export function deleteIntegralGoods(id, data) {
+  return request({
+    url: `/Integral/IntegralGoods/deleteIntegralGoods/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 积分兑换列表
+export function getAllIntegralGoodsExchange(data) {
+  return request({
+    url: `/Integral/IntegralGoods/getAllIntegralGoodsExchange`,
+    method: "post",
+    data,
+  });
+}
+// 积分兑换状态修改
+export function updateIntegralGoodsExchange(id, data) {
+  return request({
+    url: `/Integral/IntegralGoods/updateIntegralGoodsExchange/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 积分规则详情
+export function getIntegralRuleInfo(id, data) {
+  return request({
+    url: `/Integral/IntegralGoods/getIntegralRuleInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 积分规则列表
+export function getAllIntegralRule(data) {
+  return request({
+    url: `/Integral/IntegralGoods/getAllIntegralRule`,
+    method: "post",
+    data,
+  });
+}
+
+// 积分规则修改
+export function updateIntegralRule(id, data) {
+  return request({
+    url: `/Integral/IntegralGoods/updateIntegralRule/${id}`,
+    method: "put",
+    data,
+  });
+}
+
+// 积分规则禁用
+export function enableIntegralRule(id, data) {
+  return request({
+    url: `/Integral/IntegralGoods/enableIntegralRule/${id}`,
+    method: "get",
+    data,
+  });
+}
+
+// 积分规则删除
+export function deleteIntegralRule(id, data) {
+  return request({
+    url: `/Integral/IntegralGoods/deleteIntegralRule/${id}`,
+    method: "get",
+    data,
+  });
+}
+
+// 积分规则添加
+export function addIntegralRule(data) {
+  return request({
+    url: `/Integral/IntegralGoods/addIntegralRule`,
+    method: "post",
+    data,
+  });
+}

+ 253 - 0
src/api/Market.js

@@ -0,0 +1,253 @@
+import request from "@/utils/request";
+/* -----------营销-------------------- */
+// 优惠券搜素  Market/Coupon/search  post
+export function searchMarket(data) {
+  return request({
+    url: `/Market/Coupon/search`,
+    method: "post",
+    data,
+  });
+}
+//  添加优惠券 Market/Coupon/add post
+export function addMarket(data) {
+  return request({
+    url: `/Market/Coupon/add`,
+    method: "post",
+    data,
+  });
+}
+//  优惠券详情  Market/Coupon/getInfo/1 get
+export function getInfo(id, data) {
+  return request({
+    url: `/Market/Coupon/getInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+//  编辑 Market/Coupon/edit/1 put
+export function editMarket(id, data) {
+  return request({
+    url: `/Market/Coupon/edit/${id}`,
+    method: "post",
+    data,
+  });
+}
+//  审核 Market/Coupon/updateAuditStatus
+export function updateAuditStatusMarket(data) {
+  return request({
+    url: `/Market/Coupon/updateAuditStatus`,
+    method: "put",
+    data,
+  });
+}
+//  优惠券启用/禁用
+export function CouponUpdateEnableStatus(data) {
+  return request({
+    url: `/Market/Coupon/updateEnableStatus`,
+    method: "put",
+    data,
+  });
+}
+//  删除Market/Coupon/del/1
+export function delMarket(id, data) {
+  return request({
+    url: `/Market/Coupon/del/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//  列表 Market/Coupon/getAll
+export function getAll(data) {
+  return request({
+    url: `/Market/Coupon/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 发放记录  Market/UserCoupon/getAll
+export function getUserCoupon(data) {
+  return request({
+    url: `/Market/UserCoupon/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 营销活动上下架 Market/Activity/updateEnableStatus
+export function activityStatus(data) {
+  return request({
+    url: `/Market/Activity/updateEnableStatus`,
+    method: "put",
+    data,
+  });
+}
+
+/* ------------商品促销----------------- */
+// 促销活动搜索  Market/Activity/search
+export function searchActivity(data) {
+  return request({
+    url: `/Market/Activity/getAll`,
+    method: "post",
+    data,
+  });
+}
+//  新增 Market/Activity/add
+export function addActivity(data) {
+  return request({
+    url: `/Market/Activity/add`,
+    method: "post",
+    data,
+  });
+}
+//  详情 Market/Activity/getInfo/1
+export function getInfoActivity(id, data) {
+  return request({
+    url: `/Market/Activity/getInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  编辑 Market/Activity/edit/1
+export function editActivity(id, data) {
+  return request({
+    url: `/Market/Activity/edit/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  审核 Market/Activity/updateAuditStatus
+export function updateActivityStatus(data) {
+  return request({
+    url: `/Market/Activity/updateAuditStatus`,
+    method: "put",
+    data,
+  });
+}
+//  删除 Market/Activity/del/1
+export function delActivity(id, data) {
+  return request({
+    url: `/Market/Activity/del/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//  列表
+export function getAllActivity(data) {
+  return request({
+    url: `/Market/Activity/getAll`,
+    method: "post",
+    data,
+  });
+}
+//  会员卡
+// 获取会员卡暂存数据 Market/VipCard/getTempData
+export function getTempVipData(data) {
+  return request({
+    url: `/Market/VipCard/getTempData`,
+    method: "get",
+    data,
+  });
+}
+//  新增会员卡 Market/VipCard/addVipCard
+export function addVipCard(data) {
+  return request({
+    url: `/Market/VipCard/addVipCard`,
+    method: "post",
+    data,
+  });
+}
+//  会员卡详情 Market/VipCard/getVipCardInfo/1
+export function getVipCardInfo(id, data) {
+  return request({
+    url: `/Market/VipCard/getVipCardInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  编辑会员卡 Market/VipCard/editVipCard/1
+export function editVipCard(id, data) {
+  return request({
+    url: `/Market/VipCard/editVipCard/${id}`,
+    method: "post",
+    data,
+  });
+}
+//  删除会员卡 Market/VipCard/delVipCard/1
+export function delVipCard(id, data) {
+  return request({
+    url: `/Market/VipCard/delVipCard/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//  启用/禁用 Market/VipCard/updateVipCardStatus
+export function updateVipCardStatus(data) {
+  return request({
+    url: `/Market/VipCard/updateVipCardStatus`,
+    method: "post",
+    data,
+  });
+}
+//  会员卡列表 Market/VipCard/getAllVipCard
+export function getAllVipCard(data) {
+  return request({
+    url: `/Market/VipCard/getAllVipCard`,
+    method: "post",
+    data,
+  });
+}
+//  领取记录 Market/VipCard/receiveRecord
+export function receiveRecord(data) {
+  return request({
+    url: `/Market/VipCard/receiveRecord`,
+    method: "post",
+    data,
+  });
+}
+//指定客户会员卡一键失效 Market/VipCard/invalidVipCard
+export function invalidVipCard(data) {
+  return request({
+    url: `/Market/VipCard/invalidVipCard`,
+    method: "post",
+    data,
+  });
+}
+//  组合套餐列表 Market/ComBinPackage/getAll
+export function getAllComBinPackage(data) {
+  return request({
+    url: `/Market/ComBinPackage/getAll`,
+    method: "post",
+    data,
+  });
+}
+//  组合套餐列表 启用/禁用 Market/ComBinPackage/enable/1
+export function enableComBinPackage(id, data) {
+  return request({
+    url: `/Market/ComBinPackage/enable/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  组合套餐添加  Market/ComBinPackage/add
+export function addComBinPackage(data) {
+  return request({
+    url: `Market/ComBinPackage/add`,
+    method: "post",
+    data,
+  });
+}
+//  组合套餐编辑  Market/ComBinPackage/add
+export function editComBinPackage(id, data) {
+  return request({
+    url: `Market/ComBinPackage/edit/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 组合套餐详情
+export function getComBinPackage(id, data) {
+  return request({
+    url: `Market/ComBinPackage/get/${id}`,
+    method: "post",
+    data,
+  });
+}

+ 68 - 0
src/api/Material.js

@@ -0,0 +1,68 @@
+import request from "@/utils/request";
+/**
+ * 素材库
+ * */
+// 素材分类添加
+export function addMaterialCategory(data) {
+  return request({
+    url: `/Material/Material/addMaterialCategory`,
+    method: "post",
+    data,
+  });
+}
+// 素材内容添加
+export function addMaterialContent(data) {
+  return request({
+    url: `/Material/Material/addMaterialContent`,
+    method: "post",
+    data,
+  });
+}
+// 素材分类编辑
+export function updateMaterialCategory(data) {
+  return request({
+    url: `/Material/Material/updateMaterialCategory`,
+    method: "post",
+    data,
+  });
+}
+// 素材内容删除
+export function delMaterialContent(data) {
+  return request({
+    url: `/Material/Material/delMaterialContent`,
+    method: "post",
+    data,
+  });
+}
+// 素材分类删除
+export function delMaterialCategory(id, data) {
+  return request({
+    url: `/Material/Material/delMaterialCategory/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 素材分类列表
+export function getAllMaterialCategory(data) {
+  return request({
+    url: `/Material/Material/getAllMaterialCategory`,
+    method: "post",
+    data,
+  });
+}
+// 素材内容列表
+export function getAllMaterialContent(data) {
+  return request({
+    url: `/Material/Material/getAllMaterialContent`,
+    method: "post",
+    data,
+  });
+}
+// 素材内容编辑
+export function updateMaterialContent(data) {
+  return request({
+    url: `/Material/Material/updateMaterialContent`,
+    method: "post",
+    data,
+  });
+}

+ 197 - 0
src/api/Merchants.js

@@ -0,0 +1,197 @@
+import request from "@/utils/request";
+// 添加商户
+export function addMerchant(data) {
+  return request({
+    url: "Merchant/Merchant/addMerchant",
+    method: "post",
+    data,
+  });
+}
+// 商户列表
+export function getAllMerchant(data) {
+  return request({
+    url: "Merchant/Merchant/getAllMerchant",
+    method: "post",
+    data,
+  });
+}
+// 修改商户
+export function updateMerchant(id, data) {
+  return request({
+    url: `Merchant/Merchant/updateMerchant/${id}`,
+    method: "put",
+    data,
+  });
+}
+
+// 保存设置
+export function saveSettingMerchant(data) {
+  return request({
+    url: "Merchant/Merchant/saveSetting",
+    method: "post",
+    data,
+  });
+}
+// 获取设置
+export function getSettingMerchant(data) {
+  return request({
+    url: "Merchant/Merchant/getSetting",
+    method: "post",
+    data,
+  });
+}
+// 商户详情
+export function getInfoMerchant(id, data) {
+  return request({
+    url: `Merchant/Merchant/getInfoMerchant/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 删除商户
+export function delMerchant(id, data) {
+  return request({
+    url: `Merchant/Merchant/delMerchant/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 入驻添加
+// export function getSettingMerchant(data) {
+//   return request({
+//     url: "Merchant/Merchant/getSetting",
+//     method: "post",
+//     data,
+//   });
+// }
+// 入驻审核
+export function auditApply(id, data) {
+  return request({
+    url: `Merchant/Merchant/auditApply/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 商户申请提现
+export function MerchantWithdrawAdd(data) {
+  return request({
+    url: `Merchant/MerchantWithdraw/add`,
+    method: "post",
+    data,
+  });
+}
+// 商户结算
+export function getMerchantWithdraw(data) {
+  return request({
+    url: `Merchant/MerchantWithdraw/get`,
+    method: "post",
+    data,
+  });
+}
+// 商户结算
+export function MerchantWithdrawGetAll(data) {
+  return request({
+    url: `Merchant/MerchantWithdraw/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 更新提现审核状态
+export function MerchantUpdateAuditStatus(id, data) {
+  return request({
+    url: `Merchant/MerchantWithdraw/updateAuditStatus/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 获取商户基本配置
+export function MerchantGetSettingField(id, data) {
+  return request({
+    url: `Merchant/Merchant/getSettingField`,
+    method: "post",
+    data,
+  });
+}
+// 商户资金变动记录
+export function Merchantlog(data) {
+  return request({
+    url: `Merchant/Merchant/log`,
+    method: "post",
+    data,
+  });
+}
+
+// 启用禁用
+export function enabledMerchant(id, data) {
+  return request({
+    url: `Merchant/Merchant/enabledMerchant/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 所有结算单
+export function getAllMerchantSettlement(data) {
+  return request({
+    url: `Merchant/MerchantSettlement/getAllMerchantSettlement`,
+    method: "POST",
+    data,
+  });
+}
+// 结算单状态审核
+export function updateMerchantSettlement(data) {
+  return request({
+    url: `Merchant/MerchantSettlement/updateMerchantSettlement`,
+    method: "POST",
+    data,
+  });
+}
+// 商户提现列表
+export function getAllMerchantWithdraw(data) {
+  return request({
+    url: `Merchant/MerchantWithdraw/getAll`,
+    method: "post",
+    data,
+  });
+}
+//商户申请提现
+export function addMerchantWithdraw(data) {
+  return request({
+    url: `Merchant/MerchantWithdraw/add`,
+    method: "post",
+    data,
+  });
+}
+// 商户列表不分页
+export function getAllMerchantList(data) {
+  return request({
+    url: `Merchant/Merchant/getAllMerchantList`,
+    method: "post",
+    data,
+  });
+}
+// 收支
+export function getAllMerchantDetail(data) {
+  return request({
+    url: `Merchant/MerchantDetail/getAllMerchantDetail`,
+    method: "post",
+    data,
+  });
+}
+// 导出收支
+export function exportgetAllMerchantDetail(data) {
+  return request({
+    url: `/Purchase/Purchase/getAllMerchantDetail`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 结算导出
+export function exportgetAllMerchantSettlement(data) {
+  return request({
+    url: `/Purchase/Purchase/getAllMerchantSettlement`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}

+ 404 - 0
src/api/Order.js

@@ -0,0 +1,404 @@
+import request from "@/utils/request";
+/**
+ * 订单管理
+ * */
+// 批量获取订单详情
+export function getOrderInfoByIds(data) {
+  return request({
+    url: `/Order/Order/getOrderInfoByIds`,
+    method: "post",
+    data,
+  });
+}
+// 新增销售单
+export function addSalesOrder(id, data) {
+  return request({
+    url: `/Order/Order/addSalesOrder/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 确认收款(货到付款待出库订单)
+export function updateOrderPayData(id, data) {
+  return request({
+    url: `/Order/Order/updateOrderPayData/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 增加打印次数
+export function printIncr(id, data) {
+  return request({
+    url: `/Order/Order/printIncr/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 订单搜索  Order/Order/search/1
+export function searchOrder(data) {
+  return request({
+    url: `/Order/Order/search`,
+    method: "post",
+    data,
+  });
+}
+//订单搜索 Order/Order/keywordSearch
+export function keywordSearch(data) {
+  return request({
+    url: `/Order/Order/keywordSearch`,
+    method: "post",
+    data,
+  });
+}
+// 订单导出
+export function exportKeywordSearch(data) {
+  return request({
+    url: `/Order/Order/keywordSearch`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 订单搜索导出
+export function exportSearchOrder(data) {
+  return request({
+    url: `/Order/Order/search`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 获取所有订单
+export function getAllOrder(data) {
+  return request({
+    url: `/Order/Order/getAllOrder`,
+    method: "post",
+    data,
+  });
+}
+// 获取所有订单 导出
+export function exportGetAllOrder(data) {
+  return request({
+    url: `/Order/Order/getAllOrder`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 审核订单
+export function updateAuditStatus(id, data) {
+  return request({
+    url: `/Order/Order/updateAuditStatus/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 驳回订单
+export function revokeAudit(id, data) {
+  return request({
+    url: `/Order/Order/revokeAudit/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 批量审核订单
+export function batchUpdateAuditStatus(data) {
+  return request({
+    url: `/Order/Order/batchUpdateAuditStatus`,
+    method: "post",
+    data,
+  });
+}
+// 删除订单
+export function delOrder(id, data) {
+  return request({
+    url: `/Order/Order/delOrder/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 订单分配业务员
+export function setSalesMan(data) {
+  return request({
+    url: `/Order/Order/setSalesMan`,
+    method: "post",
+    data,
+  });
+}
+
+// 获取订单详情
+export function getOrderInfoById(id, data) {
+  return request({
+    url: `/Order/Order/getOrderInfoById/${id}`,
+    method: "post",
+    data,
+  });
+}
+//销售订单导出
+export function exprotsgetOrderProfit(data) {
+  return request({
+    url: `Order/Order/getOrderProfit`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 销售订单汇总
+export function getAllOrderData(data) {
+  return request({
+    url: `/Order/Order/getAllOrderData`,
+    method: "post",
+    data,
+  });
+}
+// 销售订单汇总打印
+export function exportGetAllOrderData(data) {
+  return request({
+    url: `/Order/Order/getAllOrderData`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 添加订单
+export function addOrder(id, data) {
+  return request({
+    url: `/Order/Order/addOrder/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 新添加订单
+export function newAddOrder(data) {
+  return request({
+    url: `/Order/Order/add`,
+    method: "post",
+    data,
+  });
+}
+// 订单编辑保存 before
+export function saveEdit(data) {
+  return request({
+    url: `/Order/Order/saveEdit`,
+    method: "post",
+    data,
+  });
+}
+// 订单编辑
+export function orderEdit(id, data) {
+  return request({
+    url: `/Order/Order/orderEdit/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 新订单编辑
+export function newOrderEdit(id, data) {
+  return request({
+    url: `/Order/Order/edit/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 订单再次出库
+export function reStockOut(id, data) {
+  return request({
+    url: `/Order/Order/reStockOut/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 修改订单的发货信息
+export function editOrderExpress(id, data) {
+  return request({
+    url: `/Order/Order/editOrderExpress/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 取消订单
+export function updateOrderStatus(id, data) {
+  return request({
+    url: `/Order/Order/updateOrderStatus/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 销售退货添加
+export function addOrderOut(data) {
+  return request({
+    url: `/Order/OrderReturn/addOrderReturn`,
+    method: "post",
+    data,
+  });
+}
+// 销售退货单列表
+export function getAllOrderOut(data) {
+  return request({
+    url: `/Order/OrderReturn/getAllOrderReturn`,
+    method: "post",
+    data,
+  });
+}
+// 销售退货单列表
+export function exportGetAllOrderOut(data) {
+  return request({
+    url: `/Order/OrderReturn/getAllOrderReturn`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 销售退货审核
+export function auditOrderOut(id, data) {
+  return request({
+    url: `/Order/OrderReturn/auditOrderReturn/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 删除销售退货单
+export function deleteOrderOut(id, data) {
+  return request({
+    url: `/Order/OrderReturn/deleteOrderReturn/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 销售退货详情
+export function getOrderOut(id, data) {
+  return request({
+    url: `/Order/OrderReturn/getOrderReturn/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 销售退货修改
+export function updateOrderOut(id, data) {
+  return request({
+    url: `/Order/OrderReturn/updateOrderReturn/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 销售订单毛利明细
+export function getOrderProfit(data) {
+  return request({
+    url: `/Order/Order/getOrderProfit`,
+    method: "put",
+    data,
+  });
+}
+// 退货单的搜索
+export function searchAllOrderOut(data) {
+  return request({
+    url: `/Order/OrderReturn/searchAllOrderReturn`,
+    method: "post",
+    data,
+  });
+}
+// 退货单的搜索
+export function exportSearchAllOrderOut(data) {
+  return request({
+    url: `/Order/OrderReturn/searchAllOrderReturn`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 收银台订单
+export function getAllOrderOrder(data) {
+  return request({
+    url: `/Order/Order/getAllOrder`,
+    method: "post",
+    data,
+  });
+}
+// 核销订单
+export function OrderVerification(id, data) {
+  return request({
+    url: `/Order/Order/verification/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 获取核销订单
+export function getOrderByVerifyCode(data) {
+  return request({
+    url: `/Order/Order/getOrderByVerifyCode`,
+    method: "post",
+    data,
+  });
+}
+// 收银台创建订单
+export function cashierOrder(data) {
+  return request({
+    url: `/Order/Order/cashierOrder`,
+    method: "post",
+    data,
+  });
+}
+// 销售日对账
+export function statistics(data) {
+  return request({
+    url: `/Order/Order/statistics`,
+    method: "post",
+    data,
+  });
+}
+// 缺货单
+export function getDistributionAll(data) {
+  return request({
+    url: `/Order/Order/getDistributionAll`,
+    method: "POST",
+    data,
+  });
+}
+// 抄码商品退款
+export function retAmount(data) {
+  return request({
+    url: `Order/Order/retAmount`,
+    method: "POST",
+    data,
+  });
+}
+//物流信息
+export function addLogistics(data) {
+  return request({
+    url: `Order/Order/addLogistics`,
+    method: "POST",
+    data,
+  });
+}
+//销售退货驳回
+export function rejectOrderReturn(data) {
+  return request({
+    url: `Order/OrderReturn/rejectOrderReturn`,
+    method: "put",
+    data,
+  });
+}
+//拣货中心待拣货单据列表
+export function getAllOrderPicking(data) {
+  return request({
+    url: `Order/OrderPicking/getAllOrderPicking`,
+    method: "post",
+    data,
+  });
+}
+//指定拣货单据
+export function getOrderPickingInfo(id, data) {
+  return request({
+    url: `Order/OrderPicking/getOrderPickingInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 待拣货明细
+export function getAllPickingGoodsDetail(data) {
+  return request({
+    url: `Order/OrderPicking/getAllPickingGoodsDetail`,
+    method: "post",
+    data,
+  });
+}

+ 176 - 0
src/api/Price.js

@@ -0,0 +1,176 @@
+import request from "@/utils/request";
+/* --- 价格管理 --- */
+// 价格列表
+export function getAllGoodsPrice(data) {
+  return request({
+    url: "/Price/Price/getAllGoodsPrice",
+    method: "post",
+    data,
+  });
+}
+// 价格管理的搜索  Price/Price/search
+export function searchPrice(data) {
+  return request({
+    url: "/Price/Price/search",
+    method: "post",
+    data,
+  });
+}
+// 批量调价
+export function batchPrice(data) {
+  return request({
+    url: "/Price/Price/batchPrice",
+    method: "put",
+    data,
+  });
+}
+
+/* --- 商品调价 --- */
+// 商品调价的搜索
+export function getAllSearch(data) {
+  return request({
+    url: "/Price/PriceAdjustment/getAll",
+    method: "post",
+    data,
+  });
+}
+// 增加调价单
+export function PriceAdjustmentAdd(data) {
+  return request({
+    url: "/Price/PriceAdjustment/add",
+    method: "post",
+    data,
+  });
+}
+// 获取调价单列表
+export function PriceAdjustmentGetAll(data) {
+  return request({
+    url: "/Price/PriceAdjustment/getAll",
+    method: "post",
+    data,
+  });
+}
+// 生效调价单
+export function PriceAdjustmentEffective(id, data) {
+  return request({
+    url: `/Price/PriceAdjustment/effective/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 自动创建调价单且自动生效接口
+export function addAndEffective(data) {
+  return request({
+    url: `/Price/PriceAdjustment/addAndEffective`,
+    method: "post",
+    data,
+  });
+}
+// 获取指定商品的最后生效的客户调价单数据
+export function getCustomerPriceByGoodsIds(data) {
+  return request({
+    url: `/Price/CustomerPriceAdjustment/getCustomerPriceByGoodsIds`,
+    method: "post",
+    data,
+  });
+}
+// 获取指定商品的最后生效的客户类型调价数据
+export function getCustomerTypePriceByGoodsIds(data) {
+  return request({
+    url: `/Price/CustomerTypePriceAdjustment/getCustomerTypePriceByGoodsIds`,
+    method: "post",
+    data,
+  });
+}
+// 删除指定商品的最后生效的客户类型调价数据
+export function delCustomerTypePrice(data) {
+  return request({
+    url: `/Price/CustomerTypePriceAdjustment/delCustomerTypePrice`,
+    method: "post",
+    data,
+  });
+}
+// 删除指定商品的最后生效的客户调价单数据
+export function delCustomerPrice(data) {
+  return request({
+    url: `/Price/CustomerPriceAdjustment/delCustomerPrice`,
+    method: "post",
+    data,
+  });
+}
+// 客户类型调价单
+export function addCustomerTypePriceAdjustment(data) {
+  return request({
+    url: `/Price/CustomerTypePriceAdjustment/add`,
+    method: "post",
+    data,
+  });
+}
+// 客户类型调价单列表
+export function getAllCustomerTypePriceAdjustment(data) {
+  return request({
+    url: `/Price/CustomerTypePriceAdjustment/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 导出客户类型调价单列表
+export function exportgetAllCustomerTypePriceAdjustment(data) {
+  return request({
+    url: `/Price/CustomerTypePriceAdjustment/getAll`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+//商品掉价单导出
+export function exportPriceAdjustment(data) {
+  return request({
+    url: `Price/PriceAdjustment/getAll`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+//客户调价单导出
+export function exportCustomerPriceAdjustment(data) {
+  return request({
+    url: `Price/CustomerPriceAdjustment/getAll`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 生效客户类型调价单
+export function effectiveCustomerTypePriceAdjustment(id, data) {
+  return request({
+    url: `/Price/CustomerTypePriceAdjustment/effective/${id}`,
+    method: "post",
+    data,
+  });
+}
+/* --- 客户调价单 --- */
+// 新增客户调价单
+export function CustomerPriceAdjustmentAdd(data) {
+  return request({
+    url: `/Price/CustomerPriceAdjustment/add`,
+    method: "post",
+    data,
+  });
+}
+// 获取客户调价单
+export function CustomerPriceAdjustmentGetAll(data) {
+  return request({
+    url: `/Price/CustomerPriceAdjustment/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 生效客户调价单
+export function CustomerPriceAdjustmentEffective(id, data) {
+  return request({
+    url: `/Price/CustomerPriceAdjustment/effective/${id}`,
+    method: "put",
+    data,
+  });
+}

+ 279 - 0
src/api/Purchase.js

@@ -0,0 +1,279 @@
+import request from "@/utils/request";
+
+//  采购汇总
+//  采购商品汇总  purchase/purchase/getAllPurchaseByFields
+export function getAllPurchaseByFields(data) {
+  return request({
+    url: `/purchase/purchase/getAllPurchaseByFields`,
+    method: "post",
+    data,
+  });
+}
+//采购汇总导出
+export function exportgetAllPurchaseByFields(data) {
+  return request({
+    url: `/purchase/purchase/getAllPurchaseByFields`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+/* -----------供应商----------------- */
+
+//  添加供应商  Purchase/Supplier/addSupplier  post
+export function addSupplier(data) {
+  return request({
+    url: `/Purchase/Supplier/addSupplier`,
+    method: "post",
+    data,
+  });
+}
+//  供应商详情  Purchase/Supplier/getSupplierInfoById/1  get
+export function getSupplierInfoById(id, data) {
+  return request({
+    url: `/Purchase/Supplier/getSupplierInfoById/${id}`,
+    method: "get",
+    data,
+  });
+}
+
+// 编辑供应商  Purchase/Supplier/editSupplier/1  put
+export function editSupplier(id, data) {
+  return request({
+    url: `/Purchase/Supplier/editSupplier/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  供应商显示/隐藏  Purchase/Supplier/updateEnableStatus/1 put
+export function supplierEnableStatus(id, data) {
+  return request({
+    url: `/Purchase/Supplier/updateEnableStatus/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 删除供应商  Purchase/Supplier/delSupplier/1  del
+export function delSupplier(id, data) {
+  return request({
+    url: `/Purchase/Supplier/delSupplier/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//  供应商列表   Purchase/Supplier/getAllSupplier  post
+export function getAllSupplier(data) {
+  return request({
+    url: `/Purchase/Supplier/getAllSupplier`,
+    method: "post",
+    data,
+  });
+}
+
+/* -----采购订单-------- */
+//  采购订单一键完结
+export function retMoney(id, data) {
+  return request({
+    url: `/Purchase/Purchase/retMoney/${id}`,
+    method: "post",
+    data,
+  });
+}
+//  采购订单再次入库
+export function reStockIn(id, data) {
+  return request({
+    url: `/Purchase/Purchase/reStockIn/${id}`,
+    method: "post",
+    data,
+  });
+}
+//  增加采购订单  Purchase/Purchase/addPurchase  post
+export function addPurchase(data) {
+  return request({
+    url: `/Purchase/Purchase/addPurchase`,
+    method: "post",
+    data,
+  });
+}
+// 采购单详情  Purchase/Purchase/getPurchaseInfoById/1 get
+export function getPurchaseInfoById(id, data) {
+  return request({
+    url: `/Purchase/Purchase/getPurchaseInfoById/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 更新审核状态  Purchase/Purchase/updateAuditStatus/1 put
+export function updatePurchaseStatus(id, data) {
+  return request({
+    url: `/Purchase/Purchase/updateAuditStatus/${id}`,
+    method: "put",
+    data,
+  });
+}
+//    删除采购单  Purchase/Purchase/delPurchase/1  del
+export function delPurchase(id, data) {
+  return request({
+    url: `/Purchase/Purchase/delPurchase/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//  采购单列表  Purchase/Purchase/getAllPurchase  post
+export function getAllPurchase(data) {
+  return request({
+    url: `/Purchase/Purchase/getAllPurchase`,
+    method: "post",
+    data,
+  });
+}
+//  采购单列表 导出
+export function exportGetAllPurchase(data) {
+  return request({
+    url: `/Purchase/Purchase/getAllPurchase`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+//  编辑采购单列表  Purchase/Purchase/editPurchase/1  put
+export function editPurchase(id, data) {
+  return request({
+    url: `/Purchase/Purchase/editPurchase/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 采购明细
+export function getAllPurchaseDetails(data) {
+  return request({
+    url: `/Purchase/Purchase/getAllPurchaseDetails`,
+    method: "post",
+    data,
+  });
+}
+// 采购明细
+export function exportGetAllPurchaseDetails(data) {
+  return request({
+    url: `/Purchase/Purchase/getAllPurchaseDetails`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 采购明细搜索
+export function searchAllPurchaseDetails(data) {
+  return request({
+    url: `/Purchase/Purchase/searchAllPurchaseDetails`,
+    method: "post",
+    data,
+  });
+}
+// 采购明细搜索
+export function exportSearchAllPurchaseDetails(data) {
+  return request({
+    url: `/Purchase/Purchase/searchAllPurchaseDetails`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+
+/* --------------采购退货单-------------------- */
+//  增加采购退货单  Purchase/PurchaseOut/addPurchaseOut post
+export function addPurchaseOut(data) {
+  return request({
+    url: `/Purchase/PurchaseOut/addPurchaseOut`,
+    method: "post",
+    data,
+  });
+}
+//  采购退货单详情  Purchase/PurchaseOut/getPurchaseOutInfoById/1 get
+export function getPurchaseOutInfoById(id, data) {
+  return request({
+    url: `/Purchase/PurchaseOut/getPurchaseOutInfoById/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  更新审核状态  Purchase/PurchaseOut/updateAuditStatus/1  put
+export function updatePurchaseOut(id, data) {
+  return request({
+    url: `/Purchase/PurchaseOut/updateAuditStatus/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  删除采购退货单  Purchase/PurchaseOut/delPurchaseOut/1  del
+export function delPurchaseOut(id, data) {
+  return request({
+    url: `/Purchase/PurchaseOut/delPurchaseOut/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//  采购退货单列表  Purchase/PurchaseOut/getAllPurchaseOut  post
+export function getAllPurchaseOut(data) {
+  return request({
+    url: `/Purchase/PurchaseOut/getAllPurchaseOut`,
+    method: "post",
+    data,
+  });
+}
+//  采购退货单列表
+export function exportGetAllPurchaseOut(data) {
+  return request({
+    url: `/Purchase/PurchaseOut/getAllPurchaseOut`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 编辑采购退货单  Purchase/PurchaseOut/editPurchase/1   put
+export function editPurchaseOut(id, data) {
+  return request({
+    url: `/Purchase/PurchaseOut/editPurchase/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 采购退货页面统计数据  Purchase/Purchase/getAllData  get
+export function getAllData(data) {
+  return request({
+    url: `/Purchase/Purchase/getAllData`,
+    method: "get",
+    data,
+  });
+}
+// 采购退货需要的采购订单列表
+export function getAllPurchaseAndDetails(data) {
+  return request({
+    url: `/Purchase/Purchase/getAllPurchaseAndDetails`,
+    method: "post",
+    data,
+  });
+}
+// 采购订单详情和批次数据(采购退货单用)  Purchase/Purchase/getPurchaseAndBatchInfoById
+export function getPurchaseAndBatchInfoById(data) {
+  return request({
+    url: `/Purchase/Purchase/getPurchaseAndBatchInfoById`,
+    method: "post",
+    data,
+  });
+}
+// 添加供应商为用户
+export function addSupplierUserCenter(id, data) {
+  return request({
+    url: `Purchase/Supplier/addSupplierUserCenter/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 导入供应商
+export function supplierImport(data) {
+  return request({
+    url: `Purchase/Supplier/supplierImport`,
+    method: "post",
+    data,
+  });
+}

+ 51 - 0
src/api/Reward.js

@@ -0,0 +1,51 @@
+import request from "@/utils/request";
+/* --------------提成规则----------------- */
+
+// 提成规则修改
+export function updateRewardRule(id, data) {
+  return request({
+    url: `/Reward/Reward/updateRewardRule/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 提成规则禁用
+export function enableRewardRule(id, data) {
+  return request({
+    url: `/Reward/Reward/enableRewardRule/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 提成规则删除
+export function deleteRewardRule(id, data) {
+  return request({
+    url: `/Reward/Reward/deleteRewardRule/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 提成规则添加
+export function addRewardRule(data) {
+  return request({
+    url: `/Reward/Reward/addRewardRule`,
+    method: "post",
+    data,
+  });
+}
+// 提成规则详情
+export function getRewardRuleInfo(id, data) {
+  return request({
+    url: `/Reward/Reward/getRewardRuleInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 提成规则列表
+export function getAllRewardRule(data) {
+  return request({
+    url: `/Reward/Reward/getAllRewardRule`,
+    method: "post",
+    data,
+  });
+}

+ 197 - 0
src/api/Shop.js

@@ -0,0 +1,197 @@
+import request from "@/utils/request";
+/* --- 系统管路 商铺列表 --- */
+// 商铺合作
+//  商铺合作添加  ShopPartner/ShopPartner/addShopPartner  post
+export function addShopPartner(data) {
+  return request({
+    url: `/ShopPartner/ShopPartner/addShopPartner`,
+    method: "post",
+    data,
+  });
+}
+// 获取暂存数据 Shop/Shop/getTempData
+export function getTempShopData(data) {
+  return request({
+    url: `/Shop/Shop/getTempData`,
+    method: "get",
+    data,
+  });
+}
+//  商铺合作删除  ShopPartner/ShopPartner/deleteShopPartner/1  del
+export function deleteShopPartner(id, data) {
+  return request({
+    url: `/ShopPartner/ShopPartner/deleteShopPartner/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//  商铺合作修改  ShopPartner/ShopPartner/updateShopPartner/1 put
+export function updateShopPartner(id, data) {
+  return request({
+    url: `/ShopPartner/ShopPartner/updateShopPartner/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  商铺合作列表  ShopPartner/ShopPartner/getAllShopPartner  post
+export function getAllShopPartner(data) {
+  return request({
+    url: `/ShopPartner/ShopPartner/getAllShopPartner`,
+    method: "post",
+    data,
+  });
+}
+//  商铺合作详情  ShopPartner/ShopPartner/getShopPartnerInfo/1  get
+export function getShopPartnerInfo(id, data) {
+  return request({
+    url: `/ShopPartner/ShopPartner/getShopPartnerInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 商铺合作的启用禁用  ShopPartner/ShopPartner/enableShopPartner put
+export function enableShopPartner(data) {
+  return request({
+    url: `/ShopPartner/ShopPartner/enableShopPartner`,
+    method: "put",
+    data,
+  });
+}
+// 合作搜索  ShopPartner/ShopPartner/search post
+export function partherSearch(data) {
+  return request({
+    url: `/ShopPartner/ShopPartner/search`,
+    method: "put",
+    data,
+  });
+}
+// 获取企业下的管理员(添加合伙人页面下拉列表)
+export function getManagerList(data) {
+  return request({
+    url: `/ShopPartner/ShopPartner/getManagerList`,
+    method: "get",
+    data,
+  });
+}
+
+//  商铺管理
+//  添加商铺 Shop/Shop/addShop post
+export function addShop(data) {
+  return request({
+    url: `/Shop/Shop/addShop`,
+    method: "post",
+    data,
+  });
+}
+//  商铺详情 Shop/Shop/getShopInfo/1 get
+export function getShopInfo(id, data) {
+  return request({
+    url: `/Shop/Shop/getShopInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  编辑商铺  Shop/Shop/editShop/1  put
+export function editShop(id, data) {
+  return request({
+    url: `/Shop/Shop/editShop/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  删除商铺  Shop/Shop/delShop/1 get
+export function delShop(id, data) {
+  return request({
+    url: `/Shop/Shop/delShop/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  商铺列表 Shop/Shop/getAllShop post
+export function getAllShop(data) {
+  return request({
+    url: `/Shop/Shop/getAllShop`,
+    method: "post",
+    data,
+  });
+}
+// 更换商铺负责人  Shop/Shop/changeManagerForShop post
+export function changeManagerForShop(data) {
+  return request({
+    url: `/Shop/Shop/changeManagerForShop`,
+    method: "post",
+    data,
+  });
+}
+// 商铺搜索  Shop/Shop/search post
+export function search(data) {
+  return request({
+    url: `/Shop/Shop/search`,
+    method: "post",
+    data,
+  });
+}
+// 商铺管理启用禁用  Shop/Shop/updateShopStatus post
+export function updateShopStatus(data) {
+  return request({
+    url: `/Shop/Shop/updateShopStatus`,
+    method: "post",
+    data,
+  });
+}
+// 当前企业下已有的销售区域
+export function getSalesAreaInEnterprise(data) {
+  return request({
+    url: `/Shop/Shop/getSalesAreaInEnterprise`,
+    method: "get",
+    data,
+  });
+}
+// 获取员工所在商铺列表
+export function getShopByStaff(data) {
+  return request({
+    url: `/Shop/Shop/getShopByStaff`,
+    method: "post",
+    data,
+  });
+}
+// 获取商铺下的员工
+export function getStaffByShopId(data) {
+  return request({
+    url: `Department/Staff/getStaffByShopId`,
+    method: "post",
+    data,
+  });
+}
+// 设置店长
+export function setStaffType(data) {
+  return request({
+    url: `Shop/Shop/setStaffType`,
+    method: "post",
+    data,
+  });
+}
+// 职工详情
+export function getStaffInfo(data) {
+  return request({
+    url: `Department/Staff/getStaffInfo`,
+    method: "put",
+    data,
+  });
+}
+// 设置总店
+export function setTopShop(id, data) {
+  return request({
+    url: `/Shop/Shop/setTopShop/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 删除店长
+export function delManager(data) {
+  return request({
+    url: `/Shop/Shop/delManager`,
+    method: "post",
+    data,
+  });
+}

+ 689 - 0
src/api/Stock.js

@@ -0,0 +1,689 @@
+import request from "@/utils/request";
+/**
+ * 库存管理
+ * */
+/* -----------仓库管理----------------- */
+// 仓库详情
+export function getWarehouseInfo(id, data) {
+  return request({
+    url: `/Stock/Warehouse/getWarehouseInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 仓库列表
+export function getAllWarehouse(data) {
+  return request({
+    url: `/Stock/Warehouse/getAllWarehouse`,
+    method: "post",
+    data,
+  });
+}
+// 仓库启用
+export function enableWarehouse(data) {
+  return request({
+    url: `/Stock/Warehouse/enableWarehouse`,
+    method: "post",
+    data,
+  });
+}
+// 仓库修改
+export function updateWarehouse(id, data) {
+  return request({
+    url: `/Stock/Warehouse/updateWarehouse/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 仓库删除
+export function deleteWarehouse(id, data) {
+  return request({
+    url: `/Stock/Warehouse/deleteWarehouse/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 仓库添加
+export function addWarehouse(data) {
+  return request({
+    url: `/Stock/Warehouse/addWarehouse`,
+    method: "post",
+    data,
+  });
+}
+// 仓库期初添加PageDesignEdit
+export function addWarehouseBeginning(data) {
+  return request({
+    url: `/Stock/Warehouse/addWarehouseBeginning`,
+    method: "post",
+    data,
+  });
+}
+/* -----------出库----------------- */
+// 除了销售出库——————出库设置物流信息
+export function stockaddLogistics(data) {
+  return request({
+    url: `/Stock/InventoryOut/addLogistics`,
+    method: "post",
+    data,
+  });
+}
+// 出库列表
+export function getAllSaleOut(data) {
+  return request({
+    url: `/Stock/InventoryOut/getAllInventoryOut`,
+    method: "post",
+    data,
+  });
+}
+// 出库列表
+export function exportGetAllSaleOut(data) {
+  return request({
+    url: `/Stock/InventoryOut/getAllInventoryOut`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 出库详情
+export function getSaleOutInfo(id, data) {
+  return request({
+    url: `/Stock/InventoryOut/getInventoryOutInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 出库详情
+export function getSaleOutInfoT(data) {
+  return request({
+    url: `/Stock/InventoryOut/getInventoryOutInfo`,
+    method: "post",
+    data,
+  });
+}
+// 出库搜索  Stock/InventoryOut/searchAllSaleOut
+export function searchAllSaleOut(data) {
+  return request({
+    url: `/Stock/InventoryOut/searchAllInventoryOut`,
+    method: "post",
+    data,
+  });
+}
+// 出库状态修改
+export function updateSaleOutStatus(data) {
+  return request({
+    url: `/Stock/InventoryOut/updateInventoryOutStatus`,
+    method: "post",
+    data,
+  });
+}
+// 出库测试接口
+export function saveOutInventory(id, data) {
+  return request({
+    url: `/Stock/InventoryOut/saveOutInventory/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 出库统计 Stock/InventoryOut/statisticsAllInventoryOut
+export function statisticsAllSaleOut(data) {
+  return request({
+    url: `/Stock/InventoryOut/statisticsAllInventoryOut`,
+    method: "post",
+    data,
+  });
+}
+/* -----------入库----------------- */
+// 入库驳回
+export function rejectInventory(data) {
+  return request({
+    url: `/Stock/InventoryIn/rejectInventory`,
+    method: "post",
+    data,
+  });
+}
+// 采购入库删除商品
+export function deleteDetailByInventoryInId(data) {
+  return request({
+    url: `/Stock/InventoryIn/deleteDetailByInventoryInId`,
+    method: "post",
+    data,
+  });
+}
+// 入库搜索
+export function searchAllPurchaseIn(data) {
+  return request({
+    url: `/Stock/InventoryIn/searchAllInventoryIn`,
+    method: "post",
+    data,
+  });
+}
+// 入库详情
+export function getPurchaseInInfo(id, data) {
+  return request({
+    url: `/Stock/InventoryIn/getInventoryInInfo/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 入库详情2
+export function getPurchaseInInfoT(data) {
+  return request({
+    url: `/Stock/InventoryIn/getInventoryInInfo`,
+    method: "put",
+    data,
+  });
+}
+// 入库列表
+export function getAllPurchaseIn(data) {
+  return request({
+    url: `/Stock/InventoryIn/getAllInventoryIn`,
+    method: "post",
+    data,
+  });
+}
+// 入库列表
+export function exportsGetAllPurchaseIn(data) {
+  return request({
+    url: `/Stock/InventoryIn/getAllInventoryIn`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 入库状态修改
+export function updatePurchaseInStatus(data) {
+  return request({
+    url: `/Stock/InventoryIn/updateInventoryInStatus`,
+    method: "post",
+    data,
+  });
+}
+// 入库统计  stock/InventoryIn/statisticsAllPurchaseIn
+export function statisticsAllPurchaseIn(data) {
+  return request({
+    url: `/Stock/InventoryIn/statisticsAllInventoryIn`,
+    method: "post",
+    data,
+  });
+}
+/* ------------库存列表------------ */
+// 库存列表 Stock/Inventory/getInventoryAll  post
+export function getInventoryAll(data) {
+  return request({
+    url: `/Stock/Inventory/getInventoryAll`,
+    method: "post",
+    data,
+  });
+}
+// 库存列表
+export function exportGetInventoryAll(data) {
+  return request({
+    url: `/Stock/Inventory/getInventoryAll`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 库存流水列表
+export function getInventoryDetailsAll(data) {
+  return request({
+    url: `/Stock/Inventory/getInventoryDetailsAll`,
+    method: "post",
+    data,
+  });
+}
+// 库存流水列表
+export function exportGetInventoryDetailsAll(data) {
+  return request({
+    url: `/Stock/Inventory/getInventoryDetailsAll`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 库存流水搜索  stock/Inventory/searchAllInventoryDetails
+export function searchAllInventoryDetails(data) {
+  return request({
+    url: `/Stock/Inventory/searchAllInventoryDetails`,
+    method: "post",
+    data,
+  });
+}
+// 库存流水搜索
+export function exportSearchAllInventoryDetails(data) {
+  return request({
+    url: `/Stock/Inventory/searchAllInventoryDetails`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 保质期查询(批次列表)
+export function getAllBatch(data) {
+  return request({
+    url: `/Stock/Inventory/getAllBatch`,
+    method: "post",
+    data,
+  });
+}
+// 搜索
+export function searchAllInventoryBatch(data) {
+  return request({
+    url: `/Stock/Inventory/searchAllInventoryBatch`,
+    method: "post",
+    data,
+  });
+}
+/* --------------盘点-------------------- */
+// 盘点库存详情
+export function getStocktakingInfo(id, data) {
+  return request({
+    url: `/Stock/Stocktaking/getStocktakingInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 盘点库存修改
+export function updateStocktaking(id, data) {
+  return request({
+    url: `/Stock/Stocktaking/updateStocktaking/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 盘点库存审核
+export function auditStocktaking(id, data) {
+  return request({
+    url: `/Stock/Stocktaking/auditStocktaking/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 盘点库存列表
+export function getAllStocktaking(data) {
+  return request({
+    url: `/Stock/Stocktaking/getAllStocktaking`,
+    method: "post",
+    data,
+  });
+}
+// 盘点库存列表导出
+export function exportGetAllStocktaking(data) {
+  return request({
+    url: `/Stock/Stocktaking/getAllStocktaking`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 盘点单搜索 stock/Stocktaking/searchAllStocktaking
+export function searchAllStocktaking(data) {
+  return request({
+    url: `/Stock/Stocktaking/searchAllStocktaking`,
+    method: "post",
+    data,
+  });
+}
+// 盘点单搜索 导出
+export function exportSearchAllStocktaking(data) {
+  return request({
+    url: `/Stock/Stocktaking/searchAllStocktaking`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 盘点库存添加
+export function addStocktaking(data) {
+  return request({
+    url: `/Stock/Stocktaking/addStocktaking`,
+    method: "post",
+    data,
+  });
+}
+/* -----------库存汇总表----------------- */
+
+// 库存汇总
+export function inventoryStatistics(data) {
+  return request({
+    url: `/Stock/Inventory/inventoryStatistics`,
+    method: "post",
+    data,
+  });
+}
+// 库存汇总
+export function exportsInventoryStatistics(data) {
+  return request({
+    url: `/Stock/Inventory/inventoryStatistics`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 库存汇总搜索
+export function searchInventoryStatistics(data) {
+  return request({
+    url: `/Stock/Inventory/searchInventoryStatistics`,
+    method: "post",
+    data,
+  });
+}
+/* -----------其他----------------- */
+//  采购单列表Stock
+export function StockGetAllPurchase(data) {
+  return request({
+    url: `/Stock/InventoryIn/getAllPurchaseIn`,
+    method: "post",
+    data,
+  });
+}
+//  入库成功列表
+export function PurchaseInGetAllPurchaseOut(data) {
+  return request({
+    url: `/Stock/InventoryIn/getAllInventoryInByAudit`,
+    method: "post",
+    data,
+  });
+}
+// 库存分布
+export function getWarehouseInventory(id, data) {
+  return request({
+    url: `/Stock/Inventory/getWarehouseInventory/${id}`,
+    method: "get",
+    data,
+  });
+}
+/* ----------调拨仓库添加------------- */
+//  仓库调拨添加  Stock/Allocate/addAllocate post
+export function addAllocate(data) {
+  return request({
+    url: `/Stock/Allocate/addAllocate`,
+    method: "post",
+    data,
+  });
+}
+//  仓库库存列表 stock/Inventory/getInventoryByWarehouseId post
+export function getInventoryByWarehouseId(data) {
+  return request({
+    url: `/stock/Inventory/getInventoryByWarehouseId`,
+    method: "post",
+    data,
+  });
+}
+//  仓库调拨列表 Stock/Allocate/getAllAllocate post
+export function getAllAllocate(data) {
+  return request({
+    url: `/Stock/Allocate/getAllAllocate`,
+    method: "post",
+    data,
+  });
+}
+//  仓库调拨删除 Stock/Allocate/deleteAllocate/1
+export function deleteAllocate(id, data) {
+  return request({
+    url: `/Stock/Allocate/deleteAllocate/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//  获取详情  Stock/Allocate/getAllocateInfo/1 get
+export function getAllocateInfo(id, data) {
+  return request({
+    url: `/Stock/Allocate/getAllocateInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  编辑调拨单 Stock/Allocate/updateAllocate  post
+export function updateAllocate(id, data) {
+  return request({
+    url: `/Stock/Allocate/updateAllocate/${id}`,
+    method: "post",
+    data,
+  });
+}
+//  审核调拨单 Stock/Allocate/auditAllocate/2  put
+export function auditAllocate(id, data) {
+  return request({
+    url: `/Stock/Allocate/auditAllocate/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 调拨单搜索  stock/Allocate/searchAllocate
+export function searchAllocate(data) {
+  return request({
+    url: `/Stock/Allocate/searchAllocate`,
+    method: "post",
+    data,
+  });
+}
+// 查询物料批次数据
+export function getBatchByIds(data) {
+  return request({
+    url: `/Stock/Inventory/getBatchByIds`,
+    method: "post",
+    data,
+  });
+}
+// 换算sku数量
+export function getSkuNum(data) {
+  return request({
+    url: `/Stock/Inventory/getSkuNum`,
+    method: "post",
+    data,
+  });
+}
+// 换算基本单位sku数量
+export function getMasterSkuNum(data) {
+  return request({
+    url: `/Stock/Inventory/getMasterSkuNum`,
+    method: "post",
+    data,
+  });
+}
+/* --------------库区库位-------------- */
+// 库区添加
+export function addReservoir(data) {
+  return request({
+    url: `/Stock/ReservoirArea/addReservoir`,
+    method: "post",
+    data,
+  });
+}
+// 库区详情
+export function getReservoirInfo(id, data) {
+  return request({
+    url: `/Stock/ReservoirArea/getReservoirInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 库区列表
+export function getAllReservoir(data) {
+  return request({
+    url: `/Stock/ReservoirArea/getAllReservoir`,
+    method: "post",
+    data,
+  });
+}
+// 库区列表(不分页)
+export function getListReservoir(data) {
+  return request({
+    url: `/Stock/ReservoirArea/getListReservoir`,
+    method: "post",
+    data,
+  });
+}
+// 库区启用/禁用
+export function enableReservoir(id, data) {
+  return request({
+    url: `/Stock/ReservoirArea/enableReservoir/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 库区修改
+export function updateReservoir(id, data) {
+  return request({
+    url: `/Stock/ReservoirArea/updateReservoir/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 库区删除
+export function deleteReservoir(id, data) {
+  return request({
+    url: `/Stock/ReservoirArea/deleteReservoir/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 库位列表
+export function getAllStorageLocation(data) {
+  return request({
+    url: `/Stock/StorageLocation/getAllStorageLocation`,
+    method: "post",
+    data,
+  });
+}
+// 库位添加
+export function addStorageLocation(data) {
+  return request({
+    url: `/Stock/StorageLocation/addStorageLocation`,
+    method: "post",
+    data,
+  });
+}
+// 库位详情
+export function getStorageLocationInfo(id, data) {
+  return request({
+    url: `/Stock/StorageLocation/getStorageLocationInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 库位启用/禁用
+export function enableStorageLocation(id, data) {
+  return request({
+    url: `/Stock/StorageLocation/enableStorageLocation/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 库位修改
+export function updateStorageLocation(id, data) {
+  return request({
+    url: `/Stock/StorageLocation/updateStorageLocation/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 根据skuId获取库区数量
+export function getAreaDateBySkuId(data) {
+  return request({
+    url: `/Stock/Inventory/getAreaDateBySkuId`,
+    method: "post",
+    data,
+  });
+}
+/* --------------库区库位end-------------- */
+// 新增报损单
+export function addReportLoss(data) {
+  return request({
+    url: `/Stock/ReportLoss/addReportLoss`,
+    method: "post",
+    data,
+  });
+}
+// 报损单列表
+export function getAllReportLoss(data) {
+  return request({
+    url: `/Stock/ReportLoss/getAllReportLoss`,
+    method: "post",
+    data,
+  });
+}
+// 报损单详情
+export function getReportLossInfo(id, data) {
+  return request({
+    url: `/Stock/ReportLoss/getReportLossInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 报损单审核
+export function auditReportLoss(id, data) {
+  return request({
+    url: `/Stock/ReportLoss/auditReportLoss/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 报损单删除
+export function deleteReportLoss(id, data) {
+  return request({
+    url: `/Stock/ReportLoss/deleteReportLoss/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//成本均摊
+export function countPurchaseCost(data) {
+  return request({
+    url: `Stock/InventoryIn/countPurchaseCost`,
+    method: "post",
+    data,
+  });
+}
+// 仓库库存
+export function exportgetInventoryByWarehouseId(data) {
+  return request({
+    url: `stock/Inventory/getInventoryByWarehouseId`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 调拨导出
+export function exportgetAllAllocate(data) {
+  return request({
+    url: `Stock/Allocate/getAllAllocate`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 指定拣货单
+export function getPickingInfo(id, data) {
+  return request({
+    url: `Stock/Picking/getPickingInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+//新增拣货单
+export function addPicking(data) {
+  return request({
+    url: `Stock/Picking/addPicking`,
+    method: "post",
+    data,
+  });
+}
+//待处理拣货
+export function getAllPicking(data) {
+  return request({
+    url: `Stock/Picking/getAllPicking`,
+    method: "post",
+    data,
+  });
+}
+//拣货明细
+export function getAllPickingGoodsDetail(data) {
+  return request({
+    url: `Stock/Picking/getAllPickingGoodsDetail`,
+    method: "post",
+    data,
+  });
+}

+ 42 - 0
src/api/Supplier.js

@@ -0,0 +1,42 @@
+import request from "@/utils/request";
+
+// 报价单列表
+export function getAllSupplierOfferPrice(data) {
+  return request({
+    url: `/Price/SupplierOfferPrice/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 报价单详情
+export function getSupplierOfferPrice(id, data) {
+  return request({
+    url: `/Price/SupplierOfferPrice/get/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 报价单审核
+export function auditSupplierOfferPrice(id, data) {
+  return request({
+    url: `/Price/SupplierOfferPrice/audit/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 结算列表
+export function getAllSupplierWithdrawal(data) {
+  return request({
+    url: `/Purchase/SupplierWithdrawal/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 审核
+export function updateAuditStatus(id, data) {
+  return request({
+    url: `/Purchase/SupplierWithdrawal/updateAuditStatus/${id}`,
+    method: "put",
+    data,
+  });
+}

+ 793 - 0
src/api/System.js

@@ -0,0 +1,793 @@
+import request from "@/utils/request";
+/* -----------商城设置----------------- */
+// 消息模板管理
+// 模板消息保存
+export function saveTemplateMessage(data) {
+  return request({
+    url: `/System/TemplateMessage/saveTemplateMessage`,
+    method: "post",
+    data,
+  });
+}
+// 消息模板获取
+export function getTemplateMessage(data) {
+  return request({
+    url: `/System/TemplateMessage/getTemplateMessage`,
+    method: "get",
+    data,
+  });
+}
+// 一键配置模板消息
+export function autoSystemTemplateMessage(data) {
+  return request({
+    url: `/System/TemplateMessage/autoSystemTemplateMessage`,
+    method: "get",
+    data,
+  });
+}
+//  系统设置详情
+export function getSystemSettingsInfo(id, data) {
+  return request({
+    url: `/SystemSettings/System/getSystemSettingsInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  系统设置详情
+export function updateSystemSettings(id, data) {
+  if (id) {
+    return request({
+      url: `/SystemSettings/System/updateSystemSettings/${id}`,
+      method: "put",
+      data,
+    });
+  } else {
+    return request({
+      url: `/SystemSettings/System/updateSystemSettings`,
+      method: "put",
+      data,
+    });
+  }
+}
+//  系统设置详情
+export function getSystemSettingsInfo2(data) {
+  return request({
+    url: `/SystemSettings/System/getSystemSettingsInfo/4`,
+    method: "get",
+    data,
+  });
+}
+//  字节跳动基本设置
+export function saveByteDanceSetting(id, data) {
+  return request({
+    url: `/SystemSettings/System/saveByteDanceSetting/${id}`,
+    method: "post",
+    data,
+  });
+}
+//  微信小程序授权
+export function preAuthCode(data) {
+  return request({
+    url: `/SystemSettings/System/preAuthCode`,
+    method: "post",
+    data,
+  });
+}
+// 分类设置编辑
+export function setClassSetting(data) {
+  return request({
+    url: `/System/ClassSetting/setClassSetting`,
+    method: "post",
+    data,
+  });
+}
+// 获取分类设置
+export function getClassSettingInfo(data) {
+  return request({
+    url: `/System/ClassSetting/getClassSettingInfo`,
+    method: "get",
+    data,
+  });
+}
+/* ---------客户类型--------------- */
+// 新增
+export function addCustomerSource(data) {
+  return request({
+    url: `/System/CustomerSource/addCustomerSource`,
+    method: "post",
+    data,
+  });
+}
+
+// 编辑
+export function editCustomerSource(id, data) {
+  return request({
+    url: `/System/CustomerSource/editCustomerSource/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 详情
+export function getCustomerSourceInfo(id, data) {
+  return request({
+    url: `/System/CustomerSource/getCustomerSourceInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 删除
+export function delCustomerSource(id) {
+  return request({
+    url: `/System/CustomerSource/delCustomerSource/${id}`,
+    method: "delete",
+  });
+}
+// 启用禁用
+export function updateCustomerSourceStatus(data) {
+  return request({
+    url: `/System/CustomerSource/updateCustomerSourceStatus`,
+    method: "post",
+    data,
+  });
+}
+// 获取客户类型列表
+export function getAllCustomerSource(data) {
+  return request({
+    url: `/System/CustomerSource/getAllCustomerSource`,
+    method: "post",
+    data,
+  });
+}
+// 客户类型无分页
+export function getCustomerSourceList(data) {
+  return request({
+    url: `/System/CustomerSource/getCustomerSourceList`,
+    method: "post",
+    data,
+  });
+}
+// 默认
+export function updateCustomerSourceDefaultStatus(data) {
+  return request({
+    url: `/System/CustomerSource/updateDefaultStatus`,
+    method: "post",
+    data,
+  });
+}
+/* -----------模块管理----------------- */
+// 添加模块
+export function addModule(data) {
+  return request({
+    url: `/System/Module/addModule`,
+    method: "post",
+    data,
+  });
+}
+// 模块详情
+export function ModuleGetModuleInfo(id, data) {
+  return request({
+    url: `/System/Module/getModuleInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 修改模块
+export function editModule(id, data) {
+  return request({
+    url: `/System/Module/editModule/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 删除模块
+export function delModule(id, data) {
+  return request({
+    url: `/System/Module/delModule/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 模块启用禁用
+export function updateModuleStatus(data) {
+  return request({
+    url: `/System/Module/updateModuleStatus`,
+    method: "post",
+    data,
+  });
+}
+// 模块列表
+export function getAllModule(data) {
+  return request({
+    url: `/System/Module/getAllModule`,
+    method: "post",
+    data,
+  });
+}
+/* -----------模版设置----------------- */
+//  添加系统模板
+export function SystemTemplateAdd(data) {
+  return request({
+    url: `/System/SystemTemplate/add`,
+    method: "post",
+    data,
+  });
+}
+//  获取系统模板
+export function SystemTemplategetAll(data) {
+  return request({
+    url: `/System/SystemTemplate/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 提交审核
+export function submitAudit(data) {
+  return request({
+    url: `/System/EnterpriseBindTemplate/submitAudit`,
+    method: "post",
+    data,
+  });
+}
+// 查询审核状态
+export function getAuditStatus(data) {
+  return request({
+    url: `/System/EnterpriseBindTemplate/getAuditStatus`,
+    method: "post",
+    data,
+  });
+}
+// 发布通过审核的小程序 】
+export function release(data) {
+  return request({
+    url: `/System/EnterpriseBindTemplate/release`,
+    method: "post",
+    data,
+  });
+}
+// 提交代码
+export function submitCode(id, data) {
+  return request({
+    url: `/System/EnterpriseBindTemplate/submitCode/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 获取提交代码后小程序状态
+export function getWxStatus(data) {
+  return request({
+    url: `/System/EnterpriseBindTemplate/getWxStatus`,
+    method: "get",
+    data,
+  });
+}
+// 企业使用模版启用/停用
+export function bindTemplate(id, data) {
+  return request({
+    url: `/System/EnterpriseBindTemplate/bindTemplate/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 添加企业模版模块数据
+export function EnterpriseTemplateModuleAdd(data) {
+  return request({
+    url: `/System/EnterpriseTemplateModule/add`,
+    method: "post",
+    data,
+  });
+}
+// 获取当前企业下改模块的数据
+export function getModuleInfo(id, data) {
+  return request({
+    url: `/System/EnterpriseTemplateModule/getModuleInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 编辑企业模版模块数据
+export function EnterpriseTemplateModuleEdit(data) {
+  return request({
+    url: `/System/EnterpriseTemplateModule/edit`,
+    method: "put",
+    data,
+  });
+}
+// 获取模版模块
+export function TemplateModuleGetAll(id, data) {
+  return request({
+    url: `/System/TemplateModule/getAll/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 获取企业模版
+export function getAllTemplate(data) {
+  return request({
+    url: `/System/EnterpriseBindTemplate/getAllTemplate`,
+    method: "get",
+    data,
+  });
+}
+/* ------------页面设计----------------- */
+// 保存页面
+export function PageSave(data) {
+  return request({
+    url: `/System/Page/save`,
+    method: "post",
+    data,
+  });
+}
+// 获取所有页面
+export function PageGetAll(data) {
+  return request({
+    url: `/System/Page/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 获取页面详情
+export function getPageInfo(id, data) {
+  return request({
+    url: `/System/Page/getPageInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 删除页面
+export function PageDel(id, data) {
+  return request({
+    url: `/System/Page/del/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 启用/停用页面
+export function PageUpdateEnableStatus(data) {
+  return request({
+    url: `/System/Page/updateEnableStatus`,
+    method: "put",
+    data,
+  });
+}
+// 获取专题活动
+export function getSpecial(data) {
+  return request({
+    url: `/System/Page/getSpecial`,
+    method: "post",
+    data,
+  });
+}
+
+/* --------------支付方式-------------------- */
+// 企业配置支付方式  System/EnterpriseBindPayment/set  post
+export function setPay(data) {
+  return request({
+    url: `/System/EnterpriseBindPayment/set`,
+    method: "post",
+    data,
+  });
+}
+// 获取配置详情  System/PaymentSetting/getPaymentInfoById/1  get
+export function getPayment(id, data) {
+  return request({
+    url: `/System/PaymentSetting/getPaymentInfoById/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 增加支付方式
+export function addPayment(data) {
+  return request({
+    url: `/System/PaymentSetting/addPayment`,
+    method: "post",
+    data,
+  });
+}
+// 支付方式详情
+export function getPaymentInfoById(id, data) {
+  return request({
+    url: `/System/PaymentSetting/getPaymentInfoById/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 支付方式列表
+export function getAllPayment(data) {
+  return request({
+    url: `/System/PaymentSetting/getAllPayment`,
+    method: "post",
+    data,
+  });
+}
+// 支付方式 启用/禁用
+export function PaymentupdateEnableStatus(id, data) {
+  return request({
+    url: `/System/PaymentSetting/updateEnableStatus/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 默认设置
+export function updateDefaultStatus(id, data) {
+  return request({
+    url: `/System/PaymentSetting/updateDefaultStatus/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 编辑支付方式
+export function savePaySetting(id, data) {
+  return request({
+    url: `/System/PaymentSetting/savePaySetting/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 删除支付方式
+export function delPayment(id, data) {
+  return request({
+    url: `/System/PaymentSetting/delPayment/${id}`,
+    method: "delete",
+    data,
+  });
+}
+/* --------------配送方式-------------------- */
+// 配送方式添加
+export function addDelivery(data) {
+  return request({
+    url: `/System/DeliverySetting/addDelivery`,
+    method: "post",
+    data,
+  });
+}
+// 获取配送方式详情
+export function getDeliveryInfoById(id, data) {
+  return request({
+    url: `/System/DeliverySetting/getDeliveryInfoById/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 配送方式列表
+export function getAllDelivery(data) {
+  return request({
+    url: `/System/DeliverySetting/allDelivery`,
+    method: "post",
+    data,
+  });
+}
+export function AllDelivery(data) {
+  return request({
+    url: `/System/DeliverySetting/getAllDelivery`,
+    method: "post",
+    data,
+  });
+}
+// 配送方式启用/禁用
+export function DeliveryupdateEnableStatus(id, data) {
+  return request({
+    url: `/System/DeliverySetting/updateEnableStatus/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 设置默认/取消默认
+export function DeliveryupdateDefaultStatus(id, data) {
+  return request({
+    url: `/System/DeliverySetting/updateDefaultStatus/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 编辑配送信息
+export function editDelivery(id, data) {
+  return request({
+    url: `/System/DeliverySetting/editDelivery/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 删除配送
+export function delDelivery(id, data) {
+  return request({
+    url: `/System/DeliverySetting/delDelivery/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 获取运费模版
+export function getAllExpressRule(data) {
+  return request({
+    url: `/System/DeliverySetting/getAllExpressRule`,
+    method: "post",
+    data,
+  });
+}
+// 设置默认运费模版
+export function setDefaultRule(id, data) {
+  return request({
+    url: `/System/DeliverySetting/setDefaultRule/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 配置配送方式
+export function setDataDelivery(id, data) {
+  return request({
+    url: `/System/DeliverySetting/setData/${id}`,
+    method: "post",
+    data,
+  });
+}
+
+// 配送方式详情
+export function DeliveryInfo(id, data) {
+  return request({
+    url: `/System/DeliverySetting/getInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 删除运费模版
+export function delDeliveryRule(id, data) {
+  return request({
+    url: `/System/DeliverySetting/delDeliveryRule/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 获取运费模版详情
+export function getRuleInfo(id, data) {
+  return request({
+    url: `/System/DeliverySetting/getRuleInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 获取快递公司列表
+export function getAllExpress(data) {
+  return request({
+    url: `/System/DeliverySetting/getAllExpress`,
+    method: "post",
+    data,
+  });
+}
+/* -----------自提点------------ */
+// 设置自提点
+export function setSelfData(data) {
+  return request({
+    url: `/System/DeliverySetting/setSelfData`,
+    method: "post",
+    data,
+  });
+}
+// 删除自提点
+export function delDeliverySelfRule(id, data) {
+  return request({
+    url: `/System/DeliverySetting/delDeliverySelfRule/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 获取自提点详情
+export function getSelfRuleInfo(id, data) {
+  return request({
+    url: `/System/DeliverySetting/getSelfRuleInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 获取自提点
+export function getAllSelfExpressRule(data) {
+  return request({
+    url: `/System/DeliverySetting/getAllSelfExpressRule`,
+    method: "get",
+    data,
+  });
+}
+/* -------基本设置------ */
+//  基本设置  System/BasicSetup/setting  POST
+export function setting(data) {
+  return request({
+    url: `/System/BasicSetup/setting`,
+    method: "post",
+    data,
+  });
+}
+//  获取基本设置  System/BasicSetup/getBasicSetup  get
+export function getBasicSetup(data) {
+  return request({
+    url: `/System/BasicSetup/getBasicSetup`,
+    method: "get",
+    data,
+  });
+}
+/* -------公告设置------ */
+//  公告列表 System/Announcement/getAllAnnouncement
+export function getAllAnnouncemen(data) {
+  return request({
+    url: `/System/Announcement/getAllAnnouncement`,
+    method: "post",
+    data,
+  });
+}
+//  公告列表 System/Announcement/getAllAnnouncement
+export function getAllAnnouncement(data) {
+  return request({
+    url: `/System/Announcement/getAllAnnouncement`,
+    method: "post",
+    data,
+  });
+}
+//  公告添加 System/Announcement/addAnnouncement
+export function addAnnouncement(data) {
+  return request({
+    url: `/System/Announcement/addAnnouncement`,
+    method: "post",
+    data,
+  });
+}
+//  公告删除 System/Announcement/delAnnouncement/1
+export function delAnnouncement(id, data) {
+  return request({
+    url: `/System/Announcement/delAnnouncement/${id}`,
+    method: "delete",
+    data,
+  });
+}
+//  公告编辑 System/Announcement/editAnnouncement/1
+export function editAnnouncement(id, data) {
+  return request({
+    url: `/System/Announcement/editAnnouncement/${id}`,
+    method: "put",
+    data,
+  });
+}
+//  公告启用/禁用 System/Announcement/onAnnouncement/1
+export function onAnnouncement(id, data) {
+  return request({
+    url: `/System/Announcement/onAnnouncement/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 公告是否弹出
+export function upAnnouncement(id, data) {
+  return request({
+    url: `/System/Announcement/upAnnouncement/${id}`,
+    method: "get",
+    data,
+  });
+}
+//  公告详情 System/Announcement/getAnnouncementInfo/1
+export function getAnnouncementInfo(id, data) {
+  return request({
+    url: `/System/Announcement/getAnnouncementInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+/* -------模板设置------ */
+// 单据模板
+export function getInfoReceiptTemplate(id, data) {
+  return request({
+    url: `/System/ReceiptTemplate/getInfo/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 打印模板列表
+export function getAllReceiptTemplate(data) {
+  return request({
+    url: `/System/ReceiptTemplate/getAll`,
+    method: "get",
+    data,
+  });
+}
+// 模板保存
+export function saveReceiptTemplate(data) {
+  return request({
+    url: `/System/ReceiptTemplate/save`,
+    method: "post",
+    data,
+  });
+}
+// 获取单据类型模板id
+export function getTemplateInfo(id, data) {
+  return request({
+    url: `/System/ReceiptTemplate/getTemplateInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 流程设置
+// 流程获取
+export function getAllProcessSetting(data) {
+  return request({
+    url: `System/ProcessSetting/getAll`,
+    method: "get",
+    data,
+  });
+}
+// 提交
+export function setAllProcessSetting(data) {
+  return request({
+    url: `System/ProcessSetting/set`,
+    method: "put",
+    data,
+  });
+}
+
+// 获取语音配置
+export function NoticeSetting(data) {
+  return request({
+    url: `System/NoticeSetting/get`,
+    method: "get",
+    data,
+  });
+}
+
+// 配置语音
+export function NoticeSettingSet(data) {
+  return request({
+    url: `System/NoticeSetting/set`,
+    method: "post",
+    data,
+  });
+}
+// 物流提醒
+export function updateLogisticsReminder(data) {
+  return request({
+    url: `System/DeliverySetting/updateLogisticsReminder`,
+    method: "post",
+    data,
+  });
+}
+// 消息推送列表页
+export function getAllSystemPushMessage(data) {
+  return request({
+    url: `System/SystemPushMessage/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 消息推送启用/禁用
+export function updateEnableStatus(data) {
+  return request({
+    url: `System/SystemPushMessage/updateEnableStatus`,
+    method: "post",
+    data,
+  });
+}
+// 消息推送微信订阅消息/短信推送消息 启用/停用
+export function updatePushEnableStatus(data) {
+  return request({
+    url: `System/SystemPushMessage/updatePushEnableStatus`,
+    method: "post",
+    data,
+  });
+}
+// 获取推送消息设置详情
+export function settingDetail(id, data) {
+  return request({
+    url: `System/SystemPushMessage/settingDetail/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 编辑推送消息设置
+export function editSystemPushMessage(data) {
+  return request({
+    url: `System/SystemPushMessage/edit`,
+    method: "post",
+    data,
+  });
+}
+//一键获取微信模板Id
+export function autoCreateWeiXinTemplateId(id, data) {
+  return request({
+    url: `System/SystemPushMessage/autoCreateWeiXinTemplateId/${id}`,
+    method: "post",
+    data,
+  });
+}

+ 187 - 0
src/api/common.js

@@ -0,0 +1,187 @@
+import request from "@/utils/request";
+
+/**
+ * 地区
+ * */
+// 获取省份
+export function forApi() {
+  return request({
+    url: "/Common/Test/forApi",
+    method: "get",
+  });
+}
+// 获取省份
+export function getAllProvince() {
+  return request({
+    url: "/Common/SysAreaChina/getAllProvince",
+    method: "get",
+  });
+}
+// 获取省下的市
+export function getAllCityByProvinceCode(code) {
+  return request({
+    url: `/Common/SysAreaChina/getAllCityByProvinceCode/${code}`,
+    method: "get",
+  });
+}
+// 获取市下的区
+export function getAllAreaByCityCode(code) {
+  return request({
+    url: `/Common/SysAreaChina/getAllAreaByCityCode/${code}`,
+    method: "get",
+  });
+}
+/**
+ * 接收微信授权码
+ * */
+export function authorizationCode(data) {
+  return request({
+    url: `/common/WeiXinOpen/authorizationCode`,
+    method: "post",
+    data,
+  });
+}
+/**
+ * 上传证书文件
+ * */
+export function uploadFile(data) {
+  console.log("data", data);
+  return request({
+    url: `/Common/Upload/uploadFile`,
+    method: "post",
+    data,
+  });
+}
+/**
+ * 生成七牛上传凭证
+ * */
+// 生成七牛上传凭证
+export function uploadToken(data) {
+  return request({
+    url: "/Common/Upload/uploadToken",
+    method: "post",
+    data,
+  });
+}
+// 七牛删除
+export function UploadDel(data) {
+  return request({
+    url: "/Common/Upload/delete",
+    method: "post",
+    data,
+  });
+}
+//  获取消息列表
+export function getAllMessage(data) {
+  return request({
+    url: "/Message/Message/getAllMessage",
+    method: "post",
+    data,
+  });
+}
+//  标记已读消息
+export function receiveMessage(id, data) {
+  return request({
+    url: `/Message/Message/receiveMessage/${id}`,
+    method: "get",
+    data,
+  });
+}
+/**
+ * 增加单据打印次数
+ * */
+export function PrintNumPrintIncr(data) {
+  return request({
+    url: `/Common/PrintNum/printIncr`,
+    method: "post",
+    data,
+  });
+}
+// 单据小票统一打印
+export function toPrint(data) {
+  return request({
+    url: `/Common/Receipt/toPrint`,
+    method: "post",
+    data,
+  });
+}
+// 发送短信验证码
+export function sendMobileCode(data) {
+  return request({
+    url: `/Common/SmsCode/sendMobileCode`,
+    method: "post",
+    data,
+  });
+}
+// 刷新token
+export function flushToken(data) {
+  return request({
+    url: `/Common/Common/flushToken`,
+    method: "post",
+    data,
+  });
+}
+// 所有企业类型  Common/EnterpriseCategory/getAllEnterpriseCategory get
+export function getAllEnterpriseCategory(data) {
+  return request({
+    url: `/Common/EnterpriseCategory/getAllEnterpriseCategory`,
+    method: "get",
+    data,
+  });
+}
+// 价格暂存添加
+export function addMoneyPauseSave(data) {
+  return request({
+    url: `/Common/PauseSave/addMoneyPauseSave`,
+    method: "post",
+    data,
+  });
+}
+// 获取价格暂存
+export function getMoneyPauseSave(data) {
+  return request({
+    url: `/Common/PauseSave/getMoneyPauseSave`,
+    method: "post",
+    data,
+  });
+}
+//  暂存按钮  /Common/PauseSave/addPauseSave
+export function addPauseSave(data) {
+  return request({
+    url: `/Common/PauseSave/addPauseSave`,
+    method: "post",
+    data,
+  });
+}
+//  获取暂存信息
+export function getPauseSave(data) {
+  return request({
+    url: `/Common/PauseSave/getPauseSave`,
+    method: "post",
+    data,
+  });
+}
+//  暂存删除 Common/PauseSave/delPauseSave
+export function delPauseSave(data) {
+  return request({
+    url: `/Common/PauseSave/delPauseSave`,
+    method: "post",
+    data,
+  });
+}
+// 登录注册日志
+export function getAllLog(data) {
+  return request({
+    url: `/Log/LoginLog/getAllLog`,
+    method: "post",
+    data,
+  });
+}
+// 生成小程序二维码
+export function createwxaqrcode(data) {
+  return request({
+    url: `/Common/Login/createwxaqrcode`,
+    method: "post",
+    data,
+  });
+}

+ 659 - 0
src/api/goods.js

@@ -0,0 +1,659 @@
+import request from "@/utils/request";
+
+/**
+ * 商品添加
+ * */
+/* --- 基础资料管理 --- */
+// 基础商品资料(以sku为列)
+export function getAllGoodsBasicBySku(data) {
+  return request({
+    url: "/GoodsManage/GoodsBasic/getAllGoodsBasicBySku",
+    method: "post",
+    data,
+  });
+}
+// 导入商品基础数据
+export function goodsImport(data) {
+  return request({
+    url: "/GoodsManage/GoodsBasic/goodsImport",
+    method: "post",
+    data,
+  });
+}
+// 单店铺商品导入
+export function goodsQuickImport(data) {
+  return request({
+    url: "/Goods/QuickGoods/goodsQuickImport",
+    method: "post",
+    data,
+  });
+}
+// 商品基本资料搜索
+export function searchBasic(data) {
+  return request({
+    url: "/GoodsManage/GoodsBasic/search",
+    method: "post",
+    data,
+  });
+}
+// 商品基本资料搜索导出
+export function exportSearchBasic(data) {
+  return request({
+    url: "/GoodsManage/GoodsBasic/search",
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 添加自定义属性
+export function defineSpec(data) {
+  return request({
+    url: "/GoodsManage/SpecManage/defineSpec",
+    method: "post",
+    data,
+  });
+}
+// 添加商品(单店铺版新增)
+export function addBasicAndPublishGoods(data) {
+  return request({
+    url: "/Goods/QuickGoods/addBasicAndPublishGoods",
+    method: "post",
+    data,
+  });
+}
+// 编辑商品&&基础资料(单店铺版)
+export function editQuickGoods(data) {
+  return request({
+    url: "/Goods/QuickGoods/editQuickGoods",
+    method: "post",
+    data,
+  });
+}
+// 基础资料&&商品详情(单店铺版)
+export function getQuickGoodsInfo(id, data) {
+  return request({
+    url: `/Goods/QuickGoods/getQuickGoodsInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 添加商品基础数据
+export function addGoodsBasic(data) {
+  return request({
+    url: `/GoodsManage/GoodsBasic/addGoodsBasic`,
+    method: "post",
+    data,
+  });
+}
+// 获取全部基础商品
+export function getAllGoodsBasic(data) {
+  return request({
+    url: `/GoodsManage/GoodsBasic/getAllGoodsBasic`,
+    method: "post",
+    data,
+  });
+}
+// 导出全部基础商品
+export function exportGetAllGoodsBasic(data) {
+  return request({
+    url: `/GoodsManage/GoodsBasic/getAllGoodsBasic`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 获取指定基础商品
+export function getGoodsBasicInfoById(id, data) {
+  return request({
+    url: `/GoodsManage/GoodsBasic/getGoodsBasicInfoById/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 获取商品列表 含搜索 Goods/ApiGoods/getGoodsByCategory
+export function getGoodsByCategory(data) {
+  return request({
+    url: `/Goods/ApiGoods/getGoodsByCategory`,
+    method: "post",
+    data,
+  });
+}
+// 基础商品启用/禁用
+export function updateEnableStatus(data) {
+  return request({
+    url: `/GoodsManage/GoodsBasic/updateEnableStatus`,
+    method: "put",
+    data,
+  });
+}
+// 删除基础商品
+export function delGoodsBasic(id, data) {
+  return request({
+    url: `/GoodsManage/GoodsBasic/delGoodsBasic/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 修改基础商品
+export function editGoodsBasic(id, data) {
+  return request({
+    url: `/GoodsManage/GoodsBasic/editGoodsBasic/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 商铺下允许销售的商品列表
+export function getGoodsBasicOfShopId(data) {
+  return request({
+    url: `/GoodsManage/GoodsBasic/getGoodsBasicOfShopId`,
+    method: "post",
+    data,
+  });
+}
+// 移动基础商品的分类
+export function updateCategory(data) {
+  return request({
+    url: `/GoodsManage/GoodsBasic/updateCategory`,
+    method: "post",
+    data,
+  });
+}
+// 商品批量上下架 Goods/Goods/updateEnableStatus
+export function BatchUnloading(data) {
+  return request({
+    url: `/Goods/Goods/updateEnableStatus`,
+    method: "post",
+    data,
+  });
+}
+// 商品置顶
+export function setTop(id, data) {
+  return request({
+    url: `/Goods/Goods/setTop/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 批量设置销量
+export function setSalesNumBatch(data) {
+  return request({
+    url: `/Goods/Goods/setSalesNumBatch`,
+    method: "post",
+    data,
+  });
+}
+// 批量设置销量
+export function setSalesNum(data) {
+  return request({
+    url: `/Goods/Goods/setSalesNum`,
+    method: "post",
+    data,
+  });
+}
+// 计量单位
+// 列表 GoodsManage/Units/getAll
+export function getAllUnit(data) {
+  return request({
+    url: `/GoodsManage/Units/getAll`,
+    method: "post",
+    data,
+  });
+}
+// 添加 GoodsManage/Units/add
+export function addUnit(data) {
+  return request({
+    url: `/GoodsManage/Units/add`,
+    method: "post",
+    data,
+  });
+}
+// 编辑 GoodsManage/Units/edit/7
+export function editUnit(id, data) {
+  return request({
+    url: `/GoodsManage/Units/edit/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 启用/禁用计量单位 GoodsManage/Units/updateEnablesStatus
+export function updateEnablesStatus(data) {
+  return request({
+    url: `/GoodsManage/Units/updateEnablesStatus`,
+    method: "put",
+    data,
+  });
+}
+// 删除 GoodsManage/Units/del/7
+export function delUnit(id, data) {
+  return request({
+    url: `/GoodsManage/Units/del/${id}`,
+    method: "delete",
+    data,
+  });
+}
+/* --- 规格管理 --- */
+// 添加属性名/值
+export function SpecManageAdd(data) {
+  return request({
+    url: `/GoodsManage/SpecManage/add`,
+    method: "post",
+    data,
+  });
+}
+// 编辑
+export function SpecManageedit(id, data) {
+  return request({
+    url: `/GoodsManage/SpecManage/edit/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 删除
+export function SpecManagedel(id, data) {
+  return request({
+    url: `/GoodsManage/SpecManage/del/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 详情
+export function SpecManageinfo(id, data) {
+  return request({
+    url: `/GoodsManage/SpecManage/info/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 列表
+export function SpecManagegetAll(data) {
+  return request({
+    url: `/GoodsManage/SpecManage/getAll`,
+    method: "post",
+    data,
+  });
+}
+/* --- 商品管理 --- */
+// 商品列表(以sku为列)
+export function getAllGoodsBySku(data) {
+  return request({
+    url: `/Goods/Goods/getAllGoodsBySku`,
+    method: "post",
+    data,
+  });
+}
+// 商品搜索
+export function searchGood(data) {
+  return request({
+    url: `/Goods/Goods/search`,
+    method: "post",
+    data,
+  });
+}
+// 商品搜索 导出
+export function exportSearchGood(data) {
+  return request({
+    url: `/Goods/Goods/search`,
+    responseType: "blob",
+    method: "post",
+    data,
+  });
+}
+// 添加商品
+export function addGoods(data) {
+  return request({
+    url: `/Goods/Goods/addGoods`,
+    method: "post",
+    data,
+  });
+}
+// 商品详情
+export function getGoodsInfo(id, data) {
+  return request({
+    url: `/Goods/Goods/getGoodsInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 删除商品
+export function delGoods(id, data) {
+  return request({
+    url: `/Goods/Goods/delGoods/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 商品修改
+export function editGoods(id, data) {
+  return request({
+    url: `/Goods/Goods/editGoods/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 商品列表
+export function getAllGoods(data) {
+  return request({
+    url: `/Goods/Goods/getAllGoods`,
+    method: "post",
+    data,
+  });
+}
+// 商品列表(优化)
+export function getAllGoodsList(data) {
+  return request({
+    url: `/Goods/Goods/getAllGoodsList`,
+    method: "post",
+    data,
+  });
+}
+// 商品列表导出(优化)
+export function exportGetAllGoodsList(data) {
+  return request({
+    url: `/Goods/Goods/getAllGoodsList`,
+    method: "post",
+    responseType: "blob",
+
+    data,
+  });
+}
+// 商品列表导出
+export function exportGetAllGoods(data) {
+  return request({
+    url: `/Goods/Goods/getAllGoods`,
+    method: "post",
+    responseType: "blob",
+    data,
+  });
+}
+// 审核商品
+export function auditGoods(id, data) {
+  return request({
+    url: `/Goods/Goods/audit/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 关键字搜索
+export function getGoodsByCondition(data) {
+  return request({
+    url: `/Goods/Goods/getGoodsByCondition`,
+    method: "post",
+    data,
+  });
+}
+// 商品上下架
+export function GoodsUpdateEnableStatus(data) {
+  return request({
+    url: `/Goods/Goods/updateEnableStatus`,
+    method: "post",
+    data,
+  });
+}
+// 批量设置运费
+export function batchGoodsExpress(data) {
+  return request({
+    url: `/Goods/Goods/batchGoodsExpress`,
+    method: "post",
+    data,
+  });
+}
+/* --- 品牌管理 --- */
+// 添加品牌
+export function addBrand(data) {
+  return request({
+    url: `/GoodsManage/GoodsBrand/addBrand`,
+    method: "post",
+    data,
+  });
+}
+// 修改品牌
+export function editBrand(id, data) {
+  return request({
+    url: `/GoodsManage/GoodsBrand/editBrand/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 获取品牌详情
+export function getBrandInfoById(id, data) {
+  return request({
+    url: `/GoodsManage/GoodsBrand/getBrandInfoById/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 品牌的显示和隐藏
+export function updateBrandStatus(id, data) {
+  return request({
+    url: `/GoodsManage/GoodsBrand/updateBrandStatus/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 删除品牌
+export function delBrand(id, data) {
+  return request({
+    url: `/GoodsManage/GoodsBrand/delBrand/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 品牌列表
+export function getAllBrand(data) {
+  return request({
+    url: `/GoodsManage/GoodsBrand/getAllBrand`,
+    method: "post",
+    data,
+  });
+}
+
+/* --- 分类管理 --- */
+// 设置品牌
+export function setBrand(data) {
+  return request({
+    url: `/GoodsManage/GoodsBasic/setBrand`,
+    method: "put",
+    data,
+  });
+}
+// 批量设置单位
+export function setSku(data) {
+  return request({
+    url: `/GoodsManage/GoodsBasic/setSku`,
+    method: "put",
+    data,
+  });
+}
+// 设置不可销售的店铺 GoodsManage/GoodsBasic/setNoSalesShop
+export function setNoSalesShop(data) {
+  return request({
+    url: `/GoodsManage/GoodsBasic/setNoSalesShop`,
+    method: "put",
+    data,
+  });
+}
+// 添加基础商品分类
+export function addCategory(data) {
+  return request({
+    url: `/GoodsCategory/GoodsCategory/addCategory`,
+    method: "post",
+    data,
+  });
+}
+
+// 分类的显示和隐藏
+export function updateCategoryStatus(id, data) {
+  return request({
+    url: `/GoodsCategory/GoodsCategory/updateCategoryStatus/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 获取分类详情
+export function getCategoryInfoById(id, data) {
+  return request({
+    url: `/GoodsCategory/GoodsCategory/getCategoryInfoById/${id}`,
+    method: "get",
+    data,
+  });
+}
+// 获取所有商品分类
+export function getAllCategory(data) {
+  return request({
+    url: `/GoodsCategory/GoodsCategory/getAllCategory`,
+    method: "get",
+    data,
+  });
+}
+// 删除指定分类
+export function delCategory(id, data) {
+  return request({
+    url: `/GoodsCategory/GoodsCategory/delCategory/${id}`,
+    method: "delete",
+    data,
+  });
+}
+// 修改分类
+export function editCategory(id, data) {
+  return request({
+    url: `/GoodsCategory/GoodsCategory/editCategory/${id}`,
+    method: "put",
+    data,
+  });
+}
+// 添加商品页面,获取分类
+export function getAllCategoryPost(data) {
+  return request({
+    url: `/GoodsCategory/GoodsCategory/getAllCategory`,
+    method: "post",
+    data,
+  });
+}
+// 根据条码获取商品
+export function getGoodsByBarCode(data) {
+  return request({
+    url: `/Goods/Goods/getGoodsByBarCode`,
+    method: "post",
+    data,
+  });
+}
+// 获取materielId与goodsId
+export function getRelMap(data) {
+  return request({
+    url: `/Goods/Goods/getRelMap`,
+    method: "post",
+    data,
+  });
+}
+// 商品价格波动图
+export function getPriceTrend(id, data) {
+  return request({
+    url: `Goods/Goods/getPriceTrend/${id}`,
+    method: "POST",
+    data,
+  });
+}
+//批量启/禁用负库存
+export function batchSetDistribution(data) {
+  return request({
+    url: `Goods/Goods/batchSetDistribution`,
+    method: "POST",
+    data,
+  });
+}
+// 添加商品服务
+export function addGoodsSupport(data) {
+  return request({
+    url: "Goods/GoodsSupport/addGoodsSupport",
+    method: "post",
+    data,
+  });
+}
+// 修改商品服务
+export function editGoodsSupport(data) {
+  return request({
+    url: "/Goods/GoodsSupport/editGoodsSupport",
+    method: "post",
+    data,
+  });
+}
+// 删除商品服务
+export function delGoodsSupport(id, data) {
+  return request({
+    url: `Goods/GoodsSupport/delGoodsSupport/${id}`,
+    method: "post",
+    data,
+  });
+}
+//获取所有商品服务
+export function getAllGoodsSupport(data) {
+  return request({
+    url: "Goods/GoodsSupport/getAllGoodsSupport",
+    method: "post",
+    data,
+  });
+}
+//查看所有商品服务
+export function getGoodsSupportInfo(id, data) {
+  return request({
+    url: `/Goods/GoodsSupport/getGoodsSupportInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 商品分组
+export function getAllGoodsGroups(data) {
+  return request({
+    url: `Goods/GoodsGroups/getAllGoodsGroups`,
+    method: "post",
+    data,
+  });
+}
+// 新增商品分组
+export function addGoodsGroups(data) {
+  return request({
+    url: `Goods/GoodsGroups/addGoodsGroups`,
+    method: "post",
+    data,
+  });
+}
+// 商品分组启用/禁用
+export function enableGoodsGroups(id, data) {
+  return request({
+    url: `Goods/GoodsGroups/enableGoodsGroups/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 商品分组修改
+export function updateGoodsGroups(id, data) {
+  return request({
+    url: `Goods/GoodsGroups/updateGoodsGroups/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 获取指定商品分组
+export function getReservoirInfo(id, data) {
+  return request({
+    url: `Goods/GoodsGroups/getReservoirInfo/${id}`,
+    method: "post",
+    data,
+  });
+}
+// 删除商品分组
+export function deleteGoodsGroups(id, data) {
+  return request({
+    url: `Goods/GoodsGroups/deleteGoodsGroups/${id}`,
+    method: "post",
+    data,
+  });
+}
+//修改排序字段
+export function setSort(data) {
+  return request({
+    url: `Goods/Goods/setSort`,
+    method: "post",
+    data,
+  });
+}

+ 178 - 0
src/api/user.js

@@ -0,0 +1,178 @@
+import request from "@/utils/request";
+import { loginRSA, tokenName } from "@/config/settings";
+
+export async function login(data) {
+  return request({
+    url: "/UserCenter/UserCenterLogin/login",
+    method: "post",
+    data,
+  });
+}
+
+export async function socialLogin(data) {
+  return request({
+    url: "/socialLogin",
+    method: "post",
+    data,
+  });
+}
+export function getUserInfo(accessToken) {
+  //此处为了兼容mock.js使用data传递accessToken,如果使用mock可以走headers
+  return request({
+    url: "/userInfo",
+    method: "post",
+    data: {
+      [tokenName]: accessToken,
+    },
+  });
+}
+
+export function logout() {
+  return request({
+    url: "/logout",
+    method: "post",
+  });
+}
+
+export function register() {
+  return request({
+    url: "/register",
+    method: "post",
+  });
+}
+
+export function updateUserCenterData(data) {
+  return request({
+    url: "/Enterprise/UserEnterprise/updateUserCenterData",
+    method: "post",
+    data,
+  });
+}
+
+// 首页概况
+export function Enterprise(data) {
+  return request({
+    url: `/Enterprise/Enterprise/overview`,
+    method: "post",
+    data,
+  });
+}
+// 获取企业列表
+export function getAllEnterprise() {
+  return request({
+    url: "/Enterprise/UserEnterprise/getAllEnterprise",
+    method: "get",
+  });
+}
+// 所有企业类型
+export function getAllEnterpriseCategory() {
+  return request({
+    url: "/Common/EnterpriseCategory/getAllEnterpriseCategory",
+    method: "get",
+  });
+}
+// 企业详情
+export function getEnterpriseInfo() {
+  return request({
+    url: "/Enterprise/Enterprise/getEnterpriseInfo",
+    method: "get",
+  });
+}
+// 企业修改
+export function updateEnterprise(data) {
+  return request({
+    url: "/Enterprise/Enterprise/updateEnterprise",
+    method: "put",
+    data,
+  });
+}
+// 企业删除
+export function deleteEnterprise(data) {
+  return request({
+    url: "/Enterprise/Enterprise/deleteEnterprise",
+    method: "delete",
+    data,
+  });
+}
+
+// 企业添加
+export function addEnterprise(data) {
+  return request({
+    url: "/Enterprise/UserEnterprise/addEnterprise",
+    method: "post",
+    data,
+  });
+}
+// 获取企业列表(依据手机号)
+export function getAllEnterprisePhone(data) {
+  return request({
+    url: "/UserCenter/UserCenterRegister/getAllEnterprise",
+    method: "post",
+    data,
+  });
+}
+// 生成AUTHORIZATION
+export function createToken(data) {
+  return request({
+    url: "/UserCenter/UserCenterLogin/createToken",
+    method: "post",
+    data,
+  });
+}
+// 获取当前登录员工信息
+export function getStaffByToken(roleType, data) {
+  return request({
+    url: `/Enterprise/Enterprise/getStaffByToken/${roleType}`,
+    method: "get",
+    data,
+  });
+}
+
+//  当前登录用户的权限
+export function getAclList(id, data) {
+  return request({
+    url: `Enterprise/UserEnterprise/getAclList/${id}`,
+    method: "get",
+    data,
+  });
+}
+
+// 用户注册
+export function Register(data) {
+  return request({
+    url: `UserCenter/UserCenterRegister/addUserCenter`,
+    method: "post",
+    data,
+  });
+}
+// 判断手机号是否注册
+export function mobileIsRegister(phone) {
+  return request({
+    url: `UserCenter/UserCenterRegister/mobileIsRegister/${phone}`,
+    method: "get",
+  });
+}
+// 忘记密码
+export function forgetPassword(data) {
+  return request({
+    url: `UserCenter/UserCenterRegister/forgetPassword`,
+    method: "post",
+    data,
+  });
+}
+// 小程序绑定手机号
+export function appletsRegister(data) {
+  return request({
+    url: `UserCenter/UserCenterRegister/appletsRegister`,
+    method: "post",
+    data,
+  });
+}
+//修改手机号(账号)
+export function updateUserMobile(data) {
+  return request({
+    url: `UserCenter/UserCenterRegister/updateUserMobile`,
+    method: "post",
+    data,
+  });
+}

+ 14382 - 0
src/assets/area.json

@@ -0,0 +1,14382 @@
+[
+  {
+    "id": 1,
+    "children": [
+      {
+        "id": 2,
+        "value": 110100,
+        "label": "北京市",
+        "children": [
+          {
+            "value": 110101,
+            "label": "东城区"
+          },
+          {
+            "value": 110102,
+            "label": "西城区"
+          },
+          {
+            "value": 110105,
+            "label": "朝阳区"
+          },
+          {
+            "value": 110106,
+            "label": "丰台区"
+          },
+          {
+            "value": 110107,
+            "label": "石景山区"
+          },
+          {
+            "value": 110108,
+            "label": "海淀区"
+          },
+          {
+            "value": 110109,
+            "label": "门头沟区"
+          },
+          {
+            "value": 110111,
+            "label": "房山区"
+          },
+          {
+            "value": 110112,
+            "label": "通州区"
+          },
+          {
+            "value": 110113,
+            "label": "顺义区"
+          },
+          {
+            "value": 110114,
+            "label": "昌平区"
+          },
+          {
+            "value": 110115,
+            "label": "大兴区"
+          },
+          {
+            "value": 110116,
+            "label": "怀柔区"
+          },
+          {
+            "value": 110117,
+            "label": "平谷区"
+          },
+          {
+            "value": 110118,
+            "label": "密云区"
+          },
+          {
+            "value": 110119,
+            "label": "延庆区"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 110000,
+    "label": "北京",
+    "expand": "true"
+  },
+  {
+    "id": 19,
+    "children": [
+      {
+        "id": 20,
+        "value": 120100,
+        "label": "天津市",
+        "children": [
+          {
+            "value": 120103,
+            "label": "河西区"
+          },
+          {
+            "value": 120101,
+            "label": "和平区"
+          },
+          {
+            "value": 120102,
+            "label": "河东区"
+          },
+          {
+            "value": 120104,
+            "label": "南开区"
+          },
+          {
+            "value": 120105,
+            "label": "河北区"
+          },
+          {
+            "value": 120106,
+            "label": "红桥区"
+          },
+          {
+            "value": 120110,
+            "label": "东丽区"
+          },
+          {
+            "value": 120111,
+            "label": "西青区"
+          },
+          {
+            "value": 120112,
+            "label": "津南区"
+          },
+          {
+            "value": 120113,
+            "label": "北辰区"
+          },
+          {
+            "value": 120114,
+            "label": "武清区"
+          },
+          {
+            "value": 120115,
+            "label": "宝坻区"
+          },
+          {
+            "value": 120116,
+            "label": "滨海新区"
+          },
+          {
+            "value": 120117,
+            "label": "宁河区"
+          },
+          {
+            "value": 120118,
+            "label": "静海区"
+          },
+          {
+            "value": 120119,
+            "label": "蓟州区"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 120000,
+    "label": "天津市",
+    "expand": "true"
+  },
+  {
+    "id": 37,
+    "children": [
+      {
+        "id": 38,
+        "value": 130100,
+        "label": "石家庄市",
+        "children": [
+          {
+            "value": 130102,
+            "label": "长安区"
+          },
+          {
+            "value": 130104,
+            "label": "桥西区"
+          },
+          {
+            "value": 130105,
+            "label": "新华区"
+          },
+          {
+            "value": 130107,
+            "label": "井陉矿区"
+          },
+          {
+            "value": 130108,
+            "label": "裕华区"
+          },
+          {
+            "value": 130109,
+            "label": "藁城区"
+          },
+          {
+            "value": 130110,
+            "label": "鹿泉区"
+          },
+          {
+            "value": 130111,
+            "label": "栾城区"
+          },
+          {
+            "value": 130181,
+            "label": "辛集市"
+          },
+          {
+            "value": 130183,
+            "label": "晋州市"
+          },
+          {
+            "value": 130184,
+            "label": "新乐市"
+          },
+          {
+            "value": 130121,
+            "label": "井陉县"
+          },
+          {
+            "value": 130123,
+            "label": "正定县"
+          },
+          {
+            "value": 130125,
+            "label": "行唐县"
+          },
+          {
+            "value": 130126,
+            "label": "灵寿县"
+          },
+          {
+            "value": 130127,
+            "label": "高邑县"
+          },
+          {
+            "value": 130128,
+            "label": "深泽县"
+          },
+          {
+            "value": 130129,
+            "label": "赞皇县"
+          },
+          {
+            "value": 130130,
+            "label": "无极县"
+          },
+          {
+            "value": 130131,
+            "label": "平山县"
+          },
+          {
+            "value": 130132,
+            "label": "元氏县"
+          },
+          {
+            "value": 130133,
+            "label": "赵县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 61,
+        "value": 130200,
+        "label": "唐山市",
+        "children": [
+          {
+            "value": 130203,
+            "label": "路北区"
+          },
+          {
+            "value": 130202,
+            "label": "路南区"
+          },
+          {
+            "value": 130204,
+            "label": "古冶区"
+          },
+          {
+            "value": 130205,
+            "label": "开平区"
+          },
+          {
+            "value": 130207,
+            "label": "丰南区"
+          },
+          {
+            "value": 130208,
+            "label": "丰润区"
+          },
+          {
+            "value": 130209,
+            "label": "曹妃甸区"
+          },
+          {
+            "value": 130281,
+            "label": "遵化市"
+          },
+          {
+            "value": 130283,
+            "label": "迁安市"
+          },
+          {
+            "value": 130223,
+            "label": "滦县"
+          },
+          {
+            "value": 130224,
+            "label": "滦南县"
+          },
+          {
+            "value": 130225,
+            "label": "乐亭县"
+          },
+          {
+            "value": 130227,
+            "label": "迁西县"
+          },
+          {
+            "value": 130229,
+            "label": "玉田县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 76,
+        "value": 130300,
+        "label": "秦皇岛市",
+        "children": [
+          {
+            "value": 130302,
+            "label": "海港区"
+          },
+          {
+            "value": 130303,
+            "label": "山海关区"
+          },
+          {
+            "value": 130304,
+            "label": "北戴河区"
+          },
+          {
+            "value": 130306,
+            "label": "抚宁区"
+          },
+          {
+            "value": 130322,
+            "label": "昌黎县"
+          },
+          {
+            "value": 130324,
+            "label": "卢龙县"
+          },
+          {
+            "value": 130321,
+            "label": "青龙满族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 84,
+        "value": 130400,
+        "label": "邯郸市",
+        "children": [
+          {
+            "value": 130403,
+            "label": "丛台区"
+          },
+          {
+            "value": 130402,
+            "label": "邯山区"
+          },
+          {
+            "value": 130404,
+            "label": "复兴区"
+          },
+          {
+            "value": 130406,
+            "label": "峰峰矿区"
+          },
+          {
+            "value": 130407,
+            "label": "肥乡区"
+          },
+          {
+            "value": 130408,
+            "label": "永年区"
+          },
+          {
+            "value": 130481,
+            "label": "武安市"
+          },
+          {
+            "value": 130423,
+            "label": "临漳县"
+          },
+          {
+            "value": 130424,
+            "label": "成安县"
+          },
+          {
+            "value": 130425,
+            "label": "大名县"
+          },
+          {
+            "value": 130426,
+            "label": "涉县"
+          },
+          {
+            "value": 130427,
+            "label": "磁县"
+          },
+          {
+            "value": 130430,
+            "label": "邱县"
+          },
+          {
+            "value": 130431,
+            "label": "鸡泽县"
+          },
+          {
+            "value": 130432,
+            "label": "广平县"
+          },
+          {
+            "value": 130433,
+            "label": "馆陶县"
+          },
+          {
+            "value": 130434,
+            "label": "魏县"
+          },
+          {
+            "value": 130435,
+            "label": "曲周县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 103,
+        "value": 130500,
+        "label": "邢台市",
+        "children": [
+          {
+            "value": 130502,
+            "label": "桥东区"
+          },
+          {
+            "value": 130503,
+            "label": "桥西区"
+          },
+          {
+            "value": 130581,
+            "label": "南宫市"
+          },
+          {
+            "value": 130582,
+            "label": "沙河市"
+          },
+          {
+            "value": 130521,
+            "label": "邢台县"
+          },
+          {
+            "value": 130522,
+            "label": "临城县"
+          },
+          {
+            "value": 130523,
+            "label": "内丘县"
+          },
+          {
+            "value": 130524,
+            "label": "柏乡县"
+          },
+          {
+            "value": 130525,
+            "label": "隆尧县"
+          },
+          {
+            "value": 130526,
+            "label": "任县"
+          },
+          {
+            "value": 130527,
+            "label": "南和县"
+          },
+          {
+            "value": 130528,
+            "label": "宁晋县"
+          },
+          {
+            "value": 130529,
+            "label": "巨鹿县"
+          },
+          {
+            "value": 130530,
+            "label": "新河县"
+          },
+          {
+            "value": 130531,
+            "label": "广宗县"
+          },
+          {
+            "value": 130532,
+            "label": "平乡县"
+          },
+          {
+            "value": 130533,
+            "label": "威县"
+          },
+          {
+            "value": 130534,
+            "label": "清河县"
+          },
+          {
+            "value": 130535,
+            "label": "临西县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 123,
+        "value": 130600,
+        "label": "保定市",
+        "children": [
+          {
+            "value": 130602,
+            "label": "竞秀区"
+          },
+          {
+            "value": 130606,
+            "label": "莲池区"
+          },
+          {
+            "value": 130607,
+            "label": "满城区"
+          },
+          {
+            "value": 130608,
+            "label": "清苑区"
+          },
+          {
+            "value": 130609,
+            "label": "徐水区"
+          },
+          {
+            "value": 130681,
+            "label": "涿州市"
+          },
+          {
+            "value": 130682,
+            "label": "定州市"
+          },
+          {
+            "value": 130683,
+            "label": "安国市"
+          },
+          {
+            "value": 130684,
+            "label": "高碑店市"
+          },
+          {
+            "value": 130623,
+            "label": "涞水县"
+          },
+          {
+            "value": 130624,
+            "label": "阜平县"
+          },
+          {
+            "value": 130626,
+            "label": "定兴县"
+          },
+          {
+            "value": 130627,
+            "label": "唐县"
+          },
+          {
+            "value": 130628,
+            "label": "高阳县"
+          },
+          {
+            "value": 130629,
+            "label": "容城县"
+          },
+          {
+            "value": 130630,
+            "label": "涞源县"
+          },
+          {
+            "value": 130631,
+            "label": "望都县"
+          },
+          {
+            "value": 130632,
+            "label": "安新县"
+          },
+          {
+            "value": 130633,
+            "label": "易县"
+          },
+          {
+            "value": 130634,
+            "label": "曲阳县"
+          },
+          {
+            "value": 130635,
+            "label": "蠡县"
+          },
+          {
+            "value": 130636,
+            "label": "顺平县"
+          },
+          {
+            "value": 130637,
+            "label": "博野县"
+          },
+          {
+            "value": 130638,
+            "label": "雄县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 148,
+        "value": 130700,
+        "label": "张家口市",
+        "children": [
+          {
+            "value": 130703,
+            "label": "桥西区"
+          },
+          {
+            "value": 130702,
+            "label": "桥东区"
+          },
+          {
+            "value": 130705,
+            "label": "宣化区"
+          },
+          {
+            "value": 130706,
+            "label": "下花园区"
+          },
+          {
+            "value": 130708,
+            "label": "万全区"
+          },
+          {
+            "value": 130709,
+            "label": "崇礼区"
+          },
+          {
+            "value": 130722,
+            "label": "张北县"
+          },
+          {
+            "value": 130723,
+            "label": "康保县"
+          },
+          {
+            "value": 130724,
+            "label": "沽源县"
+          },
+          {
+            "value": 130725,
+            "label": "尚义县"
+          },
+          {
+            "value": 130726,
+            "label": "蔚县"
+          },
+          {
+            "value": 130727,
+            "label": "阳原县"
+          },
+          {
+            "value": 130728,
+            "label": "怀安县"
+          },
+          {
+            "value": 130730,
+            "label": "怀来县"
+          },
+          {
+            "value": 130731,
+            "label": "涿鹿县"
+          },
+          {
+            "value": 130732,
+            "label": "赤城县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 165,
+        "value": 130800,
+        "label": "承德市",
+        "children": [
+          {
+            "value": 130802,
+            "label": "双桥区"
+          },
+          {
+            "value": 130803,
+            "label": "双滦区"
+          },
+          {
+            "value": 130804,
+            "label": "鹰手营子矿区"
+          },
+          {
+            "value": 130881,
+            "label": "平泉市"
+          },
+          {
+            "value": 130821,
+            "label": "承德县"
+          },
+          {
+            "value": 130822,
+            "label": "兴隆县"
+          },
+          {
+            "value": 130824,
+            "label": "滦平县"
+          },
+          {
+            "value": 130825,
+            "label": "隆化县"
+          },
+          {
+            "value": 130826,
+            "label": "丰宁满族自治县"
+          },
+          {
+            "value": 130827,
+            "label": "宽城满族自治县"
+          },
+          {
+            "value": 130828,
+            "label": "围场满族蒙古族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 177,
+        "value": 130900,
+        "label": "沧州市",
+        "children": [
+          {
+            "value": 130903,
+            "label": "运河区"
+          },
+          {
+            "value": 130902,
+            "label": "新华区"
+          },
+          {
+            "value": 130981,
+            "label": "泊头市"
+          },
+          {
+            "value": 130982,
+            "label": "任丘市"
+          },
+          {
+            "value": 130983,
+            "label": "黄骅市"
+          },
+          {
+            "value": 130984,
+            "label": "河间市"
+          },
+          {
+            "value": 130921,
+            "label": "沧县"
+          },
+          {
+            "value": 130922,
+            "label": "青县"
+          },
+          {
+            "value": 130923,
+            "label": "东光县"
+          },
+          {
+            "value": 130924,
+            "label": "海兴县"
+          },
+          {
+            "value": 130925,
+            "label": "盐山县"
+          },
+          {
+            "value": 130926,
+            "label": "肃宁县"
+          },
+          {
+            "value": 130927,
+            "label": "南皮县"
+          },
+          {
+            "value": 130928,
+            "label": "吴桥县"
+          },
+          {
+            "value": 130929,
+            "label": "献县"
+          },
+          {
+            "value": 130930,
+            "label": "孟村回族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 194,
+        "value": 131000,
+        "label": "廊坊市",
+        "children": [
+          {
+            "value": 131003,
+            "label": "广阳区"
+          },
+          {
+            "value": 131002,
+            "label": "安次区"
+          },
+          {
+            "value": 131081,
+            "label": "霸州市"
+          },
+          {
+            "value": 131082,
+            "label": "三河市"
+          },
+          {
+            "value": 131022,
+            "label": "固安县"
+          },
+          {
+            "value": 131023,
+            "label": "永清县"
+          },
+          {
+            "value": 131024,
+            "label": "香河县"
+          },
+          {
+            "value": 131025,
+            "label": "大城县"
+          },
+          {
+            "value": 131026,
+            "label": "文安县"
+          },
+          {
+            "value": 131028,
+            "label": "大厂回族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 205,
+        "value": 131100,
+        "label": "衡水市",
+        "children": [
+          {
+            "value": 131102,
+            "label": "桃城区"
+          },
+          {
+            "value": 131103,
+            "label": "冀州区"
+          },
+          {
+            "value": 131182,
+            "label": "深州市"
+          },
+          {
+            "value": 131121,
+            "label": "枣强县"
+          },
+          {
+            "value": 131122,
+            "label": "武邑县"
+          },
+          {
+            "value": 131123,
+            "label": "武强县"
+          },
+          {
+            "value": 131124,
+            "label": "饶阳县"
+          },
+          {
+            "value": 131125,
+            "label": "安平县"
+          },
+          {
+            "value": 131126,
+            "label": "故城县"
+          },
+          {
+            "value": 131127,
+            "label": "景县"
+          },
+          {
+            "value": 131128,
+            "label": "阜城县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 130000,
+    "label": "河北省",
+    "expand": "true"
+  },
+  {
+    "id": 217,
+    "children": [
+      {
+        "id": 218,
+        "value": 140100,
+        "label": "太原市",
+        "children": [
+          {
+            "value": 140107,
+            "label": "杏花岭区"
+          },
+          {
+            "value": 140105,
+            "label": "小店区"
+          },
+          {
+            "value": 140106,
+            "label": "迎泽区"
+          },
+          {
+            "value": 140108,
+            "label": "尖草坪区"
+          },
+          {
+            "value": 140109,
+            "label": "万柏林区"
+          },
+          {
+            "value": 140110,
+            "label": "晋源区"
+          },
+          {
+            "value": 140181,
+            "label": "古交市"
+          },
+          {
+            "value": 140121,
+            "label": "清徐县"
+          },
+          {
+            "value": 140122,
+            "label": "阳曲县"
+          },
+          {
+            "value": 140123,
+            "label": "娄烦县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 229,
+        "value": 140200,
+        "label": "大同市",
+        "children": [
+          {
+            "value": 140202,
+            "label": "城区"
+          },
+          {
+            "value": 140203,
+            "label": "矿区"
+          },
+          {
+            "value": 140211,
+            "label": "南郊区"
+          },
+          {
+            "value": 140212,
+            "label": "新荣区"
+          },
+          {
+            "value": 140221,
+            "label": "阳高县"
+          },
+          {
+            "value": 140222,
+            "label": "天镇县"
+          },
+          {
+            "value": 140223,
+            "label": "广灵县"
+          },
+          {
+            "value": 140224,
+            "label": "灵丘县"
+          },
+          {
+            "value": 140225,
+            "label": "浑源县"
+          },
+          {
+            "value": 140226,
+            "label": "左云县"
+          },
+          {
+            "value": 140227,
+            "label": "大同县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 241,
+        "value": 140300,
+        "label": "阳泉市",
+        "children": [
+          {
+            "value": 140302,
+            "label": "城区"
+          },
+          {
+            "value": 140303,
+            "label": "矿区"
+          },
+          {
+            "value": 140311,
+            "label": "郊区"
+          },
+          {
+            "value": 140321,
+            "label": "平定县"
+          },
+          {
+            "value": 140322,
+            "label": "盂县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 247,
+        "value": 140400,
+        "label": "长治市",
+        "children": [
+          {
+            "value": 140402,
+            "label": "城区"
+          },
+          {
+            "value": 140411,
+            "label": "郊区"
+          },
+          {
+            "value": 140481,
+            "label": "潞城市"
+          },
+          {
+            "value": 140421,
+            "label": "长治县"
+          },
+          {
+            "value": 140423,
+            "label": "襄垣县"
+          },
+          {
+            "value": 140424,
+            "label": "屯留县"
+          },
+          {
+            "value": 140425,
+            "label": "平顺县"
+          },
+          {
+            "value": 140426,
+            "label": "黎城县"
+          },
+          {
+            "value": 140427,
+            "label": "壶关县"
+          },
+          {
+            "value": 140428,
+            "label": "长子县"
+          },
+          {
+            "value": 140429,
+            "label": "武乡县"
+          },
+          {
+            "value": 140430,
+            "label": "沁县"
+          },
+          {
+            "value": 140431,
+            "label": "沁源县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 261,
+        "value": 140500,
+        "label": "晋城市",
+        "children": [
+          {
+            "value": 140502,
+            "label": "城区"
+          },
+          {
+            "value": 140581,
+            "label": "高平市"
+          },
+          {
+            "value": 140521,
+            "label": "沁水县"
+          },
+          {
+            "value": 140522,
+            "label": "阳城县"
+          },
+          {
+            "value": 140524,
+            "label": "陵川县"
+          },
+          {
+            "value": 140525,
+            "label": "泽州县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 268,
+        "value": 140600,
+        "label": "朔州市",
+        "children": [
+          {
+            "value": 140602,
+            "label": "朔城区"
+          },
+          {
+            "value": 140603,
+            "label": "平鲁区"
+          },
+          {
+            "value": 140621,
+            "label": "山阴县"
+          },
+          {
+            "value": 140622,
+            "label": "应县"
+          },
+          {
+            "value": 140623,
+            "label": "右玉县"
+          },
+          {
+            "value": 140624,
+            "label": "怀仁县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 275,
+        "value": 140700,
+        "label": "晋中市",
+        "children": [
+          {
+            "value": 140702,
+            "label": "榆次区"
+          },
+          {
+            "value": 140781,
+            "label": "介休市"
+          },
+          {
+            "value": 140721,
+            "label": "榆社县"
+          },
+          {
+            "value": 140722,
+            "label": "左权县"
+          },
+          {
+            "value": 140723,
+            "label": "和顺县"
+          },
+          {
+            "value": 140724,
+            "label": "昔阳县"
+          },
+          {
+            "value": 140725,
+            "label": "寿阳县"
+          },
+          {
+            "value": 140726,
+            "label": "太谷县"
+          },
+          {
+            "value": 140727,
+            "label": "祁县"
+          },
+          {
+            "value": 140728,
+            "label": "平遥县"
+          },
+          {
+            "value": 140729,
+            "label": "灵石县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 287,
+        "value": 140800,
+        "label": "运城市",
+        "children": [
+          {
+            "value": 140802,
+            "label": "盐湖区"
+          },
+          {
+            "value": 140881,
+            "label": "永济市"
+          },
+          {
+            "value": 140882,
+            "label": "河津市"
+          },
+          {
+            "value": 140821,
+            "label": "临猗县"
+          },
+          {
+            "value": 140822,
+            "label": "万荣县"
+          },
+          {
+            "value": 140823,
+            "label": "闻喜县"
+          },
+          {
+            "value": 140824,
+            "label": "稷山县"
+          },
+          {
+            "value": 140825,
+            "label": "新绛县"
+          },
+          {
+            "value": 140826,
+            "label": "绛县"
+          },
+          {
+            "value": 140827,
+            "label": "垣曲县"
+          },
+          {
+            "value": 140828,
+            "label": "夏县"
+          },
+          {
+            "value": 140829,
+            "label": "平陆县"
+          },
+          {
+            "value": 140830,
+            "label": "芮城县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 301,
+        "value": 140900,
+        "label": "忻州市",
+        "children": [
+          {
+            "value": 140902,
+            "label": "忻府区"
+          },
+          {
+            "value": 140981,
+            "label": "原平市"
+          },
+          {
+            "value": 140921,
+            "label": "定襄县"
+          },
+          {
+            "value": 140922,
+            "label": "五台县"
+          },
+          {
+            "value": 140923,
+            "label": "代县"
+          },
+          {
+            "value": 140924,
+            "label": "繁峙县"
+          },
+          {
+            "value": 140925,
+            "label": "宁武县"
+          },
+          {
+            "value": 140926,
+            "label": "静乐县"
+          },
+          {
+            "value": 140927,
+            "label": "神池县"
+          },
+          {
+            "value": 140928,
+            "label": "五寨县"
+          },
+          {
+            "value": 140929,
+            "label": "岢岚县"
+          },
+          {
+            "value": 140930,
+            "label": "河曲县"
+          },
+          {
+            "value": 140931,
+            "label": "保德县"
+          },
+          {
+            "value": 140932,
+            "label": "偏关县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 316,
+        "value": 141000,
+        "label": "临汾市",
+        "children": [
+          {
+            "value": 141002,
+            "label": "尧都区"
+          },
+          {
+            "value": 141081,
+            "label": "侯马市"
+          },
+          {
+            "value": 141082,
+            "label": "霍州市"
+          },
+          {
+            "value": 141021,
+            "label": "曲沃县"
+          },
+          {
+            "value": 141022,
+            "label": "翼城县"
+          },
+          {
+            "value": 141023,
+            "label": "襄汾县"
+          },
+          {
+            "value": 141024,
+            "label": "洪洞县"
+          },
+          {
+            "value": 141025,
+            "label": "古县"
+          },
+          {
+            "value": 141026,
+            "label": "安泽县"
+          },
+          {
+            "value": 141027,
+            "label": "浮山县"
+          },
+          {
+            "value": 141028,
+            "label": "吉县"
+          },
+          {
+            "value": 141029,
+            "label": "乡宁县"
+          },
+          {
+            "value": 141030,
+            "label": "大宁县"
+          },
+          {
+            "value": 141031,
+            "label": "隰县"
+          },
+          {
+            "value": 141032,
+            "label": "永和县"
+          },
+          {
+            "value": 141033,
+            "label": "蒲县"
+          },
+          {
+            "value": 141034,
+            "label": "汾西县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 334,
+        "value": 141100,
+        "label": "吕梁市",
+        "children": [
+          {
+            "value": 141102,
+            "label": "离石区"
+          },
+          {
+            "value": 141181,
+            "label": "孝义市"
+          },
+          {
+            "value": 141182,
+            "label": "汾阳市"
+          },
+          {
+            "value": 141121,
+            "label": "文水县"
+          },
+          {
+            "value": 141122,
+            "label": "交城县"
+          },
+          {
+            "value": 141123,
+            "label": "兴县"
+          },
+          {
+            "value": 141124,
+            "label": "临县"
+          },
+          {
+            "value": 141125,
+            "label": "柳林县"
+          },
+          {
+            "value": 141126,
+            "label": "石楼县"
+          },
+          {
+            "value": 141127,
+            "label": "岚县"
+          },
+          {
+            "value": 141128,
+            "label": "方山县"
+          },
+          {
+            "value": 141129,
+            "label": "中阳县"
+          },
+          {
+            "value": 141130,
+            "label": "交口县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 140000,
+    "label": "山西省",
+    "expand": "true"
+  },
+  {
+    "id": 348,
+    "children": [
+      {
+        "id": 349,
+        "value": 150100,
+        "label": "呼和浩特市",
+        "children": [
+          {
+            "value": 150102,
+            "label": "新城区"
+          },
+          {
+            "value": 150103,
+            "label": "回民区"
+          },
+          {
+            "value": 150104,
+            "label": "玉泉区"
+          },
+          {
+            "value": 150105,
+            "label": "赛罕区"
+          },
+          {
+            "value": 150122,
+            "label": "托克托县"
+          },
+          {
+            "value": 150123,
+            "label": "和林格尔县"
+          },
+          {
+            "value": 150124,
+            "label": "清水河县"
+          },
+          {
+            "value": 150125,
+            "label": "武川县"
+          },
+          {
+            "value": 150121,
+            "label": "土默特左旗"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 359,
+        "value": 150200,
+        "label": "包头市",
+        "children": [
+          {
+            "value": 150203,
+            "label": "昆都仑区"
+          },
+          {
+            "value": 150202,
+            "label": "东河区"
+          },
+          {
+            "value": 150204,
+            "label": "青山区"
+          },
+          {
+            "value": 150205,
+            "label": "石拐区"
+          },
+          {
+            "value": 150206,
+            "label": "白云鄂博矿区"
+          },
+          {
+            "value": 150207,
+            "label": "九原区"
+          },
+          {
+            "value": 150222,
+            "label": "固阳县"
+          },
+          {
+            "value": 150221,
+            "label": "土默特右旗"
+          },
+          {
+            "value": 150223,
+            "label": "达尔罕茂明安联合旗"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 369,
+        "value": 150300,
+        "label": "乌海市",
+        "children": [
+          {
+            "value": 150302,
+            "label": "海勃湾区"
+          },
+          {
+            "value": 150303,
+            "label": "海南区"
+          },
+          {
+            "value": 150304,
+            "label": "乌达区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 373,
+        "value": 150400,
+        "label": "赤峰市",
+        "children": [
+          {
+            "value": 150402,
+            "label": "红山区"
+          },
+          {
+            "value": 150403,
+            "label": "元宝山区"
+          },
+          {
+            "value": 150404,
+            "label": "松山区"
+          },
+          {
+            "value": 150424,
+            "label": "林西县"
+          },
+          {
+            "value": 150429,
+            "label": "宁城县"
+          },
+          {
+            "value": 150421,
+            "label": "阿鲁科尔沁旗"
+          },
+          {
+            "value": 150422,
+            "label": "巴林左旗"
+          },
+          {
+            "value": 150423,
+            "label": "巴林右旗"
+          },
+          {
+            "value": 150425,
+            "label": "克什克腾旗"
+          },
+          {
+            "value": 150426,
+            "label": "翁牛特旗"
+          },
+          {
+            "value": 150428,
+            "label": "喀喇沁旗"
+          },
+          {
+            "value": 150430,
+            "label": "敖汉旗"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 386,
+        "value": 150500,
+        "label": "通辽市",
+        "children": [
+          {
+            "value": 150502,
+            "label": "科尔沁区"
+          },
+          {
+            "value": 150581,
+            "label": "霍林郭勒市"
+          },
+          {
+            "value": 150523,
+            "label": "开鲁县"
+          },
+          {
+            "value": 150524,
+            "label": "库伦旗"
+          },
+          {
+            "value": 150525,
+            "label": "奈曼旗"
+          },
+          {
+            "value": 150526,
+            "label": "扎鲁特旗"
+          },
+          {
+            "value": 150521,
+            "label": "科尔沁左翼中旗"
+          },
+          {
+            "value": 150522,
+            "label": "科尔沁左翼后旗"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 395,
+        "value": 150600,
+        "label": "鄂尔多斯市",
+        "children": [
+          {
+            "value": 150602,
+            "label": "东胜区"
+          },
+          {
+            "value": 150603,
+            "label": "康巴什区"
+          },
+          {
+            "value": 150621,
+            "label": "达拉特旗"
+          },
+          {
+            "value": 150622,
+            "label": "准格尔旗"
+          },
+          {
+            "value": 150623,
+            "label": "鄂托克前旗"
+          },
+          {
+            "value": 150624,
+            "label": "鄂托克旗"
+          },
+          {
+            "value": 150625,
+            "label": "杭锦旗"
+          },
+          {
+            "value": 150626,
+            "label": "乌审旗"
+          },
+          {
+            "value": 150627,
+            "label": "伊金霍洛旗"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 405,
+        "value": 150700,
+        "label": "呼伦贝尔市",
+        "children": [
+          {
+            "value": 150702,
+            "label": "海拉尔区"
+          },
+          {
+            "value": 150703,
+            "label": "扎赉诺尔区"
+          },
+          {
+            "value": 150781,
+            "label": "满洲里市"
+          },
+          {
+            "value": 150782,
+            "label": "牙克石市"
+          },
+          {
+            "value": 150783,
+            "label": "扎兰屯市"
+          },
+          {
+            "value": 150784,
+            "label": "额尔古纳市"
+          },
+          {
+            "value": 150785,
+            "label": "根河市"
+          },
+          {
+            "value": 150721,
+            "label": "阿荣旗"
+          },
+          {
+            "value": 150725,
+            "label": "陈巴尔虎旗"
+          },
+          {
+            "value": 150726,
+            "label": "新巴尔虎左旗"
+          },
+          {
+            "value": 150727,
+            "label": "新巴尔虎右旗"
+          },
+          {
+            "value": 150722,
+            "label": "莫力达瓦达斡尔族自治旗"
+          },
+          {
+            "value": 150723,
+            "label": "鄂伦春自治旗"
+          },
+          {
+            "value": 150724,
+            "label": "鄂温克族自治旗"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 420,
+        "value": 150800,
+        "label": "巴彦淖尔市",
+        "children": [
+          {
+            "value": 150802,
+            "label": "临河区"
+          },
+          {
+            "value": 150821,
+            "label": "五原县"
+          },
+          {
+            "value": 150822,
+            "label": "磴口县"
+          },
+          {
+            "value": 150823,
+            "label": "乌拉特前旗"
+          },
+          {
+            "value": 150824,
+            "label": "乌拉特中旗"
+          },
+          {
+            "value": 150825,
+            "label": "乌拉特后旗"
+          },
+          {
+            "value": 150826,
+            "label": "杭锦后旗"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 428,
+        "value": 150900,
+        "label": "乌兰察布市",
+        "children": [
+          {
+            "value": 150902,
+            "label": "集宁区"
+          },
+          {
+            "value": 150981,
+            "label": "丰镇市"
+          },
+          {
+            "value": 150921,
+            "label": "卓资县"
+          },
+          {
+            "value": 150922,
+            "label": "化德县"
+          },
+          {
+            "value": 150923,
+            "label": "商都县"
+          },
+          {
+            "value": 150924,
+            "label": "兴和县"
+          },
+          {
+            "value": 150925,
+            "label": "凉城县"
+          },
+          {
+            "value": 150926,
+            "label": "察哈尔右翼前旗"
+          },
+          {
+            "value": 150927,
+            "label": "察哈尔右翼中旗"
+          },
+          {
+            "value": 150928,
+            "label": "察哈尔右翼后旗"
+          },
+          {
+            "value": 150929,
+            "label": "四子王旗"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 440,
+        "value": 152200,
+        "label": "兴安盟",
+        "children": [
+          {
+            "value": 152201,
+            "label": "乌兰浩特市"
+          },
+          {
+            "value": 152202,
+            "label": "阿尔山市"
+          },
+          {
+            "value": 152224,
+            "label": "突泉县"
+          },
+          {
+            "value": 152221,
+            "label": "科尔沁右翼前旗"
+          },
+          {
+            "value": 152222,
+            "label": "科尔沁右翼中旗"
+          },
+          {
+            "value": 152223,
+            "label": "扎赉特旗"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 447,
+        "value": 152500,
+        "label": "锡林郭勒盟",
+        "children": [
+          {
+            "value": 152502,
+            "label": "锡林浩特市"
+          },
+          {
+            "value": 152501,
+            "label": "二连浩特市"
+          },
+          {
+            "value": 152531,
+            "label": "多伦县"
+          },
+          {
+            "value": 152522,
+            "label": "阿巴嘎旗"
+          },
+          {
+            "value": 152523,
+            "label": "苏尼特左旗"
+          },
+          {
+            "value": 152524,
+            "label": "苏尼特右旗"
+          },
+          {
+            "value": 152525,
+            "label": "东乌珠穆沁旗"
+          },
+          {
+            "value": 152526,
+            "label": "西乌珠穆沁旗"
+          },
+          {
+            "value": 152527,
+            "label": "太仆寺旗"
+          },
+          {
+            "value": 152528,
+            "label": "镶黄旗"
+          },
+          {
+            "value": 152529,
+            "label": "正镶白旗"
+          },
+          {
+            "value": 152530,
+            "label": "正蓝旗"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 460,
+        "value": 152900,
+        "label": "阿拉善盟",
+        "children": [
+          {
+            "value": 152921,
+            "label": "阿拉善左旗"
+          },
+          {
+            "value": 152922,
+            "label": "阿拉善右旗"
+          },
+          {
+            "value": 152923,
+            "label": "额济纳旗"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 150000,
+    "label": "内蒙古自治区",
+    "expand": "true"
+  },
+  {
+    "id": 464,
+    "children": [
+      {
+        "id": 465,
+        "value": 210100,
+        "label": "沈阳市",
+        "children": [
+          {
+            "value": 210103,
+            "label": "沈河区"
+          },
+          {
+            "value": 210102,
+            "label": "和平区"
+          },
+          {
+            "value": 210104,
+            "label": "大东区"
+          },
+          {
+            "value": 210105,
+            "label": "皇姑区"
+          },
+          {
+            "value": 210106,
+            "label": "铁西区"
+          },
+          {
+            "value": 210111,
+            "label": "苏家屯区"
+          },
+          {
+            "value": 210112,
+            "label": "浑南区"
+          },
+          {
+            "value": 210113,
+            "label": "沈北新区"
+          },
+          {
+            "value": 210114,
+            "label": "于洪区"
+          },
+          {
+            "value": 210115,
+            "label": "辽中区"
+          },
+          {
+            "value": 210181,
+            "label": "新民市"
+          },
+          {
+            "value": 210123,
+            "label": "康平县"
+          },
+          {
+            "value": 210124,
+            "label": "法库县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 479,
+        "value": 210200,
+        "label": "大连市",
+        "children": [
+          {
+            "value": 210203,
+            "label": "西岗区"
+          },
+          {
+            "value": 210202,
+            "label": "中山区"
+          },
+          {
+            "value": 210204,
+            "label": "沙河口区"
+          },
+          {
+            "value": 210211,
+            "label": "甘井子区"
+          },
+          {
+            "value": 210212,
+            "label": "旅顺口区"
+          },
+          {
+            "value": 210213,
+            "label": "金州区"
+          },
+          {
+            "value": 210281,
+            "label": "瓦房店市"
+          },
+          {
+            "value": 210214,
+            "label": "普兰店区"
+          },
+          {
+            "value": 210283,
+            "label": "庄河市"
+          },
+          {
+            "value": 210224,
+            "label": "长海县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 490,
+        "value": 210300,
+        "label": "鞍山市",
+        "children": [
+          {
+            "value": 210302,
+            "label": "铁东区"
+          },
+          {
+            "value": 210303,
+            "label": "铁西区"
+          },
+          {
+            "value": 210304,
+            "label": "立山区"
+          },
+          {
+            "value": 210311,
+            "label": "千山区"
+          },
+          {
+            "value": 210381,
+            "label": "海城市"
+          },
+          {
+            "value": 210321,
+            "label": "台安县"
+          },
+          {
+            "value": 210323,
+            "label": "岫岩满族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 498,
+        "value": 210400,
+        "label": "抚顺市",
+        "children": [
+          {
+            "value": 210411,
+            "label": "顺城区"
+          },
+          {
+            "value": 210402,
+            "label": "新抚区"
+          },
+          {
+            "value": 210403,
+            "label": "东洲区"
+          },
+          {
+            "value": 210404,
+            "label": "望花区"
+          },
+          {
+            "value": 210421,
+            "label": "抚顺县"
+          },
+          {
+            "value": 210422,
+            "label": "新宾满族自治县"
+          },
+          {
+            "value": 210423,
+            "label": "清原满族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 506,
+        "value": 210500,
+        "label": "本溪市",
+        "children": [
+          {
+            "value": 210502,
+            "label": "平山区"
+          },
+          {
+            "value": 210503,
+            "label": "溪湖区"
+          },
+          {
+            "value": 210504,
+            "label": "明山区"
+          },
+          {
+            "value": 210505,
+            "label": "南芬区"
+          },
+          {
+            "value": 210521,
+            "label": "本溪满族自治县"
+          },
+          {
+            "value": 210522,
+            "label": "桓仁满族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 513,
+        "value": 210600,
+        "label": "丹东市",
+        "children": [
+          {
+            "value": 210603,
+            "label": "振兴区"
+          },
+          {
+            "value": 210602,
+            "label": "元宝区"
+          },
+          {
+            "value": 210604,
+            "label": "振安区"
+          },
+          {
+            "value": 210681,
+            "label": "东港市"
+          },
+          {
+            "value": 210682,
+            "label": "凤城市"
+          },
+          {
+            "value": 210624,
+            "label": "宽甸满族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 520,
+        "value": 210700,
+        "label": "锦州市",
+        "children": [
+          {
+            "value": 210711,
+            "label": "太和区"
+          },
+          {
+            "value": 210702,
+            "label": "古塔区"
+          },
+          {
+            "value": 210703,
+            "label": "凌河区"
+          },
+          {
+            "value": 210781,
+            "label": "凌海市"
+          },
+          {
+            "value": 210782,
+            "label": "北镇市"
+          },
+          {
+            "value": 210726,
+            "label": "黑山县"
+          },
+          {
+            "value": 210727,
+            "label": "义县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 528,
+        "value": 210800,
+        "label": "营口市",
+        "children": [
+          {
+            "value": 210802,
+            "label": "站前区"
+          },
+          {
+            "value": 210803,
+            "label": "西市区"
+          },
+          {
+            "value": 210804,
+            "label": "鲅鱼圈区"
+          },
+          {
+            "value": 210811,
+            "label": "老边区"
+          },
+          {
+            "value": 210881,
+            "label": "盖州市"
+          },
+          {
+            "value": 210882,
+            "label": "大石桥市"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 535,
+        "value": 210900,
+        "label": "阜新市",
+        "children": [
+          {
+            "value": 210911,
+            "label": "细河区"
+          },
+          {
+            "value": 210902,
+            "label": "海州区"
+          },
+          {
+            "value": 210903,
+            "label": "新邱区"
+          },
+          {
+            "value": 210904,
+            "label": "太平区"
+          },
+          {
+            "value": 210905,
+            "label": "清河门区"
+          },
+          {
+            "value": 210922,
+            "label": "彰武县"
+          },
+          {
+            "value": 210921,
+            "label": "阜新蒙古族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 543,
+        "value": 211000,
+        "label": "辽阳市",
+        "children": [
+          {
+            "value": 211002,
+            "label": "白塔区"
+          },
+          {
+            "value": 211003,
+            "label": "文圣区"
+          },
+          {
+            "value": 211004,
+            "label": "宏伟区"
+          },
+          {
+            "value": 211005,
+            "label": "弓长岭区"
+          },
+          {
+            "value": 211011,
+            "label": "太子河区"
+          },
+          {
+            "value": 211081,
+            "label": "灯塔市"
+          },
+          {
+            "value": 211021,
+            "label": "辽阳县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 551,
+        "value": 211100,
+        "label": "盘锦市",
+        "children": [
+          {
+            "value": 211103,
+            "label": "兴隆台区"
+          },
+          {
+            "value": 211102,
+            "label": "双台子区"
+          },
+          {
+            "value": 211104,
+            "label": "大洼区"
+          },
+          {
+            "value": 211122,
+            "label": "盘山县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 556,
+        "value": 211200,
+        "label": "铁岭市",
+        "children": [
+          {
+            "value": 211202,
+            "label": "银州区"
+          },
+          {
+            "value": 211204,
+            "label": "清河区"
+          },
+          {
+            "value": 211281,
+            "label": "调兵山市"
+          },
+          {
+            "value": 211282,
+            "label": "开原市"
+          },
+          {
+            "value": 211221,
+            "label": "铁岭县"
+          },
+          {
+            "value": 211223,
+            "label": "西丰县"
+          },
+          {
+            "value": 211224,
+            "label": "昌图县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 564,
+        "value": 211300,
+        "label": "朝阳市",
+        "children": [
+          {
+            "value": 211302,
+            "label": "双塔区"
+          },
+          {
+            "value": 211303,
+            "label": "龙城区"
+          },
+          {
+            "value": 211381,
+            "label": "北票市"
+          },
+          {
+            "value": 211382,
+            "label": "凌源市"
+          },
+          {
+            "value": 211321,
+            "label": "朝阳县"
+          },
+          {
+            "value": 211322,
+            "label": "建平县"
+          },
+          {
+            "value": 211324,
+            "label": "喀喇沁左翼蒙古族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 572,
+        "value": 211400,
+        "label": "葫芦岛市",
+        "children": [
+          {
+            "value": 211403,
+            "label": "龙港区"
+          },
+          {
+            "value": 211402,
+            "label": "连山区"
+          },
+          {
+            "value": 211404,
+            "label": "南票区"
+          },
+          {
+            "value": 211481,
+            "label": "兴城市"
+          },
+          {
+            "value": 211421,
+            "label": "绥中县"
+          },
+          {
+            "value": 211422,
+            "label": "建昌县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 210000,
+    "label": "辽宁省",
+    "expand": "true"
+  },
+  {
+    "id": 579,
+    "children": [
+      {
+        "id": 580,
+        "value": 220100,
+        "label": "长春市",
+        "children": [
+          {
+            "value": 220102,
+            "label": "南关区"
+          },
+          {
+            "value": 220103,
+            "label": "宽城区"
+          },
+          {
+            "value": 220104,
+            "label": "朝阳区"
+          },
+          {
+            "value": 220105,
+            "label": "二道区"
+          },
+          {
+            "value": 220106,
+            "label": "绿园区"
+          },
+          {
+            "value": 220112,
+            "label": "双阳区"
+          },
+          {
+            "value": 220113,
+            "label": "九台区"
+          },
+          {
+            "value": 220182,
+            "label": "榆树市"
+          },
+          {
+            "value": 220183,
+            "label": "德惠市"
+          },
+          {
+            "value": 220122,
+            "label": "农安县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 591,
+        "value": 220200,
+        "label": "吉林市",
+        "children": [
+          {
+            "value": 220204,
+            "label": "船营区"
+          },
+          {
+            "value": 220202,
+            "label": "昌邑区"
+          },
+          {
+            "value": 220203,
+            "label": "龙潭区"
+          },
+          {
+            "value": 220211,
+            "label": "丰满区"
+          },
+          {
+            "value": 220281,
+            "label": "蛟河市"
+          },
+          {
+            "value": 220282,
+            "label": "桦甸市"
+          },
+          {
+            "value": 220283,
+            "label": "舒兰市"
+          },
+          {
+            "value": 220284,
+            "label": "磐石市"
+          },
+          {
+            "value": 220221,
+            "label": "永吉县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 601,
+        "value": 220300,
+        "label": "四平市",
+        "children": [
+          {
+            "value": 220302,
+            "label": "铁西区"
+          },
+          {
+            "value": 220303,
+            "label": "铁东区"
+          },
+          {
+            "value": 220381,
+            "label": "公主岭市"
+          },
+          {
+            "value": 220382,
+            "label": "双辽市"
+          },
+          {
+            "value": 220322,
+            "label": "梨树县"
+          },
+          {
+            "value": 220323,
+            "label": "伊通满族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 608,
+        "value": 220400,
+        "label": "辽源市",
+        "children": [
+          {
+            "value": 220402,
+            "label": "龙山区"
+          },
+          {
+            "value": 220403,
+            "label": "西安区"
+          },
+          {
+            "value": 220421,
+            "label": "东丰县"
+          },
+          {
+            "value": 220422,
+            "label": "东辽县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 613,
+        "value": 220500,
+        "label": "通化市",
+        "children": [
+          {
+            "value": 220502,
+            "label": "东昌区"
+          },
+          {
+            "value": 220503,
+            "label": "二道江区"
+          },
+          {
+            "value": 220581,
+            "label": "梅河口市"
+          },
+          {
+            "value": 220582,
+            "label": "集安市"
+          },
+          {
+            "value": 220521,
+            "label": "通化县"
+          },
+          {
+            "value": 220523,
+            "label": "辉南县"
+          },
+          {
+            "value": 220524,
+            "label": "柳河县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 621,
+        "value": 220600,
+        "label": "白山市",
+        "children": [
+          {
+            "value": 220602,
+            "label": "浑江区"
+          },
+          {
+            "value": 220605,
+            "label": "江源区"
+          },
+          {
+            "value": 220681,
+            "label": "临江市"
+          },
+          {
+            "value": 220621,
+            "label": "抚松县"
+          },
+          {
+            "value": 220622,
+            "label": "靖宇县"
+          },
+          {
+            "value": 220623,
+            "label": "长白朝鲜族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 628,
+        "value": 220700,
+        "label": "松原市",
+        "children": [
+          {
+            "value": 220702,
+            "label": "宁江区"
+          },
+          {
+            "value": 220781,
+            "label": "扶余市"
+          },
+          {
+            "value": 220722,
+            "label": "长岭县"
+          },
+          {
+            "value": 220723,
+            "label": "乾安县"
+          },
+          {
+            "value": 220721,
+            "label": "前郭尔罗斯蒙古族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 634,
+        "value": 220800,
+        "label": "白城市",
+        "children": [
+          {
+            "value": 220802,
+            "label": "洮北区"
+          },
+          {
+            "value": 220881,
+            "label": "洮南市"
+          },
+          {
+            "value": 220882,
+            "label": "大安市"
+          },
+          {
+            "value": 220821,
+            "label": "镇赉县"
+          },
+          {
+            "value": 220822,
+            "label": "通榆县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 640,
+        "value": 222400,
+        "label": "延边朝鲜族自治州",
+        "children": [
+          {
+            "value": 222401,
+            "label": "延吉市"
+          },
+          {
+            "value": 222402,
+            "label": "图们市"
+          },
+          {
+            "value": 222403,
+            "label": "敦化市"
+          },
+          {
+            "value": 222404,
+            "label": "珲春市"
+          },
+          {
+            "value": 222405,
+            "label": "龙井市"
+          },
+          {
+            "value": 222406,
+            "label": "和龙市"
+          },
+          {
+            "value": 222424,
+            "label": "汪清县"
+          },
+          {
+            "value": 222426,
+            "label": "安图县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 220000,
+    "label": "吉林省",
+    "expand": "true"
+  },
+  {
+    "id": 649,
+    "children": [
+      {
+        "id": 650,
+        "value": 230100,
+        "label": "哈尔滨市",
+        "children": [
+          {
+            "value": 230109,
+            "label": "松北区"
+          },
+          {
+            "value": 230102,
+            "label": "道里区"
+          },
+          {
+            "value": 230103,
+            "label": "南岗区"
+          },
+          {
+            "value": 230104,
+            "label": "道外区"
+          },
+          {
+            "value": 230108,
+            "label": "平房区"
+          },
+          {
+            "value": 230110,
+            "label": "香坊区"
+          },
+          {
+            "value": 230111,
+            "label": "呼兰区"
+          },
+          {
+            "value": 230112,
+            "label": "阿城区"
+          },
+          {
+            "value": 230113,
+            "label": "双城区"
+          },
+          {
+            "value": 230183,
+            "label": "尚志市"
+          },
+          {
+            "value": 230184,
+            "label": "五常市"
+          },
+          {
+            "value": 230123,
+            "label": "依兰县"
+          },
+          {
+            "value": 230124,
+            "label": "方正县"
+          },
+          {
+            "value": 230125,
+            "label": "宾县"
+          },
+          {
+            "value": 230126,
+            "label": "巴彦县"
+          },
+          {
+            "value": 230127,
+            "label": "木兰县"
+          },
+          {
+            "value": 230128,
+            "label": "通河县"
+          },
+          {
+            "value": 230129,
+            "label": "延寿县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 669,
+        "value": 230200,
+        "label": "齐齐哈尔市",
+        "children": [
+          {
+            "value": 230203,
+            "label": "建华区"
+          },
+          {
+            "value": 230202,
+            "label": "龙沙区"
+          },
+          {
+            "value": 230204,
+            "label": "铁锋区"
+          },
+          {
+            "value": 230205,
+            "label": "昂昂溪区"
+          },
+          {
+            "value": 230206,
+            "label": "富拉尔基区"
+          },
+          {
+            "value": 230207,
+            "label": "碾子山区"
+          },
+          {
+            "value": 230208,
+            "label": "梅里斯达斡尔族区"
+          },
+          {
+            "value": 230281,
+            "label": "讷河市"
+          },
+          {
+            "value": 230221,
+            "label": "龙江县"
+          },
+          {
+            "value": 230223,
+            "label": "依安县"
+          },
+          {
+            "value": 230224,
+            "label": "泰来县"
+          },
+          {
+            "value": 230225,
+            "label": "甘南县"
+          },
+          {
+            "value": 230227,
+            "label": "富裕县"
+          },
+          {
+            "value": 230229,
+            "label": "克山县"
+          },
+          {
+            "value": 230230,
+            "label": "克东县"
+          },
+          {
+            "value": 230231,
+            "label": "拜泉县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 686,
+        "value": 230300,
+        "label": "鸡西市",
+        "children": [
+          {
+            "value": 230302,
+            "label": "鸡冠区"
+          },
+          {
+            "value": 230303,
+            "label": "恒山区"
+          },
+          {
+            "value": 230304,
+            "label": "滴道区"
+          },
+          {
+            "value": 230305,
+            "label": "梨树区"
+          },
+          {
+            "value": 230306,
+            "label": "城子河区"
+          },
+          {
+            "value": 230307,
+            "label": "麻山区"
+          },
+          {
+            "value": 230381,
+            "label": "虎林市"
+          },
+          {
+            "value": 230382,
+            "label": "密山市"
+          },
+          {
+            "value": 230321,
+            "label": "鸡东县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 696,
+        "value": 230400,
+        "label": "鹤岗市",
+        "children": [
+          {
+            "value": 230402,
+            "label": "向阳区"
+          },
+          {
+            "value": 230403,
+            "label": "工农区"
+          },
+          {
+            "value": 230404,
+            "label": "南山区"
+          },
+          {
+            "value": 230405,
+            "label": "兴安区"
+          },
+          {
+            "value": 230406,
+            "label": "东山区"
+          },
+          {
+            "value": 230407,
+            "label": "兴山区"
+          },
+          {
+            "value": 230421,
+            "label": "萝北县"
+          },
+          {
+            "value": 230422,
+            "label": "绥滨县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 705,
+        "value": 230500,
+        "label": "双鸭山市",
+        "children": [
+          {
+            "value": 230502,
+            "label": "尖山区"
+          },
+          {
+            "value": 230503,
+            "label": "岭东区"
+          },
+          {
+            "value": 230505,
+            "label": "四方台区"
+          },
+          {
+            "value": 230506,
+            "label": "宝山区"
+          },
+          {
+            "value": 230521,
+            "label": "集贤县"
+          },
+          {
+            "value": 230522,
+            "label": "友谊县"
+          },
+          {
+            "value": 230523,
+            "label": "宝清县"
+          },
+          {
+            "value": 230524,
+            "label": "饶河县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 714,
+        "value": 230600,
+        "label": "大庆市",
+        "children": [
+          {
+            "value": 230602,
+            "label": "萨尔图区"
+          },
+          {
+            "value": 230603,
+            "label": "龙凤区"
+          },
+          {
+            "value": 230604,
+            "label": "让胡路区"
+          },
+          {
+            "value": 230605,
+            "label": "红岗区"
+          },
+          {
+            "value": 230606,
+            "label": "大同区"
+          },
+          {
+            "value": 230621,
+            "label": "肇州县"
+          },
+          {
+            "value": 230622,
+            "label": "肇源县"
+          },
+          {
+            "value": 230623,
+            "label": "林甸县"
+          },
+          {
+            "value": 230624,
+            "label": "杜尔伯特蒙古族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 724,
+        "value": 230700,
+        "label": "伊春市",
+        "children": [
+          {
+            "value": 230702,
+            "label": "伊春区"
+          },
+          {
+            "value": 230703,
+            "label": "南岔区"
+          },
+          {
+            "value": 230704,
+            "label": "友好区"
+          },
+          {
+            "value": 230705,
+            "label": "西林区"
+          },
+          {
+            "value": 230706,
+            "label": "翠峦区"
+          },
+          {
+            "value": 230707,
+            "label": "新青区"
+          },
+          {
+            "value": 230708,
+            "label": "美溪区"
+          },
+          {
+            "value": 230709,
+            "label": "金山屯区"
+          },
+          {
+            "value": 230710,
+            "label": "五营区"
+          },
+          {
+            "value": 230711,
+            "label": "乌马河区"
+          },
+          {
+            "value": 230712,
+            "label": "汤旺河区"
+          },
+          {
+            "value": 230713,
+            "label": "带岭区"
+          },
+          {
+            "value": 230714,
+            "label": "乌伊岭区"
+          },
+          {
+            "value": 230715,
+            "label": "红星区"
+          },
+          {
+            "value": 230716,
+            "label": "上甘岭区"
+          },
+          {
+            "value": 230781,
+            "label": "铁力市"
+          },
+          {
+            "value": 230722,
+            "label": "嘉荫县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 742,
+        "value": 230800,
+        "label": "佳木斯市",
+        "children": [
+          {
+            "value": 230804,
+            "label": "前进区"
+          },
+          {
+            "value": 230803,
+            "label": "向阳区"
+          },
+          {
+            "value": 230805,
+            "label": "东风区"
+          },
+          {
+            "value": 230811,
+            "label": "郊区"
+          },
+          {
+            "value": 230881,
+            "label": "同江市"
+          },
+          {
+            "value": 230882,
+            "label": "富锦市"
+          },
+          {
+            "value": 230883,
+            "label": "抚远市"
+          },
+          {
+            "value": 230822,
+            "label": "桦南县"
+          },
+          {
+            "value": 230826,
+            "label": "桦川县"
+          },
+          {
+            "value": 230828,
+            "label": "汤原县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 753,
+        "value": 230900,
+        "label": "七台河市",
+        "children": [
+          {
+            "value": 230903,
+            "label": "桃山区"
+          },
+          {
+            "value": 230902,
+            "label": "新兴区"
+          },
+          {
+            "value": 230904,
+            "label": "茄子河区"
+          },
+          {
+            "value": 230921,
+            "label": "勃利县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 758,
+        "value": 231000,
+        "label": "牡丹江市",
+        "children": [
+          {
+            "value": 231002,
+            "label": "东安区"
+          },
+          {
+            "value": 231003,
+            "label": "阳明区"
+          },
+          {
+            "value": 231004,
+            "label": "爱民区"
+          },
+          {
+            "value": 231005,
+            "label": "西安区"
+          },
+          {
+            "value": 231081,
+            "label": "绥芬河市"
+          },
+          {
+            "value": 231083,
+            "label": "海林市"
+          },
+          {
+            "value": 231084,
+            "label": "宁安市"
+          },
+          {
+            "value": 231085,
+            "label": "穆棱市"
+          },
+          {
+            "value": 231086,
+            "label": "东宁市"
+          },
+          {
+            "value": 231025,
+            "label": "林口县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 769,
+        "value": 231100,
+        "label": "黑河市",
+        "children": [
+          {
+            "value": 231102,
+            "label": "爱辉区"
+          },
+          {
+            "value": 231181,
+            "label": "北安市"
+          },
+          {
+            "value": 231182,
+            "label": "五大连池市"
+          },
+          {
+            "value": 231121,
+            "label": "嫩江县"
+          },
+          {
+            "value": 231123,
+            "label": "逊克县"
+          },
+          {
+            "value": 231124,
+            "label": "孙吴县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 776,
+        "value": 231200,
+        "label": "绥化市",
+        "children": [
+          {
+            "value": 231202,
+            "label": "北林区"
+          },
+          {
+            "value": 231281,
+            "label": "安达市"
+          },
+          {
+            "value": 231282,
+            "label": "肇东市"
+          },
+          {
+            "value": 231283,
+            "label": "海伦市"
+          },
+          {
+            "value": 231221,
+            "label": "望奎县"
+          },
+          {
+            "value": 231222,
+            "label": "兰西县"
+          },
+          {
+            "value": 231223,
+            "label": "青冈县"
+          },
+          {
+            "value": 231224,
+            "label": "庆安县"
+          },
+          {
+            "value": 231225,
+            "label": "明水县"
+          },
+          {
+            "value": 231226,
+            "label": "绥棱县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 787,
+        "value": 232700,
+        "label": "大兴安岭地区",
+        "children": [
+          {
+            "value": 232721,
+            "label": "呼玛县"
+          },
+          {
+            "value": 232722,
+            "label": "塔河县"
+          },
+          {
+            "value": 232723,
+            "label": "漠河县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 230000,
+    "label": "黑龙江省",
+    "expand": "true"
+  },
+  {
+    "id": 791,
+    "children": [
+      {
+        "id": 792,
+        "value": 310100,
+        "label": "上海市",
+        "children": [
+          {
+            "value": 310101,
+            "label": "黄浦区"
+          },
+          {
+            "value": 310104,
+            "label": "徐汇区"
+          },
+          {
+            "value": 310105,
+            "label": "长宁区"
+          },
+          {
+            "value": 310106,
+            "label": "静安区"
+          },
+          {
+            "value": 310107,
+            "label": "普陀区"
+          },
+          {
+            "value": 310109,
+            "label": "虹口区"
+          },
+          {
+            "value": 310110,
+            "label": "杨浦区"
+          },
+          {
+            "value": 310112,
+            "label": "闵行区"
+          },
+          {
+            "value": 310113,
+            "label": "宝山区"
+          },
+          {
+            "value": 310114,
+            "label": "嘉定区"
+          },
+          {
+            "value": 310115,
+            "label": "浦东新区"
+          },
+          {
+            "value": 310116,
+            "label": "金山区"
+          },
+          {
+            "value": 310117,
+            "label": "松江区"
+          },
+          {
+            "value": 310118,
+            "label": "青浦区"
+          },
+          {
+            "value": 310120,
+            "label": "奉贤区"
+          },
+          {
+            "value": 310151,
+            "label": "崇明区"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 310000,
+    "label": "上海市",
+    "expand": "true"
+  },
+  {
+    "id": 809,
+    "children": [
+      {
+        "id": 810,
+        "value": 320100,
+        "label": "南京市",
+        "children": [
+          {
+            "value": 320102,
+            "label": "玄武区"
+          },
+          {
+            "value": 320104,
+            "label": "秦淮区"
+          },
+          {
+            "value": 320105,
+            "label": "建邺区"
+          },
+          {
+            "value": 320106,
+            "label": "鼓楼区"
+          },
+          {
+            "value": 320111,
+            "label": "浦口区"
+          },
+          {
+            "value": 320113,
+            "label": "栖霞区"
+          },
+          {
+            "value": 320114,
+            "label": "雨花台区"
+          },
+          {
+            "value": 320115,
+            "label": "江宁区"
+          },
+          {
+            "value": 320116,
+            "label": "六合区"
+          },
+          {
+            "value": 320117,
+            "label": "溧水区"
+          },
+          {
+            "value": 320118,
+            "label": "高淳区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 822,
+        "value": 320200,
+        "label": "无锡市",
+        "children": [
+          {
+            "value": 320205,
+            "label": "锡山区"
+          },
+          {
+            "value": 320206,
+            "label": "惠山区"
+          },
+          {
+            "value": 320211,
+            "label": "滨湖区"
+          },
+          {
+            "value": 320213,
+            "label": "梁溪区"
+          },
+          {
+            "value": 320214,
+            "label": "新吴区"
+          },
+          {
+            "value": 320281,
+            "label": "江阴市"
+          },
+          {
+            "value": 320282,
+            "label": "宜兴市"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 830,
+        "value": 320300,
+        "label": "徐州市",
+        "children": [
+          {
+            "value": 320303,
+            "label": "云龙区"
+          },
+          {
+            "value": 320302,
+            "label": "鼓楼区"
+          },
+          {
+            "value": 320305,
+            "label": "贾汪区"
+          },
+          {
+            "value": 320311,
+            "label": "泉山区"
+          },
+          {
+            "value": 320312,
+            "label": "铜山区"
+          },
+          {
+            "value": 320381,
+            "label": "新沂市"
+          },
+          {
+            "value": 320382,
+            "label": "邳州市"
+          },
+          {
+            "value": 320321,
+            "label": "丰县"
+          },
+          {
+            "value": 320322,
+            "label": "沛县"
+          },
+          {
+            "value": 320324,
+            "label": "睢宁县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 841,
+        "value": 320400,
+        "label": "常州市",
+        "children": [
+          {
+            "value": 320411,
+            "label": "新北区"
+          },
+          {
+            "value": 320402,
+            "label": "天宁区"
+          },
+          {
+            "value": 320404,
+            "label": "钟楼区"
+          },
+          {
+            "value": 320412,
+            "label": "武进区"
+          },
+          {
+            "value": 320413,
+            "label": "金坛区"
+          },
+          {
+            "value": 320481,
+            "label": "溧阳市"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 848,
+        "value": 320500,
+        "label": "苏州市",
+        "children": [
+          {
+            "value": 320508,
+            "label": "姑苏区"
+          },
+          {
+            "value": 320505,
+            "label": "虎丘区"
+          },
+          {
+            "value": 320506,
+            "label": "吴中区"
+          },
+          {
+            "value": 320507,
+            "label": "相城区"
+          },
+          {
+            "value": 320509,
+            "label": "吴江区"
+          },
+          {
+            "value": 320581,
+            "label": "常熟市"
+          },
+          {
+            "value": 320582,
+            "label": "张家港市"
+          },
+          {
+            "value": 320583,
+            "label": "昆山市"
+          },
+          {
+            "value": 320585,
+            "label": "太仓市"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 858,
+        "value": 320600,
+        "label": "南通市",
+        "children": [
+          {
+            "value": 320602,
+            "label": "崇川区"
+          },
+          {
+            "value": 320611,
+            "label": "港闸区"
+          },
+          {
+            "value": 320612,
+            "label": "通州区"
+          },
+          {
+            "value": 320681,
+            "label": "启东市"
+          },
+          {
+            "value": 320682,
+            "label": "如皋市"
+          },
+          {
+            "value": 320684,
+            "label": "海门市"
+          },
+          {
+            "value": 320621,
+            "label": "海安县"
+          },
+          {
+            "value": 320623,
+            "label": "如东县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 867,
+        "value": 320700,
+        "label": "连云港市",
+        "children": [
+          {
+            "value": 320706,
+            "label": "海州区"
+          },
+          {
+            "value": 320703,
+            "label": "连云区"
+          },
+          {
+            "value": 320707,
+            "label": "赣榆区"
+          },
+          {
+            "value": 320722,
+            "label": "东海县"
+          },
+          {
+            "value": 320723,
+            "label": "灌云县"
+          },
+          {
+            "value": 320724,
+            "label": "灌南县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 874,
+        "value": 320800,
+        "label": "淮安市",
+        "children": [
+          {
+            "value": 320803,
+            "label": "淮安区"
+          },
+          {
+            "value": 320804,
+            "label": "淮阴区"
+          },
+          {
+            "value": 320812,
+            "label": "清江浦区"
+          },
+          {
+            "value": 320813,
+            "label": "洪泽区"
+          },
+          {
+            "value": 320826,
+            "label": "涟水县"
+          },
+          {
+            "value": 320830,
+            "label": "盱眙县"
+          },
+          {
+            "value": 320831,
+            "label": "金湖县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 882,
+        "value": 320900,
+        "label": "盐城市",
+        "children": [
+          {
+            "value": 320902,
+            "label": "亭湖区"
+          },
+          {
+            "value": 320903,
+            "label": "盐都区"
+          },
+          {
+            "value": 320904,
+            "label": "大丰区"
+          },
+          {
+            "value": 320981,
+            "label": "东台市"
+          },
+          {
+            "value": 320921,
+            "label": "响水县"
+          },
+          {
+            "value": 320922,
+            "label": "滨海县"
+          },
+          {
+            "value": 320923,
+            "label": "阜宁县"
+          },
+          {
+            "value": 320924,
+            "label": "射阳县"
+          },
+          {
+            "value": 320925,
+            "label": "建湖县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 892,
+        "value": 321000,
+        "label": "扬州市",
+        "children": [
+          {
+            "value": 321003,
+            "label": "邗江区"
+          },
+          {
+            "value": 321002,
+            "label": "广陵区"
+          },
+          {
+            "value": 321012,
+            "label": "江都区"
+          },
+          {
+            "value": 321081,
+            "label": "仪征市"
+          },
+          {
+            "value": 321084,
+            "label": "高邮市"
+          },
+          {
+            "value": 321023,
+            "label": "宝应县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 899,
+        "value": 321100,
+        "label": "镇江市",
+        "children": [
+          {
+            "value": 321102,
+            "label": "京口区"
+          },
+          {
+            "value": 321111,
+            "label": "润州区"
+          },
+          {
+            "value": 321112,
+            "label": "丹徒区"
+          },
+          {
+            "value": 321181,
+            "label": "丹阳市"
+          },
+          {
+            "value": 321182,
+            "label": "扬中市"
+          },
+          {
+            "value": 321183,
+            "label": "句容市"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 906,
+        "value": 321200,
+        "label": "泰州市",
+        "children": [
+          {
+            "value": 321202,
+            "label": "海陵区"
+          },
+          {
+            "value": 321203,
+            "label": "高港区"
+          },
+          {
+            "value": 321204,
+            "label": "姜堰区"
+          },
+          {
+            "value": 321281,
+            "label": "兴化市"
+          },
+          {
+            "value": 321282,
+            "label": "靖江市"
+          },
+          {
+            "value": 321283,
+            "label": "泰兴市"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 913,
+        "value": 321300,
+        "label": "宿迁市",
+        "children": [
+          {
+            "value": 321302,
+            "label": "宿城区"
+          },
+          {
+            "value": 321311,
+            "label": "宿豫区"
+          },
+          {
+            "value": 321322,
+            "label": "沭阳县"
+          },
+          {
+            "value": 321323,
+            "label": "泗阳县"
+          },
+          {
+            "value": 321324,
+            "label": "泗洪县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 320000,
+    "label": "江苏省",
+    "expand": "true"
+  },
+  {
+    "id": 919,
+    "children": [
+      {
+        "id": 920,
+        "value": 330100,
+        "label": "杭州市",
+        "children": [
+          {
+            "value": 330105,
+            "label": "拱墅区"
+          },
+          {
+            "value": 330102,
+            "label": "上城区"
+          },
+          {
+            "value": 330103,
+            "label": "下城区"
+          },
+          {
+            "value": 330104,
+            "label": "江干区"
+          },
+          {
+            "value": 330106,
+            "label": "西湖区"
+          },
+          {
+            "value": 330108,
+            "label": "滨江区"
+          },
+          {
+            "value": 330109,
+            "label": "萧山区"
+          },
+          {
+            "value": 330110,
+            "label": "余杭区"
+          },
+          {
+            "value": 330111,
+            "label": "富阳区"
+          },
+          {
+            "value": 330182,
+            "label": "建德市"
+          },
+          {
+            "value": 330185,
+            "label": "临安市"
+          },
+          {
+            "value": 330122,
+            "label": "桐庐县"
+          },
+          {
+            "value": 330127,
+            "label": "淳安县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 934,
+        "value": 330200,
+        "label": "宁波市",
+        "children": [
+          {
+            "value": 330203,
+            "label": "海曙区"
+          },
+          {
+            "value": 330205,
+            "label": "江北区"
+          },
+          {
+            "value": 330206,
+            "label": "北仑区"
+          },
+          {
+            "value": 330211,
+            "label": "镇海区"
+          },
+          {
+            "value": 330212,
+            "label": "鄞州区"
+          },
+          {
+            "value": 330213,
+            "label": "奉化区"
+          },
+          {
+            "value": 330281,
+            "label": "余姚市"
+          },
+          {
+            "value": 330282,
+            "label": "慈溪市"
+          },
+          {
+            "value": 330225,
+            "label": "象山县"
+          },
+          {
+            "value": 330226,
+            "label": "宁海县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 945,
+        "value": 330300,
+        "label": "温州市",
+        "children": [
+          {
+            "value": 330302,
+            "label": "鹿城区"
+          },
+          {
+            "value": 330303,
+            "label": "龙湾区"
+          },
+          {
+            "value": 330304,
+            "label": "瓯海区"
+          },
+          {
+            "value": 330305,
+            "label": "洞头区"
+          },
+          {
+            "value": 330381,
+            "label": "瑞安市"
+          },
+          {
+            "value": 330382,
+            "label": "乐清市"
+          },
+          {
+            "value": 330324,
+            "label": "永嘉县"
+          },
+          {
+            "value": 330326,
+            "label": "平阳县"
+          },
+          {
+            "value": 330327,
+            "label": "苍南县"
+          },
+          {
+            "value": 330328,
+            "label": "文成县"
+          },
+          {
+            "value": 330329,
+            "label": "泰顺县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 957,
+        "value": 330400,
+        "label": "嘉兴市",
+        "children": [
+          {
+            "value": 330402,
+            "label": "南湖区"
+          },
+          {
+            "value": 330411,
+            "label": "秀洲区"
+          },
+          {
+            "value": 330481,
+            "label": "海宁市"
+          },
+          {
+            "value": 330482,
+            "label": "平湖市"
+          },
+          {
+            "value": 330483,
+            "label": "桐乡市"
+          },
+          {
+            "value": 330421,
+            "label": "嘉善县"
+          },
+          {
+            "value": 330424,
+            "label": "海盐县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 965,
+        "value": 330500,
+        "label": "湖州市",
+        "children": [
+          {
+            "value": 330502,
+            "label": "吴兴区"
+          },
+          {
+            "value": 330503,
+            "label": "南浔区"
+          },
+          {
+            "value": 330521,
+            "label": "德清县"
+          },
+          {
+            "value": 330522,
+            "label": "长兴县"
+          },
+          {
+            "value": 330523,
+            "label": "安吉县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 971,
+        "value": 330600,
+        "label": "绍兴市",
+        "children": [
+          {
+            "value": 330602,
+            "label": "越城区"
+          },
+          {
+            "value": 330603,
+            "label": "柯桥区"
+          },
+          {
+            "value": 330604,
+            "label": "上虞区"
+          },
+          {
+            "value": 330681,
+            "label": "诸暨市"
+          },
+          {
+            "value": 330683,
+            "label": "嵊州市"
+          },
+          {
+            "value": 330624,
+            "label": "新昌县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 978,
+        "value": 330700,
+        "label": "金华市",
+        "children": [
+          {
+            "value": 330702,
+            "label": "婺城区"
+          },
+          {
+            "value": 330703,
+            "label": "金东区"
+          },
+          {
+            "value": 330781,
+            "label": "兰溪市"
+          },
+          {
+            "value": 330782,
+            "label": "义乌市"
+          },
+          {
+            "value": 330783,
+            "label": "东阳市"
+          },
+          {
+            "value": 330784,
+            "label": "永康市"
+          },
+          {
+            "value": 330723,
+            "label": "武义县"
+          },
+          {
+            "value": 330726,
+            "label": "浦江县"
+          },
+          {
+            "value": 330727,
+            "label": "磐安县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 988,
+        "value": 330800,
+        "label": "衢州市",
+        "children": [
+          {
+            "value": 330802,
+            "label": "柯城区"
+          },
+          {
+            "value": 330803,
+            "label": "衢江区"
+          },
+          {
+            "value": 330881,
+            "label": "江山市"
+          },
+          {
+            "value": 330822,
+            "label": "常山县"
+          },
+          {
+            "value": 330824,
+            "label": "开化县"
+          },
+          {
+            "value": 330825,
+            "label": "龙游县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 995,
+        "value": 330900,
+        "label": "舟山市",
+        "children": [
+          {
+            "value": 330902,
+            "label": "定海区"
+          },
+          {
+            "value": 330903,
+            "label": "普陀区"
+          },
+          {
+            "value": 330921,
+            "label": "岱山县"
+          },
+          {
+            "value": 330922,
+            "label": "嵊泗县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1000,
+        "value": 331000,
+        "label": "台州市",
+        "children": [
+          {
+            "value": 331002,
+            "label": "椒江区"
+          },
+          {
+            "value": 331003,
+            "label": "黄岩区"
+          },
+          {
+            "value": 331004,
+            "label": "路桥区"
+          },
+          {
+            "value": 331081,
+            "label": "温岭市"
+          },
+          {
+            "value": 331082,
+            "label": "临海市"
+          },
+          {
+            "value": 331083,
+            "label": "玉环市"
+          },
+          {
+            "value": 331022,
+            "label": "三门县"
+          },
+          {
+            "value": 331023,
+            "label": "天台县"
+          },
+          {
+            "value": 331024,
+            "label": "仙居县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1010,
+        "value": 331100,
+        "label": "丽水市",
+        "children": [
+          {
+            "value": 331102,
+            "label": "莲都区"
+          },
+          {
+            "value": 331181,
+            "label": "龙泉市"
+          },
+          {
+            "value": 331121,
+            "label": "青田县"
+          },
+          {
+            "value": 331122,
+            "label": "缙云县"
+          },
+          {
+            "value": 331123,
+            "label": "遂昌县"
+          },
+          {
+            "value": 331124,
+            "label": "松阳县"
+          },
+          {
+            "value": 331125,
+            "label": "云和县"
+          },
+          {
+            "value": 331126,
+            "label": "庆元县"
+          },
+          {
+            "value": 331127,
+            "label": "景宁畲族自治县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 330000,
+    "label": "浙江省",
+    "expand": "true"
+  },
+  {
+    "id": 1020,
+    "children": [
+      {
+        "id": 1021,
+        "value": 340100,
+        "label": "合肥市",
+        "children": [
+          {
+            "value": 340104,
+            "label": "蜀山区"
+          },
+          {
+            "value": 340102,
+            "label": "瑶海区"
+          },
+          {
+            "value": 340103,
+            "label": "庐阳区"
+          },
+          {
+            "value": 340111,
+            "label": "包河区"
+          },
+          {
+            "value": 340181,
+            "label": "巢湖市"
+          },
+          {
+            "value": 340121,
+            "label": "长丰县"
+          },
+          {
+            "value": 340122,
+            "label": "肥东县"
+          },
+          {
+            "value": 340123,
+            "label": "肥西县"
+          },
+          {
+            "value": 340124,
+            "label": "庐江县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1031,
+        "value": 340200,
+        "label": "芜湖市",
+        "children": [
+          {
+            "value": 340207,
+            "label": "鸠江区"
+          },
+          {
+            "value": 340202,
+            "label": "镜湖区"
+          },
+          {
+            "value": 340203,
+            "label": "弋江区"
+          },
+          {
+            "value": 340208,
+            "label": "三山区"
+          },
+          {
+            "value": 340221,
+            "label": "芜湖县"
+          },
+          {
+            "value": 340222,
+            "label": "繁昌县"
+          },
+          {
+            "value": 340223,
+            "label": "南陵县"
+          },
+          {
+            "value": 340225,
+            "label": "无为县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1040,
+        "value": 340300,
+        "label": "蚌埠市",
+        "children": [
+          {
+            "value": 340303,
+            "label": "蚌山区"
+          },
+          {
+            "value": 340302,
+            "label": "龙子湖区"
+          },
+          {
+            "value": 340304,
+            "label": "禹会区"
+          },
+          {
+            "value": 340311,
+            "label": "淮上区"
+          },
+          {
+            "value": 340321,
+            "label": "怀远县"
+          },
+          {
+            "value": 340322,
+            "label": "五河县"
+          },
+          {
+            "value": 340323,
+            "label": "固镇县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1048,
+        "value": 340400,
+        "label": "淮南市",
+        "children": [
+          {
+            "value": 340403,
+            "label": "田家庵区"
+          },
+          {
+            "value": 340402,
+            "label": "大通区"
+          },
+          {
+            "value": 340404,
+            "label": "谢家集区"
+          },
+          {
+            "value": 340405,
+            "label": "八公山区"
+          },
+          {
+            "value": 340406,
+            "label": "潘集区"
+          },
+          {
+            "value": 340421,
+            "label": "凤台县"
+          },
+          {
+            "value": 340422,
+            "label": "寿县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1056,
+        "value": 340500,
+        "label": "马鞍山市",
+        "children": [
+          {
+            "value": 340504,
+            "label": "雨山区"
+          },
+          {
+            "value": 340503,
+            "label": "花山区"
+          },
+          {
+            "value": 340506,
+            "label": "博望区"
+          },
+          {
+            "value": 340521,
+            "label": "当涂县"
+          },
+          {
+            "value": 340522,
+            "label": "含山县"
+          },
+          {
+            "value": 340523,
+            "label": "和县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1063,
+        "value": 340600,
+        "label": "淮北市",
+        "children": [
+          {
+            "value": 340603,
+            "label": "相山区"
+          },
+          {
+            "value": 340602,
+            "label": "杜集区"
+          },
+          {
+            "value": 340604,
+            "label": "烈山区"
+          },
+          {
+            "value": 340621,
+            "label": "濉溪县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1068,
+        "value": 340700,
+        "label": "铜陵市",
+        "children": [
+          {
+            "value": 340705,
+            "label": "铜官区"
+          },
+          {
+            "value": 340706,
+            "label": "义安区"
+          },
+          {
+            "value": 340711,
+            "label": "郊区"
+          },
+          {
+            "value": 340722,
+            "label": "枞阳县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1073,
+        "value": 340800,
+        "label": "安庆市",
+        "children": [
+          {
+            "value": 340803,
+            "label": "大观区"
+          },
+          {
+            "value": 340802,
+            "label": "迎江区"
+          },
+          {
+            "value": 340811,
+            "label": "宜秀区"
+          },
+          {
+            "value": 340881,
+            "label": "桐城市"
+          },
+          {
+            "value": 340822,
+            "label": "怀宁县"
+          },
+          {
+            "value": 340824,
+            "label": "潜山县"
+          },
+          {
+            "value": 340825,
+            "label": "太湖县"
+          },
+          {
+            "value": 340826,
+            "label": "宿松县"
+          },
+          {
+            "value": 340827,
+            "label": "望江县"
+          },
+          {
+            "value": 340828,
+            "label": "岳西县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1084,
+        "value": 341000,
+        "label": "黄山市",
+        "children": [
+          {
+            "value": 341002,
+            "label": "屯溪区"
+          },
+          {
+            "value": 341003,
+            "label": "黄山区"
+          },
+          {
+            "value": 341004,
+            "label": "徽州区"
+          },
+          {
+            "value": 341021,
+            "label": "歙县"
+          },
+          {
+            "value": 341022,
+            "label": "休宁县"
+          },
+          {
+            "value": 341023,
+            "label": "黟县"
+          },
+          {
+            "value": 341024,
+            "label": "祁门县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1092,
+        "value": 341100,
+        "label": "滁州市",
+        "children": [
+          {
+            "value": 341102,
+            "label": "琅琊区"
+          },
+          {
+            "value": 341103,
+            "label": "南谯区"
+          },
+          {
+            "value": 341181,
+            "label": "天长市"
+          },
+          {
+            "value": 341182,
+            "label": "明光市"
+          },
+          {
+            "value": 341122,
+            "label": "来安县"
+          },
+          {
+            "value": 341124,
+            "label": "全椒县"
+          },
+          {
+            "value": 341125,
+            "label": "定远县"
+          },
+          {
+            "value": 341126,
+            "label": "凤阳县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1101,
+        "value": 341200,
+        "label": "阜阳市",
+        "children": [
+          {
+            "value": 341202,
+            "label": "颍州区"
+          },
+          {
+            "value": 341203,
+            "label": "颍东区"
+          },
+          {
+            "value": 341204,
+            "label": "颍泉区"
+          },
+          {
+            "value": 341282,
+            "label": "界首市"
+          },
+          {
+            "value": 341221,
+            "label": "临泉县"
+          },
+          {
+            "value": 341222,
+            "label": "太和县"
+          },
+          {
+            "value": 341225,
+            "label": "阜南县"
+          },
+          {
+            "value": 341226,
+            "label": "颍上县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1110,
+        "value": 341300,
+        "label": "宿州市",
+        "children": [
+          {
+            "value": 341302,
+            "label": "埇桥区"
+          },
+          {
+            "value": 341321,
+            "label": "砀山县"
+          },
+          {
+            "value": 341322,
+            "label": "萧县"
+          },
+          {
+            "value": 341323,
+            "label": "灵璧县"
+          },
+          {
+            "value": 341324,
+            "label": "泗县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1116,
+        "value": 341500,
+        "label": "六安市",
+        "children": [
+          {
+            "value": 341502,
+            "label": "金安区"
+          },
+          {
+            "value": 341503,
+            "label": "裕安区"
+          },
+          {
+            "value": 341504,
+            "label": "叶集区"
+          },
+          {
+            "value": 341522,
+            "label": "霍邱县"
+          },
+          {
+            "value": 341523,
+            "label": "舒城县"
+          },
+          {
+            "value": 341524,
+            "label": "金寨县"
+          },
+          {
+            "value": 341525,
+            "label": "霍山县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1124,
+        "value": 341600,
+        "label": "亳州市",
+        "children": [
+          {
+            "value": 341602,
+            "label": "谯城区"
+          },
+          {
+            "value": 341621,
+            "label": "涡阳县"
+          },
+          {
+            "value": 341622,
+            "label": "蒙城县"
+          },
+          {
+            "value": 341623,
+            "label": "利辛县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1129,
+        "value": 341700,
+        "label": "池州市",
+        "children": [
+          {
+            "value": 341702,
+            "label": "贵池区"
+          },
+          {
+            "value": 341721,
+            "label": "东至县"
+          },
+          {
+            "value": 341722,
+            "label": "石台县"
+          },
+          {
+            "value": 341723,
+            "label": "青阳县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1134,
+        "value": 341800,
+        "label": "宣城市",
+        "children": [
+          {
+            "value": 341802,
+            "label": "宣州区"
+          },
+          {
+            "value": 341881,
+            "label": "宁国市"
+          },
+          {
+            "value": 341821,
+            "label": "郎溪县"
+          },
+          {
+            "value": 341822,
+            "label": "广德县"
+          },
+          {
+            "value": 341823,
+            "label": "泾县"
+          },
+          {
+            "value": 341824,
+            "label": "绩溪县"
+          },
+          {
+            "value": 341825,
+            "label": "旌德县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 340000,
+    "label": "安徽省",
+    "expand": "true"
+  },
+  {
+    "id": 1142,
+    "children": [
+      {
+        "id": 1143,
+        "value": 350100,
+        "label": "福州市",
+        "children": [
+          {
+            "value": 350102,
+            "label": "鼓楼区"
+          },
+          {
+            "value": 350103,
+            "label": "台江区"
+          },
+          {
+            "value": 350104,
+            "label": "仓山区"
+          },
+          {
+            "value": 350105,
+            "label": "马尾区"
+          },
+          {
+            "value": 350111,
+            "label": "晋安区"
+          },
+          {
+            "value": 350181,
+            "label": "福清市"
+          },
+          {
+            "value": 350182,
+            "label": "长乐市"
+          },
+          {
+            "value": 350121,
+            "label": "闽侯县"
+          },
+          {
+            "value": 350122,
+            "label": "连江县"
+          },
+          {
+            "value": 350123,
+            "label": "罗源县"
+          },
+          {
+            "value": 350124,
+            "label": "闽清县"
+          },
+          {
+            "value": 350125,
+            "label": "永泰县"
+          },
+          {
+            "value": 350128,
+            "label": "平潭县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1157,
+        "value": 350200,
+        "label": "厦门市",
+        "children": [
+          {
+            "value": 350203,
+            "label": "思明区"
+          },
+          {
+            "value": 350205,
+            "label": "海沧区"
+          },
+          {
+            "value": 350206,
+            "label": "湖里区"
+          },
+          {
+            "value": 350211,
+            "label": "集美区"
+          },
+          {
+            "value": 350212,
+            "label": "同安区"
+          },
+          {
+            "value": 350213,
+            "label": "翔安区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1164,
+        "value": 350300,
+        "label": "莆田市",
+        "children": [
+          {
+            "value": 350302,
+            "label": "城厢区"
+          },
+          {
+            "value": 350303,
+            "label": "涵江区"
+          },
+          {
+            "value": 350304,
+            "label": "荔城区"
+          },
+          {
+            "value": 350305,
+            "label": "秀屿区"
+          },
+          {
+            "value": 350322,
+            "label": "仙游县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1170,
+        "value": 350400,
+        "label": "三明市",
+        "children": [
+          {
+            "value": 350402,
+            "label": "梅列区"
+          },
+          {
+            "value": 350403,
+            "label": "三元区"
+          },
+          {
+            "value": 350481,
+            "label": "永安市"
+          },
+          {
+            "value": 350421,
+            "label": "明溪县"
+          },
+          {
+            "value": 350423,
+            "label": "清流县"
+          },
+          {
+            "value": 350424,
+            "label": "宁化县"
+          },
+          {
+            "value": 350425,
+            "label": "大田县"
+          },
+          {
+            "value": 350426,
+            "label": "尤溪县"
+          },
+          {
+            "value": 350427,
+            "label": "沙县"
+          },
+          {
+            "value": 350428,
+            "label": "将乐县"
+          },
+          {
+            "value": 350429,
+            "label": "泰宁县"
+          },
+          {
+            "value": 350430,
+            "label": "建宁县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1183,
+        "value": 350500,
+        "label": "泉州市",
+        "children": [
+          {
+            "value": 350503,
+            "label": "丰泽区"
+          },
+          {
+            "value": 350502,
+            "label": "鲤城区"
+          },
+          {
+            "value": 350504,
+            "label": "洛江区"
+          },
+          {
+            "value": 350505,
+            "label": "泉港区"
+          },
+          {
+            "value": 350581,
+            "label": "石狮市"
+          },
+          {
+            "value": 350582,
+            "label": "晋江市"
+          },
+          {
+            "value": 350583,
+            "label": "南安市"
+          },
+          {
+            "value": 350521,
+            "label": "惠安县"
+          },
+          {
+            "value": 350524,
+            "label": "安溪县"
+          },
+          {
+            "value": 350525,
+            "label": "永春县"
+          },
+          {
+            "value": 350526,
+            "label": "德化县"
+          },
+          {
+            "value": 350527,
+            "label": "金门县☆"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1196,
+        "value": 350600,
+        "label": "漳州市",
+        "children": [
+          {
+            "value": 350603,
+            "label": "龙文区"
+          },
+          {
+            "value": 350602,
+            "label": "芗城区"
+          },
+          {
+            "value": 350681,
+            "label": "龙海市"
+          },
+          {
+            "value": 350622,
+            "label": "云霄县"
+          },
+          {
+            "value": 350623,
+            "label": "漳浦县"
+          },
+          {
+            "value": 350624,
+            "label": "诏安县"
+          },
+          {
+            "value": 350625,
+            "label": "长泰县"
+          },
+          {
+            "value": 350626,
+            "label": "东山县"
+          },
+          {
+            "value": 350627,
+            "label": "南靖县"
+          },
+          {
+            "value": 350628,
+            "label": "平和县"
+          },
+          {
+            "value": 350629,
+            "label": "华安县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1208,
+        "value": 350700,
+        "label": "南平市",
+        "children": [
+          {
+            "value": 350703,
+            "label": "建阳区"
+          },
+          {
+            "value": 350702,
+            "label": "延平区"
+          },
+          {
+            "value": 350781,
+            "label": "邵武市"
+          },
+          {
+            "value": 350782,
+            "label": "武夷山市"
+          },
+          {
+            "value": 350783,
+            "label": "建瓯市"
+          },
+          {
+            "value": 350721,
+            "label": "顺昌县"
+          },
+          {
+            "value": 350722,
+            "label": "浦城县"
+          },
+          {
+            "value": 350723,
+            "label": "光泽县"
+          },
+          {
+            "value": 350724,
+            "label": "松溪县"
+          },
+          {
+            "value": 350725,
+            "label": "政和县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1219,
+        "value": 350800,
+        "label": "龙岩市",
+        "children": [
+          {
+            "value": 350802,
+            "label": "新罗区"
+          },
+          {
+            "value": 350803,
+            "label": "永定区"
+          },
+          {
+            "value": 350881,
+            "label": "漳平市"
+          },
+          {
+            "value": 350821,
+            "label": "长汀县"
+          },
+          {
+            "value": 350823,
+            "label": "上杭县"
+          },
+          {
+            "value": 350824,
+            "label": "武平县"
+          },
+          {
+            "value": 350825,
+            "label": "连城县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1227,
+        "value": 350900,
+        "label": "宁德市",
+        "children": [
+          {
+            "value": 350902,
+            "label": "蕉城区"
+          },
+          {
+            "value": 350981,
+            "label": "福安市"
+          },
+          {
+            "value": 350982,
+            "label": "福鼎市"
+          },
+          {
+            "value": 350921,
+            "label": "霞浦县"
+          },
+          {
+            "value": 350922,
+            "label": "古田县"
+          },
+          {
+            "value": 350923,
+            "label": "屏南县"
+          },
+          {
+            "value": 350924,
+            "label": "寿宁县"
+          },
+          {
+            "value": 350925,
+            "label": "周宁县"
+          },
+          {
+            "value": 350926,
+            "label": "柘荣县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 350000,
+    "label": "福建省",
+    "expand": "true"
+  },
+  {
+    "id": 1237,
+    "children": [
+      {
+        "id": 1238,
+        "value": 360100,
+        "label": "南昌市",
+        "children": [
+          {
+            "value": 360102,
+            "label": "东湖区"
+          },
+          {
+            "value": 360103,
+            "label": "西湖区"
+          },
+          {
+            "value": 360104,
+            "label": "青云谱区"
+          },
+          {
+            "value": 360105,
+            "label": "湾里区"
+          },
+          {
+            "value": 360111,
+            "label": "青山湖区"
+          },
+          {
+            "value": 360112,
+            "label": "新建区"
+          },
+          {
+            "value": 360121,
+            "label": "南昌县"
+          },
+          {
+            "value": 360123,
+            "label": "安义县"
+          },
+          {
+            "value": 360124,
+            "label": "进贤县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1248,
+        "value": 360200,
+        "label": "景德镇市",
+        "children": [
+          {
+            "value": 360202,
+            "label": "昌江区"
+          },
+          {
+            "value": 360203,
+            "label": "珠山区"
+          },
+          {
+            "value": 360281,
+            "label": "乐平市"
+          },
+          {
+            "value": 360222,
+            "label": "浮梁县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1253,
+        "value": 360300,
+        "label": "萍乡市",
+        "children": [
+          {
+            "value": 360302,
+            "label": "安源区"
+          },
+          {
+            "value": 360313,
+            "label": "湘东区"
+          },
+          {
+            "value": 360321,
+            "label": "莲花县"
+          },
+          {
+            "value": 360322,
+            "label": "上栗县"
+          },
+          {
+            "value": 360323,
+            "label": "芦溪县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1259,
+        "value": 360400,
+        "label": "九江市",
+        "children": [
+          {
+            "value": 360403,
+            "label": "浔阳区"
+          },
+          {
+            "value": 360402,
+            "label": "濂溪区"
+          },
+          {
+            "value": 360481,
+            "label": "瑞昌市"
+          },
+          {
+            "value": 360482,
+            "label": "共青城市"
+          },
+          {
+            "value": 360483,
+            "label": "庐山市"
+          },
+          {
+            "value": 360421,
+            "label": "九江县"
+          },
+          {
+            "value": 360423,
+            "label": "武宁县"
+          },
+          {
+            "value": 360424,
+            "label": "修水县"
+          },
+          {
+            "value": 360425,
+            "label": "永修县"
+          },
+          {
+            "value": 360426,
+            "label": "德安县"
+          },
+          {
+            "value": 360428,
+            "label": "都昌县"
+          },
+          {
+            "value": 360429,
+            "label": "湖口县"
+          },
+          {
+            "value": 360430,
+            "label": "彭泽县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1273,
+        "value": 360500,
+        "label": "新余市",
+        "children": [
+          {
+            "value": 360502,
+            "label": "渝水区"
+          },
+          {
+            "value": 360521,
+            "label": "分宜县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1276,
+        "value": 360600,
+        "label": "鹰潭市",
+        "children": [
+          {
+            "value": 360602,
+            "label": "月湖区"
+          },
+          {
+            "value": 360681,
+            "label": "贵溪市"
+          },
+          {
+            "value": 360622,
+            "label": "余江县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1280,
+        "value": 360700,
+        "label": "赣州市",
+        "children": [
+          {
+            "value": 360702,
+            "label": "章贡区"
+          },
+          {
+            "value": 360703,
+            "label": "南康区"
+          },
+          {
+            "value": 360704,
+            "label": "赣县区"
+          },
+          {
+            "value": 360781,
+            "label": "瑞金市"
+          },
+          {
+            "value": 360722,
+            "label": "信丰县"
+          },
+          {
+            "value": 360723,
+            "label": "大余县"
+          },
+          {
+            "value": 360724,
+            "label": "上犹县"
+          },
+          {
+            "value": 360725,
+            "label": "崇义县"
+          },
+          {
+            "value": 360726,
+            "label": "安远县"
+          },
+          {
+            "value": 360727,
+            "label": "龙南县"
+          },
+          {
+            "value": 360728,
+            "label": "定南县"
+          },
+          {
+            "value": 360729,
+            "label": "全南县"
+          },
+          {
+            "value": 360730,
+            "label": "宁都县"
+          },
+          {
+            "value": 360731,
+            "label": "于都县"
+          },
+          {
+            "value": 360732,
+            "label": "兴国县"
+          },
+          {
+            "value": 360733,
+            "label": "会昌县"
+          },
+          {
+            "value": 360734,
+            "label": "寻乌县"
+          },
+          {
+            "value": 360735,
+            "label": "石城县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1299,
+        "value": 360800,
+        "label": "吉安市",
+        "children": [
+          {
+            "value": 360802,
+            "label": "吉州区"
+          },
+          {
+            "value": 360803,
+            "label": "青原区"
+          },
+          {
+            "value": 360881,
+            "label": "井冈山市"
+          },
+          {
+            "value": 360821,
+            "label": "吉安县"
+          },
+          {
+            "value": 360822,
+            "label": "吉水县"
+          },
+          {
+            "value": 360823,
+            "label": "峡江县"
+          },
+          {
+            "value": 360824,
+            "label": "新干县"
+          },
+          {
+            "value": 360825,
+            "label": "永丰县"
+          },
+          {
+            "value": 360826,
+            "label": "泰和县"
+          },
+          {
+            "value": 360827,
+            "label": "遂川县"
+          },
+          {
+            "value": 360828,
+            "label": "万安县"
+          },
+          {
+            "value": 360829,
+            "label": "安福县"
+          },
+          {
+            "value": 360830,
+            "label": "永新县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1313,
+        "value": 360900,
+        "label": "宜春市",
+        "children": [
+          {
+            "value": 360902,
+            "label": "袁州区"
+          },
+          {
+            "value": 360981,
+            "label": "丰城市"
+          },
+          {
+            "value": 360982,
+            "label": "樟树市"
+          },
+          {
+            "value": 360983,
+            "label": "高安市"
+          },
+          {
+            "value": 360921,
+            "label": "奉新县"
+          },
+          {
+            "value": 360922,
+            "label": "万载县"
+          },
+          {
+            "value": 360923,
+            "label": "上高县"
+          },
+          {
+            "value": 360924,
+            "label": "宜丰县"
+          },
+          {
+            "value": 360925,
+            "label": "靖安县"
+          },
+          {
+            "value": 360926,
+            "label": "铜鼓县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1324,
+        "value": 361000,
+        "label": "抚州市",
+        "children": [
+          {
+            "value": 361002,
+            "label": "临川区"
+          },
+          {
+            "value": 361003,
+            "label": "东乡区"
+          },
+          {
+            "value": 361021,
+            "label": "南城县"
+          },
+          {
+            "value": 361022,
+            "label": "黎川县"
+          },
+          {
+            "value": 361023,
+            "label": "南丰县"
+          },
+          {
+            "value": 361024,
+            "label": "崇仁县"
+          },
+          {
+            "value": 361025,
+            "label": "乐安县"
+          },
+          {
+            "value": 361026,
+            "label": "宜黄县"
+          },
+          {
+            "value": 361027,
+            "label": "金溪县"
+          },
+          {
+            "value": 361028,
+            "label": "资溪县"
+          },
+          {
+            "value": 361030,
+            "label": "广昌县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1336,
+        "value": 361100,
+        "label": "上饶市",
+        "children": [
+          {
+            "value": 361102,
+            "label": "信州区"
+          },
+          {
+            "value": 361103,
+            "label": "广丰区"
+          },
+          {
+            "value": 361181,
+            "label": "德兴市"
+          },
+          {
+            "value": 361121,
+            "label": "上饶县"
+          },
+          {
+            "value": 361123,
+            "label": "玉山县"
+          },
+          {
+            "value": 361124,
+            "label": "铅山县"
+          },
+          {
+            "value": 361125,
+            "label": "横峰县"
+          },
+          {
+            "value": 361126,
+            "label": "弋阳县"
+          },
+          {
+            "value": 361127,
+            "label": "余干县"
+          },
+          {
+            "value": 361128,
+            "label": "鄱阳县"
+          },
+          {
+            "value": 361129,
+            "label": "万年县"
+          },
+          {
+            "value": 361130,
+            "label": "婺源县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 360000,
+    "label": "江西省",
+    "expand": "true"
+  },
+  {
+    "id": 1349,
+    "children": [
+      {
+        "id": 1350,
+        "value": 370100,
+        "label": "济南市",
+        "children": [
+          {
+            "value": 370103,
+            "label": "市中区"
+          },
+          {
+            "value": 370102,
+            "label": "历下区"
+          },
+          {
+            "value": 370104,
+            "label": "槐荫区"
+          },
+          {
+            "value": 370105,
+            "label": "天桥区"
+          },
+          {
+            "value": 370112,
+            "label": "历城区"
+          },
+          {
+            "value": 370113,
+            "label": "长清区"
+          },
+          {
+            "value": 370114,
+            "label": "章丘区"
+          },
+          {
+            "value": 370124,
+            "label": "平阴县"
+          },
+          {
+            "value": 370125,
+            "label": "济阳县"
+          },
+          {
+            "value": 370126,
+            "label": "商河县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1361,
+        "value": 370200,
+        "label": "青岛市",
+        "children": [
+          {
+            "value": 370202,
+            "label": "市南区"
+          },
+          {
+            "value": 370203,
+            "label": "市北区"
+          },
+          {
+            "value": 370211,
+            "label": "黄岛区"
+          },
+          {
+            "value": 370212,
+            "label": "崂山区"
+          },
+          {
+            "value": 370213,
+            "label": "李沧区"
+          },
+          {
+            "value": 370214,
+            "label": "城阳区"
+          },
+          {
+            "value": 370281,
+            "label": "胶州市"
+          },
+          {
+            "value": 370282,
+            "label": "即墨市"
+          },
+          {
+            "value": 370283,
+            "label": "平度市"
+          },
+          {
+            "value": 370285,
+            "label": "莱西市"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1372,
+        "value": 370300,
+        "label": "淄博市",
+        "children": [
+          {
+            "value": 370303,
+            "label": "张店区"
+          },
+          {
+            "value": 370302,
+            "label": "淄川区"
+          },
+          {
+            "value": 370304,
+            "label": "博山区"
+          },
+          {
+            "value": 370305,
+            "label": "临淄区"
+          },
+          {
+            "value": 370306,
+            "label": "周村区"
+          },
+          {
+            "value": 370321,
+            "label": "桓台县"
+          },
+          {
+            "value": 370322,
+            "label": "高青县"
+          },
+          {
+            "value": 370323,
+            "label": "沂源县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1381,
+        "value": 370400,
+        "label": "枣庄市",
+        "children": [
+          {
+            "value": 370403,
+            "label": "薛城区"
+          },
+          {
+            "value": 370402,
+            "label": "市中区"
+          },
+          {
+            "value": 370404,
+            "label": "峄城区"
+          },
+          {
+            "value": 370405,
+            "label": "台儿庄区"
+          },
+          {
+            "value": 370406,
+            "label": "山亭区"
+          },
+          {
+            "value": 370481,
+            "label": "滕州市"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1388,
+        "value": 370500,
+        "label": "东营市",
+        "children": [
+          {
+            "value": 370502,
+            "label": "东营区"
+          },
+          {
+            "value": 370503,
+            "label": "河口区"
+          },
+          {
+            "value": 370505,
+            "label": "垦利区"
+          },
+          {
+            "value": 370522,
+            "label": "利津县"
+          },
+          {
+            "value": 370523,
+            "label": "广饶县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1394,
+        "value": 370600,
+        "label": "烟台市",
+        "children": [
+          {
+            "value": 370613,
+            "label": "莱山区"
+          },
+          {
+            "value": 370602,
+            "label": "芝罘区"
+          },
+          {
+            "value": 370611,
+            "label": "福山区"
+          },
+          {
+            "value": 370612,
+            "label": "牟平区"
+          },
+          {
+            "value": 370681,
+            "label": "龙口市"
+          },
+          {
+            "value": 370682,
+            "label": "莱阳市"
+          },
+          {
+            "value": 370683,
+            "label": "莱州市"
+          },
+          {
+            "value": 370684,
+            "label": "蓬莱市"
+          },
+          {
+            "value": 370685,
+            "label": "招远市"
+          },
+          {
+            "value": 370686,
+            "label": "栖霞市"
+          },
+          {
+            "value": 370687,
+            "label": "海阳市"
+          },
+          {
+            "value": 370634,
+            "label": "长岛县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1407,
+        "value": 370700,
+        "label": "潍坊市",
+        "children": [
+          {
+            "value": 370705,
+            "label": "奎文区"
+          },
+          {
+            "value": 370702,
+            "label": "潍城区"
+          },
+          {
+            "value": 370703,
+            "label": "寒亭区"
+          },
+          {
+            "value": 370704,
+            "label": "坊子区"
+          },
+          {
+            "value": 370781,
+            "label": "青州市"
+          },
+          {
+            "value": 370782,
+            "label": "诸城市"
+          },
+          {
+            "value": 370783,
+            "label": "寿光市"
+          },
+          {
+            "value": 370784,
+            "label": "安丘市"
+          },
+          {
+            "value": 370785,
+            "label": "高密市"
+          },
+          {
+            "value": 370786,
+            "label": "昌邑市"
+          },
+          {
+            "value": 370724,
+            "label": "临朐县"
+          },
+          {
+            "value": 370725,
+            "label": "昌乐县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1420,
+        "value": 370800,
+        "label": "济宁市",
+        "children": [
+          {
+            "value": 370811,
+            "label": "任城区"
+          },
+          {
+            "value": 370812,
+            "label": "兖州区"
+          },
+          {
+            "value": 370881,
+            "label": "曲阜市"
+          },
+          {
+            "value": 370883,
+            "label": "邹城市"
+          },
+          {
+            "value": 370826,
+            "label": "微山县"
+          },
+          {
+            "value": 370827,
+            "label": "鱼台县"
+          },
+          {
+            "value": 370828,
+            "label": "金乡县"
+          },
+          {
+            "value": 370829,
+            "label": "嘉祥县"
+          },
+          {
+            "value": 370830,
+            "label": "汶上县"
+          },
+          {
+            "value": 370831,
+            "label": "泗水县"
+          },
+          {
+            "value": 370832,
+            "label": "梁山县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1432,
+        "value": 370900,
+        "label": "泰安市",
+        "children": [
+          {
+            "value": 370902,
+            "label": "泰山区"
+          },
+          {
+            "value": 370911,
+            "label": "岱岳区"
+          },
+          {
+            "value": 370982,
+            "label": "新泰市"
+          },
+          {
+            "value": 370983,
+            "label": "肥城市"
+          },
+          {
+            "value": 370921,
+            "label": "宁阳县"
+          },
+          {
+            "value": 370923,
+            "label": "东平县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1439,
+        "value": 371000,
+        "label": "威海市",
+        "children": [
+          {
+            "value": 371002,
+            "label": "环翠区"
+          },
+          {
+            "value": 371003,
+            "label": "文登区"
+          },
+          {
+            "value": 371082,
+            "label": "荣成市"
+          },
+          {
+            "value": 371083,
+            "label": "乳山市"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1444,
+        "value": 371100,
+        "label": "日照市",
+        "children": [
+          {
+            "value": 371102,
+            "label": "东港区"
+          },
+          {
+            "value": 371103,
+            "label": "岚山区"
+          },
+          {
+            "value": 371121,
+            "label": "五莲县"
+          },
+          {
+            "value": 371122,
+            "label": "莒县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1449,
+        "value": 371200,
+        "label": "莱芜市",
+        "children": [
+          {
+            "value": 371202,
+            "label": "莱城区"
+          },
+          {
+            "value": 371203,
+            "label": "钢城区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1452,
+        "value": 371300,
+        "label": "临沂市",
+        "children": [
+          {
+            "value": 371302,
+            "label": "兰山区"
+          },
+          {
+            "value": 371311,
+            "label": "罗庄区"
+          },
+          {
+            "value": 371312,
+            "label": "河东区"
+          },
+          {
+            "value": 371321,
+            "label": "沂南县"
+          },
+          {
+            "value": 371322,
+            "label": "郯城县"
+          },
+          {
+            "value": 371323,
+            "label": "沂水县"
+          },
+          {
+            "value": 371324,
+            "label": "兰陵县"
+          },
+          {
+            "value": 371325,
+            "label": "费县"
+          },
+          {
+            "value": 371326,
+            "label": "平邑县"
+          },
+          {
+            "value": 371327,
+            "label": "莒南县"
+          },
+          {
+            "value": 371328,
+            "label": "蒙阴县"
+          },
+          {
+            "value": 371329,
+            "label": "临沭县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1465,
+        "value": 371400,
+        "label": "德州市",
+        "children": [
+          {
+            "value": 371402,
+            "label": "德城区"
+          },
+          {
+            "value": 371403,
+            "label": "陵城区"
+          },
+          {
+            "value": 371481,
+            "label": "乐陵市"
+          },
+          {
+            "value": 371482,
+            "label": "禹城市"
+          },
+          {
+            "value": 371422,
+            "label": "宁津县"
+          },
+          {
+            "value": 371423,
+            "label": "庆云县"
+          },
+          {
+            "value": 371424,
+            "label": "临邑县"
+          },
+          {
+            "value": 371425,
+            "label": "齐河县"
+          },
+          {
+            "value": 371426,
+            "label": "平原县"
+          },
+          {
+            "value": 371427,
+            "label": "夏津县"
+          },
+          {
+            "value": 371428,
+            "label": "武城县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1477,
+        "value": 371500,
+        "label": "聊城市",
+        "children": [
+          {
+            "value": 371502,
+            "label": "东昌府区"
+          },
+          {
+            "value": 371581,
+            "label": "临清市"
+          },
+          {
+            "value": 371521,
+            "label": "阳谷县"
+          },
+          {
+            "value": 371522,
+            "label": "莘县"
+          },
+          {
+            "value": 371523,
+            "label": "茌平县"
+          },
+          {
+            "value": 371524,
+            "label": "东阿县"
+          },
+          {
+            "value": 371525,
+            "label": "冠县"
+          },
+          {
+            "value": 371526,
+            "label": "高唐县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1486,
+        "value": 371600,
+        "label": "滨州市",
+        "children": [
+          {
+            "value": 371602,
+            "label": "滨城区"
+          },
+          {
+            "value": 371603,
+            "label": "沾化区"
+          },
+          {
+            "value": 371621,
+            "label": "惠民县"
+          },
+          {
+            "value": 371622,
+            "label": "阳信县"
+          },
+          {
+            "value": 371623,
+            "label": "无棣县"
+          },
+          {
+            "value": 371625,
+            "label": "博兴县"
+          },
+          {
+            "value": 371626,
+            "label": "邹平县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1494,
+        "value": 371700,
+        "label": "菏泽市",
+        "children": [
+          {
+            "value": 371702,
+            "label": "牡丹区"
+          },
+          {
+            "value": 371703,
+            "label": "定陶区"
+          },
+          {
+            "value": 371721,
+            "label": "曹县"
+          },
+          {
+            "value": 371722,
+            "label": "单县"
+          },
+          {
+            "value": 371723,
+            "label": "成武县"
+          },
+          {
+            "value": 371724,
+            "label": "巨野县"
+          },
+          {
+            "value": 371725,
+            "label": "郓城县"
+          },
+          {
+            "value": 371726,
+            "label": "鄄城县"
+          },
+          {
+            "value": 371728,
+            "label": "东明县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 370000,
+    "label": "山东省",
+    "expand": "true"
+  },
+  {
+    "id": 1504,
+    "children": [
+      {
+        "id": 1505,
+        "value": 410100,
+        "label": "郑州市",
+        "children": [
+          {
+            "value": 410102,
+            "label": "中原区"
+          },
+          {
+            "value": 410103,
+            "label": "二七区"
+          },
+          {
+            "value": 410104,
+            "label": "管城回族区"
+          },
+          {
+            "value": 410105,
+            "label": "金水区"
+          },
+          {
+            "value": 410106,
+            "label": "上街区"
+          },
+          {
+            "value": 410108,
+            "label": "惠济区"
+          },
+          {
+            "value": 410181,
+            "label": "巩义市"
+          },
+          {
+            "value": 410182,
+            "label": "荥阳市"
+          },
+          {
+            "value": 410183,
+            "label": "新密市"
+          },
+          {
+            "value": 410184,
+            "label": "新郑市"
+          },
+          {
+            "value": 410185,
+            "label": "登封市"
+          },
+          {
+            "value": 410122,
+            "label": "中牟县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1518,
+        "value": 410200,
+        "label": "开封市",
+        "children": [
+          {
+            "value": 410204,
+            "label": "鼓楼区"
+          },
+          {
+            "value": 410202,
+            "label": "龙亭区"
+          },
+          {
+            "value": 410203,
+            "label": "顺河回族区"
+          },
+          {
+            "value": 410205,
+            "label": "禹王台区"
+          },
+          {
+            "value": 410212,
+            "label": "祥符区"
+          },
+          {
+            "value": 410221,
+            "label": "杞县"
+          },
+          {
+            "value": 410222,
+            "label": "通许县"
+          },
+          {
+            "value": 410223,
+            "label": "尉氏县"
+          },
+          {
+            "value": 410225,
+            "label": "兰考县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1528,
+        "value": 410300,
+        "label": "洛阳市",
+        "children": [
+          {
+            "value": 410303,
+            "label": "西工区"
+          },
+          {
+            "value": 410302,
+            "label": "老城区"
+          },
+          {
+            "value": 410304,
+            "label": "瀍河回族区"
+          },
+          {
+            "value": 410305,
+            "label": "涧西区"
+          },
+          {
+            "value": 410306,
+            "label": "吉利区"
+          },
+          {
+            "value": 410311,
+            "label": "洛龙区"
+          },
+          {
+            "value": 410381,
+            "label": "偃师市"
+          },
+          {
+            "value": 410322,
+            "label": "孟津县"
+          },
+          {
+            "value": 410323,
+            "label": "新安县"
+          },
+          {
+            "value": 410324,
+            "label": "栾川县"
+          },
+          {
+            "value": 410325,
+            "label": "嵩县"
+          },
+          {
+            "value": 410326,
+            "label": "汝阳县"
+          },
+          {
+            "value": 410327,
+            "label": "宜阳县"
+          },
+          {
+            "value": 410328,
+            "label": "洛宁县"
+          },
+          {
+            "value": 410329,
+            "label": "伊川县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1544,
+        "value": 410400,
+        "label": "平顶山市",
+        "children": [
+          {
+            "value": 410402,
+            "label": "新华区"
+          },
+          {
+            "value": 410403,
+            "label": "卫东区"
+          },
+          {
+            "value": 410404,
+            "label": "石龙区"
+          },
+          {
+            "value": 410411,
+            "label": "湛河区"
+          },
+          {
+            "value": 410481,
+            "label": "舞钢市"
+          },
+          {
+            "value": 410482,
+            "label": "汝州市"
+          },
+          {
+            "value": 410421,
+            "label": "宝丰县"
+          },
+          {
+            "value": 410422,
+            "label": "叶县"
+          },
+          {
+            "value": 410423,
+            "label": "鲁山县"
+          },
+          {
+            "value": 410425,
+            "label": "郏县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1555,
+        "value": 410500,
+        "label": "安阳市",
+        "children": [
+          {
+            "value": 410503,
+            "label": "北关区"
+          },
+          {
+            "value": 410502,
+            "label": "文峰区"
+          },
+          {
+            "value": 410505,
+            "label": "殷都区"
+          },
+          {
+            "value": 410506,
+            "label": "龙安区"
+          },
+          {
+            "value": 410581,
+            "label": "林州市"
+          },
+          {
+            "value": 410522,
+            "label": "安阳县"
+          },
+          {
+            "value": 410523,
+            "label": "汤阴县"
+          },
+          {
+            "value": 410526,
+            "label": "滑县"
+          },
+          {
+            "value": 410527,
+            "label": "内黄县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1565,
+        "value": 410600,
+        "label": "鹤壁市",
+        "children": [
+          {
+            "value": 410611,
+            "label": "淇滨区"
+          },
+          {
+            "value": 410602,
+            "label": "鹤山区"
+          },
+          {
+            "value": 410603,
+            "label": "山城区"
+          },
+          {
+            "value": 410621,
+            "label": "浚县"
+          },
+          {
+            "value": 410622,
+            "label": "淇县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1571,
+        "value": 410700,
+        "label": "新乡市",
+        "children": [
+          {
+            "value": 410703,
+            "label": "卫滨区"
+          },
+          {
+            "value": 410702,
+            "label": "红旗区"
+          },
+          {
+            "value": 410704,
+            "label": "凤泉区"
+          },
+          {
+            "value": 410711,
+            "label": "牧野区"
+          },
+          {
+            "value": 410781,
+            "label": "卫辉市"
+          },
+          {
+            "value": 410782,
+            "label": "辉县市"
+          },
+          {
+            "value": 410721,
+            "label": "新乡县"
+          },
+          {
+            "value": 410724,
+            "label": "获嘉县"
+          },
+          {
+            "value": 410725,
+            "label": "原阳县"
+          },
+          {
+            "value": 410726,
+            "label": "延津县"
+          },
+          {
+            "value": 410727,
+            "label": "封丘县"
+          },
+          {
+            "value": 410728,
+            "label": "长垣县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1584,
+        "value": 410800,
+        "label": "焦作市",
+        "children": [
+          {
+            "value": 410802,
+            "label": "解放区"
+          },
+          {
+            "value": 410803,
+            "label": "中站区"
+          },
+          {
+            "value": 410804,
+            "label": "马村区"
+          },
+          {
+            "value": 410811,
+            "label": "山阳区"
+          },
+          {
+            "value": 410882,
+            "label": "沁阳市"
+          },
+          {
+            "value": 410883,
+            "label": "孟州市"
+          },
+          {
+            "value": 410821,
+            "label": "修武县"
+          },
+          {
+            "value": 410822,
+            "label": "博爱县"
+          },
+          {
+            "value": 410823,
+            "label": "武陟县"
+          },
+          {
+            "value": 410825,
+            "label": "温县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1595,
+        "value": 410900,
+        "label": "濮阳市",
+        "children": [
+          {
+            "value": 410902,
+            "label": "华龙区"
+          },
+          {
+            "value": 410922,
+            "label": "清丰县"
+          },
+          {
+            "value": 410923,
+            "label": "南乐县"
+          },
+          {
+            "value": 410926,
+            "label": "范县"
+          },
+          {
+            "value": 410927,
+            "label": "台前县"
+          },
+          {
+            "value": 410928,
+            "label": "濮阳县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1602,
+        "value": 411000,
+        "label": "许昌市",
+        "children": [
+          {
+            "value": 411002,
+            "label": "魏都区"
+          },
+          {
+            "value": 411003,
+            "label": "建安区"
+          },
+          {
+            "value": 411081,
+            "label": "禹州市"
+          },
+          {
+            "value": 411082,
+            "label": "长葛市"
+          },
+          {
+            "value": 411024,
+            "label": "鄢陵县"
+          },
+          {
+            "value": 411025,
+            "label": "襄城县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1609,
+        "value": 411100,
+        "label": "漯河市",
+        "children": [
+          {
+            "value": 411103,
+            "label": "郾城区"
+          },
+          {
+            "value": 411102,
+            "label": "源汇区"
+          },
+          {
+            "value": 411104,
+            "label": "召陵区"
+          },
+          {
+            "value": 411121,
+            "label": "舞阳县"
+          },
+          {
+            "value": 411122,
+            "label": "临颍县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1615,
+        "value": 411200,
+        "label": "三门峡市",
+        "children": [
+          {
+            "value": 411202,
+            "label": "湖滨区"
+          },
+          {
+            "value": 411203,
+            "label": "陕州区"
+          },
+          {
+            "value": 411281,
+            "label": "义马市"
+          },
+          {
+            "value": 411282,
+            "label": "灵宝市"
+          },
+          {
+            "value": 411221,
+            "label": "渑池县"
+          },
+          {
+            "value": 411224,
+            "label": "卢氏县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1622,
+        "value": 411300,
+        "label": "南阳市",
+        "children": [
+          {
+            "value": 411303,
+            "label": "卧龙区"
+          },
+          {
+            "value": 411302,
+            "label": "宛城区"
+          },
+          {
+            "value": 411381,
+            "label": "邓州市"
+          },
+          {
+            "value": 411321,
+            "label": "南召县"
+          },
+          {
+            "value": 411322,
+            "label": "方城县"
+          },
+          {
+            "value": 411323,
+            "label": "西峡县"
+          },
+          {
+            "value": 411324,
+            "label": "镇平县"
+          },
+          {
+            "value": 411325,
+            "label": "内乡县"
+          },
+          {
+            "value": 411326,
+            "label": "淅川县"
+          },
+          {
+            "value": 411327,
+            "label": "社旗县"
+          },
+          {
+            "value": 411328,
+            "label": "唐河县"
+          },
+          {
+            "value": 411329,
+            "label": "新野县"
+          },
+          {
+            "value": 411330,
+            "label": "桐柏县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1636,
+        "value": 411400,
+        "label": "商丘市",
+        "children": [
+          {
+            "value": 411402,
+            "label": "梁园区"
+          },
+          {
+            "value": 411403,
+            "label": "睢阳区"
+          },
+          {
+            "value": 411481,
+            "label": "永城市"
+          },
+          {
+            "value": 411421,
+            "label": "民权县"
+          },
+          {
+            "value": 411422,
+            "label": "睢县"
+          },
+          {
+            "value": 411423,
+            "label": "宁陵县"
+          },
+          {
+            "value": 411424,
+            "label": "柘城县"
+          },
+          {
+            "value": 411425,
+            "label": "虞城县"
+          },
+          {
+            "value": 411426,
+            "label": "夏邑县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1646,
+        "value": 411500,
+        "label": "信阳市",
+        "children": [
+          {
+            "value": 411502,
+            "label": "浉河区"
+          },
+          {
+            "value": 411503,
+            "label": "平桥区"
+          },
+          {
+            "value": 411521,
+            "label": "罗山县"
+          },
+          {
+            "value": 411522,
+            "label": "光山县"
+          },
+          {
+            "value": 411523,
+            "label": "新县"
+          },
+          {
+            "value": 411524,
+            "label": "商城县"
+          },
+          {
+            "value": 411525,
+            "label": "固始县"
+          },
+          {
+            "value": 411526,
+            "label": "潢川县"
+          },
+          {
+            "value": 411527,
+            "label": "淮滨县"
+          },
+          {
+            "value": 411528,
+            "label": "息县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1657,
+        "value": 411600,
+        "label": "周口市",
+        "children": [
+          {
+            "value": 411602,
+            "label": "川汇区"
+          },
+          {
+            "value": 411681,
+            "label": "项城市"
+          },
+          {
+            "value": 411621,
+            "label": "扶沟县"
+          },
+          {
+            "value": 411622,
+            "label": "西华县"
+          },
+          {
+            "value": 411623,
+            "label": "商水县"
+          },
+          {
+            "value": 411624,
+            "label": "沈丘县"
+          },
+          {
+            "value": 411625,
+            "label": "郸城县"
+          },
+          {
+            "value": 411626,
+            "label": "淮阳县"
+          },
+          {
+            "value": 411627,
+            "label": "太康县"
+          },
+          {
+            "value": 411628,
+            "label": "鹿邑县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1668,
+        "value": 411700,
+        "label": "驻马店市",
+        "children": [
+          {
+            "value": 411702,
+            "label": "驿城区"
+          },
+          {
+            "value": 411721,
+            "label": "西平县"
+          },
+          {
+            "value": 411722,
+            "label": "上蔡县"
+          },
+          {
+            "value": 411723,
+            "label": "平舆县"
+          },
+          {
+            "value": 411724,
+            "label": "正阳县"
+          },
+          {
+            "value": 411725,
+            "label": "确山县"
+          },
+          {
+            "value": 411726,
+            "label": "泌阳县"
+          },
+          {
+            "value": 411727,
+            "label": "汝南县"
+          },
+          {
+            "value": 411728,
+            "label": "遂平县"
+          },
+          {
+            "value": 411729,
+            "label": "新蔡县"
+          },
+          {
+            "value": 419001,
+            "label": "济源市"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 410000,
+    "label": "河南省",
+    "expand": "true"
+  },
+  {
+    "id": 1680,
+    "children": [
+      {
+        "id": 1681,
+        "value": 420100,
+        "label": "武汉市",
+        "children": [
+          {
+            "value": 420102,
+            "label": "江岸区"
+          },
+          {
+            "value": 420103,
+            "label": "江汉区"
+          },
+          {
+            "value": 420104,
+            "label": "硚口区"
+          },
+          {
+            "value": 420105,
+            "label": "汉阳区"
+          },
+          {
+            "value": 420106,
+            "label": "武昌区"
+          },
+          {
+            "value": 420107,
+            "label": "青山区"
+          },
+          {
+            "value": 420111,
+            "label": "洪山区"
+          },
+          {
+            "value": 420112,
+            "label": "东西湖区"
+          },
+          {
+            "value": 420113,
+            "label": "汉南区"
+          },
+          {
+            "value": 420114,
+            "label": "蔡甸区"
+          },
+          {
+            "value": 420115,
+            "label": "江夏区"
+          },
+          {
+            "value": 420116,
+            "label": "黄陂区"
+          },
+          {
+            "value": 420117,
+            "label": "新洲区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1695,
+        "value": 420200,
+        "label": "黄石市",
+        "children": [
+          {
+            "value": 420204,
+            "label": "下陆区"
+          },
+          {
+            "value": 420202,
+            "label": "黄石港区"
+          },
+          {
+            "value": 420203,
+            "label": "西塞山区"
+          },
+          {
+            "value": 420205,
+            "label": "铁山区"
+          },
+          {
+            "value": 420281,
+            "label": "大冶市"
+          },
+          {
+            "value": 420222,
+            "label": "阳新县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1702,
+        "value": 420300,
+        "label": "十堰市",
+        "children": [
+          {
+            "value": 420302,
+            "label": "茅箭区"
+          },
+          {
+            "value": 420303,
+            "label": "张湾区"
+          },
+          {
+            "value": 420304,
+            "label": "郧阳区"
+          },
+          {
+            "value": 420381,
+            "label": "丹江口市"
+          },
+          {
+            "value": 420322,
+            "label": "郧西县"
+          },
+          {
+            "value": 420323,
+            "label": "竹山县"
+          },
+          {
+            "value": 420324,
+            "label": "竹溪县"
+          },
+          {
+            "value": 420325,
+            "label": "房县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1711,
+        "value": 420500,
+        "label": "宜昌市",
+        "children": [
+          {
+            "value": 420502,
+            "label": "西陵区"
+          },
+          {
+            "value": 420503,
+            "label": "伍家岗区"
+          },
+          {
+            "value": 420504,
+            "label": "点军区"
+          },
+          {
+            "value": 420505,
+            "label": "猇亭区"
+          },
+          {
+            "value": 420506,
+            "label": "夷陵区"
+          },
+          {
+            "value": 420581,
+            "label": "宜都市"
+          },
+          {
+            "value": 420582,
+            "label": "当阳市"
+          },
+          {
+            "value": 420583,
+            "label": "枝江市"
+          },
+          {
+            "value": 420525,
+            "label": "远安县"
+          },
+          {
+            "value": 420526,
+            "label": "兴山县"
+          },
+          {
+            "value": 420527,
+            "label": "秭归县"
+          },
+          {
+            "value": 420528,
+            "label": "长阳土家族自治县"
+          },
+          {
+            "value": 420529,
+            "label": "五峰土家族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1725,
+        "value": 420600,
+        "label": "襄阳市",
+        "children": [
+          {
+            "value": 420602,
+            "label": "襄城区"
+          },
+          {
+            "value": 420606,
+            "label": "樊城区"
+          },
+          {
+            "value": 420607,
+            "label": "襄州区"
+          },
+          {
+            "value": 420682,
+            "label": "老河口市"
+          },
+          {
+            "value": 420683,
+            "label": "枣阳市"
+          },
+          {
+            "value": 420684,
+            "label": "宜城市"
+          },
+          {
+            "value": 420624,
+            "label": "南漳县"
+          },
+          {
+            "value": 420625,
+            "label": "谷城县"
+          },
+          {
+            "value": 420626,
+            "label": "保康县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1735,
+        "value": 420700,
+        "label": "鄂州市",
+        "children": [
+          {
+            "value": 420704,
+            "label": "鄂城区"
+          },
+          {
+            "value": 420702,
+            "label": "梁子湖区"
+          },
+          {
+            "value": 420703,
+            "label": "华容区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1739,
+        "value": 420800,
+        "label": "荆门市",
+        "children": [
+          {
+            "value": 420802,
+            "label": "东宝区"
+          },
+          {
+            "value": 420804,
+            "label": "掇刀区"
+          },
+          {
+            "value": 420881,
+            "label": "钟祥市"
+          },
+          {
+            "value": 420821,
+            "label": "京山县"
+          },
+          {
+            "value": 420822,
+            "label": "沙洋县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1745,
+        "value": 420900,
+        "label": "孝感市",
+        "children": [
+          {
+            "value": 420902,
+            "label": "孝南区"
+          },
+          {
+            "value": 420981,
+            "label": "应城市"
+          },
+          {
+            "value": 420982,
+            "label": "安陆市"
+          },
+          {
+            "value": 420984,
+            "label": "汉川市"
+          },
+          {
+            "value": 420921,
+            "label": "孝昌县"
+          },
+          {
+            "value": 420922,
+            "label": "大悟县"
+          },
+          {
+            "value": 420923,
+            "label": "云梦县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1753,
+        "value": 421000,
+        "label": "荆州市",
+        "children": [
+          {
+            "value": 421002,
+            "label": "沙市区"
+          },
+          {
+            "value": 421003,
+            "label": "荆州区"
+          },
+          {
+            "value": 421081,
+            "label": "石首市"
+          },
+          {
+            "value": 421083,
+            "label": "洪湖市"
+          },
+          {
+            "value": 421087,
+            "label": "松滋市"
+          },
+          {
+            "value": 421022,
+            "label": "公安县"
+          },
+          {
+            "value": 421023,
+            "label": "监利县"
+          },
+          {
+            "value": 421024,
+            "label": "江陵县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1762,
+        "value": 421100,
+        "label": "黄冈市",
+        "children": [
+          {
+            "value": 421102,
+            "label": "黄州区"
+          },
+          {
+            "value": 421181,
+            "label": "麻城市"
+          },
+          {
+            "value": 421182,
+            "label": "武穴市"
+          },
+          {
+            "value": 421121,
+            "label": "团风县"
+          },
+          {
+            "value": 421122,
+            "label": "红安县"
+          },
+          {
+            "value": 421123,
+            "label": "罗田县"
+          },
+          {
+            "value": 421124,
+            "label": "英山县"
+          },
+          {
+            "value": 421125,
+            "label": "浠水县"
+          },
+          {
+            "value": 421126,
+            "label": "蕲春县"
+          },
+          {
+            "value": 421127,
+            "label": "黄梅县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1773,
+        "value": 421200,
+        "label": "咸宁市",
+        "children": [
+          {
+            "value": 421202,
+            "label": "咸安区"
+          },
+          {
+            "value": 421281,
+            "label": "赤壁市"
+          },
+          {
+            "value": 421221,
+            "label": "嘉鱼县"
+          },
+          {
+            "value": 421222,
+            "label": "通城县"
+          },
+          {
+            "value": 421223,
+            "label": "崇阳县"
+          },
+          {
+            "value": 421224,
+            "label": "通山县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1780,
+        "value": 421300,
+        "label": "随州市",
+        "children": [
+          {
+            "value": 421303,
+            "label": "曾都区"
+          },
+          {
+            "value": 421381,
+            "label": "广水市"
+          },
+          {
+            "value": 421321,
+            "label": "随县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1784,
+        "value": 422800,
+        "label": "恩施土家族苗族自治州",
+        "children": [
+          {
+            "value": 422801,
+            "label": "恩施市"
+          },
+          {
+            "value": 422802,
+            "label": "利川市"
+          },
+          {
+            "value": 422822,
+            "label": "建始县"
+          },
+          {
+            "value": 422823,
+            "label": "巴东县"
+          },
+          {
+            "value": 422825,
+            "label": "宣恩县"
+          },
+          {
+            "value": 422826,
+            "label": "咸丰县"
+          },
+          {
+            "value": 422827,
+            "label": "来凤县"
+          },
+          {
+            "value": 422828,
+            "label": "鹤峰县"
+          },
+          {
+            "value": 429004,
+            "label": "仙桃市"
+          },
+          {
+            "value": 429005,
+            "label": "潜江市"
+          },
+          {
+            "value": 429006,
+            "label": "天门市"
+          },
+          {
+            "value": 429021,
+            "label": "神农架林区"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 420000,
+    "label": "湖北省",
+    "expand": "true"
+  },
+  {
+    "id": 1797,
+    "children": [
+      {
+        "id": 1798,
+        "value": 430100,
+        "label": "长沙市",
+        "children": [
+          {
+            "value": 430104,
+            "label": "岳麓区"
+          },
+          {
+            "value": 430102,
+            "label": "芙蓉区"
+          },
+          {
+            "value": 430103,
+            "label": "天心区"
+          },
+          {
+            "value": 430105,
+            "label": "开福区"
+          },
+          {
+            "value": 430111,
+            "label": "雨花区"
+          },
+          {
+            "value": 430112,
+            "label": "望城区"
+          },
+          {
+            "value": 430181,
+            "label": "浏阳市"
+          },
+          {
+            "value": 430182,
+            "label": "宁乡市"
+          },
+          {
+            "value": 430121,
+            "label": "长沙县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1808,
+        "value": 430200,
+        "label": "株洲市",
+        "children": [
+          {
+            "value": 430211,
+            "label": "天元区"
+          },
+          {
+            "value": 430202,
+            "label": "荷塘区"
+          },
+          {
+            "value": 430203,
+            "label": "芦淞区"
+          },
+          {
+            "value": 430204,
+            "label": "石峰区"
+          },
+          {
+            "value": 430281,
+            "label": "醴陵市"
+          },
+          {
+            "value": 430221,
+            "label": "株洲县"
+          },
+          {
+            "value": 430223,
+            "label": "攸县"
+          },
+          {
+            "value": 430224,
+            "label": "茶陵县"
+          },
+          {
+            "value": 430225,
+            "label": "炎陵县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1818,
+        "value": 430300,
+        "label": "湘潭市",
+        "children": [
+          {
+            "value": 430304,
+            "label": "岳塘区"
+          },
+          {
+            "value": 430302,
+            "label": "雨湖区"
+          },
+          {
+            "value": 430381,
+            "label": "湘乡市"
+          },
+          {
+            "value": 430382,
+            "label": "韶山市"
+          },
+          {
+            "value": 430321,
+            "label": "湘潭县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1824,
+        "value": 430400,
+        "label": "衡阳市",
+        "children": [
+          {
+            "value": 430408,
+            "label": "蒸湘区"
+          },
+          {
+            "value": 430405,
+            "label": "珠晖区"
+          },
+          {
+            "value": 430406,
+            "label": "雁峰区"
+          },
+          {
+            "value": 430407,
+            "label": "石鼓区"
+          },
+          {
+            "value": 430412,
+            "label": "南岳区"
+          },
+          {
+            "value": 430481,
+            "label": "耒阳市"
+          },
+          {
+            "value": 430482,
+            "label": "常宁市"
+          },
+          {
+            "value": 430421,
+            "label": "衡阳县"
+          },
+          {
+            "value": 430422,
+            "label": "衡南县"
+          },
+          {
+            "value": 430423,
+            "label": "衡山县"
+          },
+          {
+            "value": 430424,
+            "label": "衡东县"
+          },
+          {
+            "value": 430426,
+            "label": "祁东县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1837,
+        "value": 430500,
+        "label": "邵阳市",
+        "children": [
+          {
+            "value": 430503,
+            "label": "大祥区"
+          },
+          {
+            "value": 430502,
+            "label": "双清区"
+          },
+          {
+            "value": 430511,
+            "label": "北塔区"
+          },
+          {
+            "value": 430581,
+            "label": "武冈市"
+          },
+          {
+            "value": 430521,
+            "label": "邵东县"
+          },
+          {
+            "value": 430522,
+            "label": "新邵县"
+          },
+          {
+            "value": 430523,
+            "label": "邵阳县"
+          },
+          {
+            "value": 430524,
+            "label": "隆回县"
+          },
+          {
+            "value": 430525,
+            "label": "洞口县"
+          },
+          {
+            "value": 430527,
+            "label": "绥宁县"
+          },
+          {
+            "value": 430528,
+            "label": "新宁县"
+          },
+          {
+            "value": 430529,
+            "label": "城步苗族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1850,
+        "value": 430600,
+        "label": "岳阳市",
+        "children": [
+          {
+            "value": 430602,
+            "label": "岳阳楼区"
+          },
+          {
+            "value": 430603,
+            "label": "云溪区"
+          },
+          {
+            "value": 430611,
+            "label": "君山区"
+          },
+          {
+            "value": 430681,
+            "label": "汨罗市"
+          },
+          {
+            "value": 430682,
+            "label": "临湘市"
+          },
+          {
+            "value": 430621,
+            "label": "岳阳县"
+          },
+          {
+            "value": 430623,
+            "label": "华容县"
+          },
+          {
+            "value": 430624,
+            "label": "湘阴县"
+          },
+          {
+            "value": 430626,
+            "label": "平江县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1860,
+        "value": 430700,
+        "label": "常德市",
+        "children": [
+          {
+            "value": 430702,
+            "label": "武陵区"
+          },
+          {
+            "value": 430703,
+            "label": "鼎城区"
+          },
+          {
+            "value": 430781,
+            "label": "津市市"
+          },
+          {
+            "value": 430721,
+            "label": "安乡县"
+          },
+          {
+            "value": 430722,
+            "label": "汉寿县"
+          },
+          {
+            "value": 430723,
+            "label": "澧县"
+          },
+          {
+            "value": 430724,
+            "label": "临澧县"
+          },
+          {
+            "value": 430725,
+            "label": "桃源县"
+          },
+          {
+            "value": 430726,
+            "label": "石门县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1870,
+        "value": 430800,
+        "label": "张家界市",
+        "children": [
+          {
+            "value": 430802,
+            "label": "永定区"
+          },
+          {
+            "value": 430811,
+            "label": "武陵源区"
+          },
+          {
+            "value": 430821,
+            "label": "慈利县"
+          },
+          {
+            "value": 430822,
+            "label": "桑植县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1875,
+        "value": 430900,
+        "label": "益阳市",
+        "children": [
+          {
+            "value": 430903,
+            "label": "赫山区"
+          },
+          {
+            "value": 430902,
+            "label": "资阳区"
+          },
+          {
+            "value": 430981,
+            "label": "沅江市"
+          },
+          {
+            "value": 430921,
+            "label": "南县"
+          },
+          {
+            "value": 430922,
+            "label": "桃江县"
+          },
+          {
+            "value": 430923,
+            "label": "安化县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1882,
+        "value": 431000,
+        "label": "郴州市",
+        "children": [
+          {
+            "value": 431002,
+            "label": "北湖区"
+          },
+          {
+            "value": 431003,
+            "label": "苏仙区"
+          },
+          {
+            "value": 431081,
+            "label": "资兴市"
+          },
+          {
+            "value": 431021,
+            "label": "桂阳县"
+          },
+          {
+            "value": 431022,
+            "label": "宜章县"
+          },
+          {
+            "value": 431023,
+            "label": "永兴县"
+          },
+          {
+            "value": 431024,
+            "label": "嘉禾县"
+          },
+          {
+            "value": 431025,
+            "label": "临武县"
+          },
+          {
+            "value": 431026,
+            "label": "汝城县"
+          },
+          {
+            "value": 431027,
+            "label": "桂东县"
+          },
+          {
+            "value": 431028,
+            "label": "安仁县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1894,
+        "value": 431100,
+        "label": "永州市",
+        "children": [
+          {
+            "value": 431103,
+            "label": "冷水滩区"
+          },
+          {
+            "value": 431102,
+            "label": "零陵区"
+          },
+          {
+            "value": 431121,
+            "label": "祁阳县"
+          },
+          {
+            "value": 431122,
+            "label": "东安县"
+          },
+          {
+            "value": 431123,
+            "label": "双牌县"
+          },
+          {
+            "value": 431124,
+            "label": "道县"
+          },
+          {
+            "value": 431125,
+            "label": "江永县"
+          },
+          {
+            "value": 431126,
+            "label": "宁远县"
+          },
+          {
+            "value": 431127,
+            "label": "蓝山县"
+          },
+          {
+            "value": 431128,
+            "label": "新田县"
+          },
+          {
+            "value": 431129,
+            "label": "江华瑶族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1906,
+        "value": 431200,
+        "label": "怀化市",
+        "children": [
+          {
+            "value": 431202,
+            "label": "鹤城区"
+          },
+          {
+            "value": 431281,
+            "label": "洪江市"
+          },
+          {
+            "value": 431221,
+            "label": "中方县"
+          },
+          {
+            "value": 431222,
+            "label": "沅陵县"
+          },
+          {
+            "value": 431223,
+            "label": "辰溪县"
+          },
+          {
+            "value": 431224,
+            "label": "溆浦县"
+          },
+          {
+            "value": 431225,
+            "label": "会同县"
+          },
+          {
+            "value": 431226,
+            "label": "麻阳苗族自治县"
+          },
+          {
+            "value": 431227,
+            "label": "新晃侗族自治县"
+          },
+          {
+            "value": 431228,
+            "label": "芷江侗族自治县"
+          },
+          {
+            "value": 431229,
+            "label": "靖州苗族侗族自治县"
+          },
+          {
+            "value": 431230,
+            "label": "通道侗族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1919,
+        "value": 431300,
+        "label": "娄底市",
+        "children": [
+          {
+            "value": 431302,
+            "label": "娄星区"
+          },
+          {
+            "value": 431381,
+            "label": "冷水江市"
+          },
+          {
+            "value": 431382,
+            "label": "涟源市"
+          },
+          {
+            "value": 431321,
+            "label": "双峰县"
+          },
+          {
+            "value": 431322,
+            "label": "新化县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1925,
+        "value": 433100,
+        "label": "湘西土家族苗族自治州",
+        "children": [
+          {
+            "value": 433101,
+            "label": "吉首市"
+          },
+          {
+            "value": 433122,
+            "label": "泸溪县"
+          },
+          {
+            "value": 433123,
+            "label": "凤凰县"
+          },
+          {
+            "value": 433124,
+            "label": "花垣县"
+          },
+          {
+            "value": 433125,
+            "label": "保靖县"
+          },
+          {
+            "value": 433126,
+            "label": "古丈县"
+          },
+          {
+            "value": 433127,
+            "label": "永顺县"
+          },
+          {
+            "value": 433130,
+            "label": "龙山县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 430000,
+    "label": "湖南省",
+    "expand": "true"
+  },
+  {
+    "id": 1934,
+    "children": [
+      {
+        "id": 1935,
+        "value": 440100,
+        "label": "广州市",
+        "children": [
+          {
+            "value": 440104,
+            "label": "越秀区"
+          },
+          {
+            "value": 440103,
+            "label": "荔湾区"
+          },
+          {
+            "value": 440105,
+            "label": "海珠区"
+          },
+          {
+            "value": 440106,
+            "label": "天河区"
+          },
+          {
+            "value": 440111,
+            "label": "白云区"
+          },
+          {
+            "value": 440112,
+            "label": "黄埔区"
+          },
+          {
+            "value": 440113,
+            "label": "番禺区"
+          },
+          {
+            "value": 440114,
+            "label": "花都区"
+          },
+          {
+            "value": 440115,
+            "label": "南沙区"
+          },
+          {
+            "value": 440118,
+            "label": "增城区"
+          },
+          {
+            "value": 440117,
+            "label": "从化区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1947,
+        "value": 440200,
+        "label": "韶关市",
+        "children": [
+          {
+            "value": 440204,
+            "label": "浈江区"
+          },
+          {
+            "value": 440203,
+            "label": "武江区"
+          },
+          {
+            "value": 440205,
+            "label": "曲江区"
+          },
+          {
+            "value": 440281,
+            "label": "乐昌市"
+          },
+          {
+            "value": 440282,
+            "label": "南雄市"
+          },
+          {
+            "value": 440222,
+            "label": "始兴县"
+          },
+          {
+            "value": 440224,
+            "label": "仁化县"
+          },
+          {
+            "value": 440229,
+            "label": "翁源县"
+          },
+          {
+            "value": 440233,
+            "label": "新丰县"
+          },
+          {
+            "value": 440232,
+            "label": "乳源瑶族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1958,
+        "value": 440300,
+        "label": "深圳市",
+        "children": [
+          {
+            "value": 440304,
+            "label": "福田区"
+          },
+          {
+            "value": 440303,
+            "label": "罗湖区"
+          },
+          {
+            "value": 440305,
+            "label": "南山区"
+          },
+          {
+            "value": 440306,
+            "label": "宝安区"
+          },
+          {
+            "value": 440307,
+            "label": "龙岗区"
+          },
+          {
+            "value": 440308,
+            "label": "盐田区"
+          },
+          {
+            "value": 440309,
+            "label": "龙华区"
+          },
+          {
+            "value": 440310,
+            "label": "坪山区"
+          },
+          {
+            "value": 440311,
+            "label": "光明区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1967,
+        "value": 440400,
+        "label": "珠海市",
+        "children": [
+          {
+            "value": 440402,
+            "label": "香洲区"
+          },
+          {
+            "value": 440403,
+            "label": "斗门区"
+          },
+          {
+            "value": 440404,
+            "label": "金湾区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1971,
+        "value": 440500,
+        "label": "汕头市",
+        "children": [
+          {
+            "value": 440511,
+            "label": "金平区"
+          },
+          {
+            "value": 440507,
+            "label": "龙湖区"
+          },
+          {
+            "value": 440512,
+            "label": "濠江区"
+          },
+          {
+            "value": 440513,
+            "label": "潮阳区"
+          },
+          {
+            "value": 440514,
+            "label": "潮南区"
+          },
+          {
+            "value": 440515,
+            "label": "澄海区"
+          },
+          {
+            "value": 440523,
+            "label": "南澳县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1979,
+        "value": 440600,
+        "label": "佛山市",
+        "children": [
+          {
+            "value": 440604,
+            "label": "禅城区"
+          },
+          {
+            "value": 440605,
+            "label": "南海区"
+          },
+          {
+            "value": 440606,
+            "label": "顺德区"
+          },
+          {
+            "value": 440607,
+            "label": "三水区"
+          },
+          {
+            "value": 440608,
+            "label": "高明区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1985,
+        "value": 440700,
+        "label": "江门市",
+        "children": [
+          {
+            "value": 440703,
+            "label": "蓬江区"
+          },
+          {
+            "value": 440704,
+            "label": "江海区"
+          },
+          {
+            "value": 440705,
+            "label": "新会区"
+          },
+          {
+            "value": 440781,
+            "label": "台山市"
+          },
+          {
+            "value": 440783,
+            "label": "开平市"
+          },
+          {
+            "value": 440784,
+            "label": "鹤山市"
+          },
+          {
+            "value": 440785,
+            "label": "恩平市"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 1993,
+        "value": 440800,
+        "label": "湛江市",
+        "children": [
+          {
+            "value": 440802,
+            "label": "赤坎区"
+          },
+          {
+            "value": 440803,
+            "label": "霞山区"
+          },
+          {
+            "value": 440804,
+            "label": "坡头区"
+          },
+          {
+            "value": 440811,
+            "label": "麻章区"
+          },
+          {
+            "value": 440881,
+            "label": "廉江市"
+          },
+          {
+            "value": 440882,
+            "label": "雷州市"
+          },
+          {
+            "value": 440883,
+            "label": "吴川市"
+          },
+          {
+            "value": 440823,
+            "label": "遂溪县"
+          },
+          {
+            "value": 440825,
+            "label": "徐闻县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2003,
+        "value": 440900,
+        "label": "茂名市",
+        "children": [
+          {
+            "value": 440902,
+            "label": "茂南区"
+          },
+          {
+            "value": 440904,
+            "label": "电白区"
+          },
+          {
+            "value": 440981,
+            "label": "高州市"
+          },
+          {
+            "value": 440982,
+            "label": "化州市"
+          },
+          {
+            "value": 440983,
+            "label": "信宜市"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2009,
+        "value": 441200,
+        "label": "肇庆市",
+        "children": [
+          {
+            "value": 441202,
+            "label": "端州区"
+          },
+          {
+            "value": 441203,
+            "label": "鼎湖区"
+          },
+          {
+            "value": 441204,
+            "label": "高要区"
+          },
+          {
+            "value": 441284,
+            "label": "四会市"
+          },
+          {
+            "value": 441223,
+            "label": "广宁县"
+          },
+          {
+            "value": 441224,
+            "label": "怀集县"
+          },
+          {
+            "value": 441225,
+            "label": "封开县"
+          },
+          {
+            "value": 441226,
+            "label": "德庆县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2018,
+        "value": 441300,
+        "label": "惠州市",
+        "children": [
+          {
+            "value": 441302,
+            "label": "惠城区"
+          },
+          {
+            "value": 441303,
+            "label": "惠阳区"
+          },
+          {
+            "value": 441322,
+            "label": "博罗县"
+          },
+          {
+            "value": 441323,
+            "label": "惠东县"
+          },
+          {
+            "value": 441324,
+            "label": "龙门县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2024,
+        "value": 441400,
+        "label": "梅州市",
+        "children": [
+          {
+            "value": 441402,
+            "label": "梅江区"
+          },
+          {
+            "value": 441403,
+            "label": "梅县区"
+          },
+          {
+            "value": 441481,
+            "label": "兴宁市"
+          },
+          {
+            "value": 441422,
+            "label": "大埔县"
+          },
+          {
+            "value": 441423,
+            "label": "丰顺县"
+          },
+          {
+            "value": 441424,
+            "label": "五华县"
+          },
+          {
+            "value": 441426,
+            "label": "平远县"
+          },
+          {
+            "value": 441427,
+            "label": "蕉岭县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2033,
+        "value": 441500,
+        "label": "汕尾市",
+        "children": [
+          {
+            "value": 441502,
+            "label": "城区"
+          },
+          {
+            "value": 441581,
+            "label": "陆丰市"
+          },
+          {
+            "value": 441521,
+            "label": "海丰县"
+          },
+          {
+            "value": 441523,
+            "label": "陆河县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2038,
+        "value": 441600,
+        "label": "河源市",
+        "children": [
+          {
+            "value": 441602,
+            "label": "源城区"
+          },
+          {
+            "value": 441621,
+            "label": "紫金县"
+          },
+          {
+            "value": 441622,
+            "label": "龙川县"
+          },
+          {
+            "value": 441623,
+            "label": "连平县"
+          },
+          {
+            "value": 441624,
+            "label": "和平县"
+          },
+          {
+            "value": 441625,
+            "label": "东源县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2045,
+        "value": 441700,
+        "label": "阳江市",
+        "children": [
+          {
+            "value": 441702,
+            "label": "江城区"
+          },
+          {
+            "value": 441704,
+            "label": "阳东区"
+          },
+          {
+            "value": 441781,
+            "label": "阳春市"
+          },
+          {
+            "value": 441721,
+            "label": "阳西县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2050,
+        "value": 441800,
+        "label": "清远市",
+        "children": [
+          {
+            "value": 441802,
+            "label": "清城区"
+          },
+          {
+            "value": 441803,
+            "label": "清新区"
+          },
+          {
+            "value": 441881,
+            "label": "英德市"
+          },
+          {
+            "value": 441882,
+            "label": "连州市"
+          },
+          {
+            "value": 441821,
+            "label": "佛冈县"
+          },
+          {
+            "value": 441823,
+            "label": "阳山县"
+          },
+          {
+            "value": 441825,
+            "label": "连山壮族瑶族自治县"
+          },
+          {
+            "value": 441826,
+            "label": "连南瑶族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2059,
+        "value": 441900,
+        "label": "东莞市"
+      },
+      {
+        "id": 2060,
+        "value": 442000,
+        "label": "中山市"
+      },
+      {
+        "id": 2061,
+        "value": 445100,
+        "label": "潮州市",
+        "children": [
+          {
+            "value": 445102,
+            "label": "湘桥区"
+          },
+          {
+            "value": 445103,
+            "label": "潮安区"
+          },
+          {
+            "value": 445122,
+            "label": "饶平县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2065,
+        "value": 445200,
+        "label": "揭阳市",
+        "children": [
+          {
+            "value": 445202,
+            "label": "榕城区"
+          },
+          {
+            "value": 445203,
+            "label": "揭东区"
+          },
+          {
+            "value": 445281,
+            "label": "普宁市"
+          },
+          {
+            "value": 445222,
+            "label": "揭西县"
+          },
+          {
+            "value": 445224,
+            "label": "惠来县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2071,
+        "value": 445300,
+        "label": "云浮市",
+        "children": [
+          {
+            "value": 445302,
+            "label": "云城区"
+          },
+          {
+            "value": 445303,
+            "label": "云安区"
+          },
+          {
+            "value": 445381,
+            "label": "罗定市"
+          },
+          {
+            "value": 445321,
+            "label": "新兴县"
+          },
+          {
+            "value": 445322,
+            "label": "郁南县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 440000,
+    "label": "广东省",
+    "expand": "true"
+  },
+  {
+    "id": 2077,
+    "children": [
+      {
+        "id": 2078,
+        "value": 450100,
+        "label": "南宁市",
+        "children": [
+          {
+            "value": 450103,
+            "label": "青秀区"
+          },
+          {
+            "value": 450102,
+            "label": "兴宁区"
+          },
+          {
+            "value": 450105,
+            "label": "江南区"
+          },
+          {
+            "value": 450107,
+            "label": "西乡塘区"
+          },
+          {
+            "value": 450108,
+            "label": "良庆区"
+          },
+          {
+            "value": 450109,
+            "label": "邕宁区"
+          },
+          {
+            "value": 450110,
+            "label": "武鸣区"
+          },
+          {
+            "value": 450123,
+            "label": "隆安县"
+          },
+          {
+            "value": 450124,
+            "label": "马山县"
+          },
+          {
+            "value": 450125,
+            "label": "上林县"
+          },
+          {
+            "value": 450126,
+            "label": "宾阳县"
+          },
+          {
+            "value": 450127,
+            "label": "横县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2091,
+        "value": 450200,
+        "label": "柳州市",
+        "children": [
+          {
+            "value": 450205,
+            "label": "柳北区"
+          },
+          {
+            "value": 450202,
+            "label": "城中区"
+          },
+          {
+            "value": 450203,
+            "label": "鱼峰区"
+          },
+          {
+            "value": 450204,
+            "label": "柳南区"
+          },
+          {
+            "value": 450206,
+            "label": "柳江区"
+          },
+          {
+            "value": 450222,
+            "label": "柳城县"
+          },
+          {
+            "value": 450223,
+            "label": "鹿寨县"
+          },
+          {
+            "value": 450224,
+            "label": "融安县"
+          },
+          {
+            "value": 450225,
+            "label": "融水苗族自治县"
+          },
+          {
+            "value": 450226,
+            "label": "三江侗族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2102,
+        "value": 450300,
+        "label": "桂林市",
+        "children": [
+          {
+            "value": 450312,
+            "label": "临桂区"
+          },
+          {
+            "value": 450302,
+            "label": "秀峰区"
+          },
+          {
+            "value": 450303,
+            "label": "叠彩区"
+          },
+          {
+            "value": 450304,
+            "label": "象山区"
+          },
+          {
+            "value": 450305,
+            "label": "七星区"
+          },
+          {
+            "value": 450311,
+            "label": "雁山区"
+          },
+          {
+            "value": 450321,
+            "label": "阳朔县"
+          },
+          {
+            "value": 450323,
+            "label": "灵川县"
+          },
+          {
+            "value": 450324,
+            "label": "全州县"
+          },
+          {
+            "value": 450325,
+            "label": "兴安县"
+          },
+          {
+            "value": 450326,
+            "label": "永福县"
+          },
+          {
+            "value": 450327,
+            "label": "灌阳县"
+          },
+          {
+            "value": 450329,
+            "label": "资源县"
+          },
+          {
+            "value": 450330,
+            "label": "平乐县"
+          },
+          {
+            "value": 450331,
+            "label": "荔浦县"
+          },
+          {
+            "value": 450328,
+            "label": "龙胜各族自治县"
+          },
+          {
+            "value": 450332,
+            "label": "恭城瑶族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2120,
+        "value": 450400,
+        "label": "梧州市",
+        "children": [
+          {
+            "value": 450405,
+            "label": "长洲区"
+          },
+          {
+            "value": 450403,
+            "label": "万秀区"
+          },
+          {
+            "value": 450406,
+            "label": "龙圩区"
+          },
+          {
+            "value": 450481,
+            "label": "岑溪市"
+          },
+          {
+            "value": 450421,
+            "label": "苍梧县"
+          },
+          {
+            "value": 450422,
+            "label": "藤县"
+          },
+          {
+            "value": 450423,
+            "label": "蒙山县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2128,
+        "value": 450500,
+        "label": "北海市",
+        "children": [
+          {
+            "value": 450502,
+            "label": "海城区"
+          },
+          {
+            "value": 450503,
+            "label": "银海区"
+          },
+          {
+            "value": 450512,
+            "label": "铁山港区"
+          },
+          {
+            "value": 450521,
+            "label": "合浦县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2133,
+        "value": 450600,
+        "label": "防城港市",
+        "children": [
+          {
+            "value": 450602,
+            "label": "港口区"
+          },
+          {
+            "value": 450603,
+            "label": "防城区"
+          },
+          {
+            "value": 450681,
+            "label": "东兴市"
+          },
+          {
+            "value": 450621,
+            "label": "上思县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2138,
+        "value": 450700,
+        "label": "钦州市",
+        "children": [
+          {
+            "value": 450702,
+            "label": "钦南区"
+          },
+          {
+            "value": 450703,
+            "label": "钦北区"
+          },
+          {
+            "value": 450721,
+            "label": "灵山县"
+          },
+          {
+            "value": 450722,
+            "label": "浦北县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2143,
+        "value": 450800,
+        "label": "贵港市",
+        "children": [
+          {
+            "value": 450802,
+            "label": "港北区"
+          },
+          {
+            "value": 450803,
+            "label": "港南区"
+          },
+          {
+            "value": 450804,
+            "label": "覃塘区"
+          },
+          {
+            "value": 450881,
+            "label": "桂平市"
+          },
+          {
+            "value": 450821,
+            "label": "平南县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2149,
+        "value": 450900,
+        "label": "玉林市",
+        "children": [
+          {
+            "value": 450902,
+            "label": "玉州区"
+          },
+          {
+            "value": 450903,
+            "label": "福绵区"
+          },
+          {
+            "value": 450981,
+            "label": "北流市"
+          },
+          {
+            "value": 450921,
+            "label": "容县"
+          },
+          {
+            "value": 450922,
+            "label": "陆川县"
+          },
+          {
+            "value": 450923,
+            "label": "博白县"
+          },
+          {
+            "value": 450924,
+            "label": "兴业县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2157,
+        "value": 451000,
+        "label": "百色市",
+        "children": [
+          {
+            "value": 451002,
+            "label": "右江区"
+          },
+          {
+            "value": 451081,
+            "label": "靖西市"
+          },
+          {
+            "value": 451021,
+            "label": "田阳县"
+          },
+          {
+            "value": 451022,
+            "label": "田东县"
+          },
+          {
+            "value": 451023,
+            "label": "平果县"
+          },
+          {
+            "value": 451024,
+            "label": "德保县"
+          },
+          {
+            "value": 451026,
+            "label": "那坡县"
+          },
+          {
+            "value": 451027,
+            "label": "凌云县"
+          },
+          {
+            "value": 451028,
+            "label": "乐业县"
+          },
+          {
+            "value": 451029,
+            "label": "田林县"
+          },
+          {
+            "value": 451030,
+            "label": "西林县"
+          },
+          {
+            "value": 451031,
+            "label": "隆林各族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2170,
+        "value": 451100,
+        "label": "贺州市",
+        "children": [
+          {
+            "value": 451102,
+            "label": "八步区"
+          },
+          {
+            "value": 451103,
+            "label": "平桂区"
+          },
+          {
+            "value": 451121,
+            "label": "昭平县"
+          },
+          {
+            "value": 451122,
+            "label": "钟山县"
+          },
+          {
+            "value": 451123,
+            "label": "富川瑶族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2176,
+        "value": 451200,
+        "label": "河池市",
+        "children": [
+          {
+            "value": 451202,
+            "label": "金城江区"
+          },
+          {
+            "value": 451203,
+            "label": "宜州区"
+          },
+          {
+            "value": 451221,
+            "label": "南丹县"
+          },
+          {
+            "value": 451222,
+            "label": "天峨县"
+          },
+          {
+            "value": 451223,
+            "label": "凤山县"
+          },
+          {
+            "value": 451224,
+            "label": "东兰县"
+          },
+          {
+            "value": 451225,
+            "label": "罗城仫佬族自治县"
+          },
+          {
+            "value": 451226,
+            "label": "环江毛南族自治县"
+          },
+          {
+            "value": 451227,
+            "label": "巴马瑶族自治县"
+          },
+          {
+            "value": 451228,
+            "label": "都安瑶族自治县"
+          },
+          {
+            "value": 451229,
+            "label": "大化瑶族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2188,
+        "value": 451300,
+        "label": "来宾市",
+        "children": [
+          {
+            "value": 451302,
+            "label": "兴宾区"
+          },
+          {
+            "value": 451381,
+            "label": "合山市"
+          },
+          {
+            "value": 451321,
+            "label": "忻城县"
+          },
+          {
+            "value": 451322,
+            "label": "象州县"
+          },
+          {
+            "value": 451323,
+            "label": "武宣县"
+          },
+          {
+            "value": 451324,
+            "label": "金秀瑶族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2195,
+        "value": 451400,
+        "label": "崇左市",
+        "children": [
+          {
+            "value": 451402,
+            "label": "江州区"
+          },
+          {
+            "value": 451481,
+            "label": "凭祥市"
+          },
+          {
+            "value": 451421,
+            "label": "扶绥县"
+          },
+          {
+            "value": 451422,
+            "label": "宁明县"
+          },
+          {
+            "value": 451423,
+            "label": "龙州县"
+          },
+          {
+            "value": 451424,
+            "label": "大新县"
+          },
+          {
+            "value": 451425,
+            "label": "天等县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 450000,
+    "label": "广西壮族自治区",
+    "expand": "true"
+  },
+  {
+    "id": 2203,
+    "children": [
+      {
+        "id": 2204,
+        "value": 460100,
+        "label": "海口市",
+        "children": [
+          {
+            "value": 460106,
+            "label": "龙华区"
+          },
+          {
+            "value": 460105,
+            "label": "秀英区"
+          },
+          {
+            "value": 460107,
+            "label": "琼山区"
+          },
+          {
+            "value": 460108,
+            "label": "美兰区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2209,
+        "value": 460200,
+        "label": "三亚市",
+        "children": [
+          {
+            "value": 460203,
+            "label": "吉阳区"
+          },
+          {
+            "value": 460202,
+            "label": "海棠区"
+          },
+          {
+            "value": 460204,
+            "label": "天涯区"
+          },
+          {
+            "value": 460205,
+            "label": "崖州区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2214,
+        "value": 460300,
+        "label": "三沙市"
+      },
+      {
+        "id": 2215,
+        "value": 460400,
+        "label": "儋州市",
+        "children": [
+          {
+            "value": 469001,
+            "label": "五指山市"
+          },
+          {
+            "value": 469002,
+            "label": "琼海市"
+          },
+          {
+            "value": 469005,
+            "label": "文昌市"
+          },
+          {
+            "value": 469006,
+            "label": "万宁市"
+          },
+          {
+            "value": 469007,
+            "label": "东方市"
+          },
+          {
+            "value": 469021,
+            "label": "定安县"
+          },
+          {
+            "value": 469022,
+            "label": "屯昌县"
+          },
+          {
+            "value": 469023,
+            "label": "澄迈县"
+          },
+          {
+            "value": 469024,
+            "label": "临高县"
+          },
+          {
+            "value": 469025,
+            "label": "白沙黎族自治县"
+          },
+          {
+            "value": 469026,
+            "label": "昌江黎族自治县"
+          },
+          {
+            "value": 469027,
+            "label": "乐东黎族自治县"
+          },
+          {
+            "value": 469028,
+            "label": "陵水黎族自治县"
+          },
+          {
+            "value": 469029,
+            "label": "保亭黎族苗族自治县"
+          },
+          {
+            "value": 469030,
+            "label": "琼中黎族苗族自治县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 460000,
+    "label": "海南省",
+    "expand": "true"
+  },
+  {
+    "id": 2231,
+    "children": [
+      {
+        "id": 2232,
+        "value": 500100,
+        "label": "重庆市",
+        "children": [
+          {
+            "value": 500103,
+            "label": "渝中区"
+          },
+          {
+            "value": 500101,
+            "label": "万州区"
+          },
+          {
+            "value": 500102,
+            "label": "涪陵区"
+          },
+          {
+            "value": 500104,
+            "label": "大渡口区"
+          },
+          {
+            "value": 500105,
+            "label": "江北区"
+          },
+          {
+            "value": 500106,
+            "label": "沙坪坝区"
+          },
+          {
+            "value": 500107,
+            "label": "九龙坡区"
+          },
+          {
+            "value": 500108,
+            "label": "南岸区"
+          },
+          {
+            "value": 500109,
+            "label": "北碚区"
+          },
+          {
+            "value": 500110,
+            "label": "綦江区"
+          },
+          {
+            "value": 500111,
+            "label": "大足区"
+          },
+          {
+            "value": 500112,
+            "label": "渝北区"
+          },
+          {
+            "value": 500113,
+            "label": "巴南区"
+          },
+          {
+            "value": 500114,
+            "label": "黔江区"
+          },
+          {
+            "value": 500115,
+            "label": "长寿区"
+          },
+          {
+            "value": 500116,
+            "label": "江津区"
+          },
+          {
+            "value": 500117,
+            "label": "合川区"
+          },
+          {
+            "value": 500118,
+            "label": "永川区"
+          },
+          {
+            "value": 500119,
+            "label": "南川区"
+          },
+          {
+            "value": 500120,
+            "label": "璧山区"
+          },
+          {
+            "value": 500151,
+            "label": "铜梁区"
+          },
+          {
+            "value": 500152,
+            "label": "潼南区"
+          },
+          {
+            "value": 500153,
+            "label": "荣昌区"
+          },
+          {
+            "value": 500154,
+            "label": "开州区"
+          },
+          {
+            "value": 500155,
+            "label": "梁平区"
+          },
+          {
+            "value": 500156,
+            "label": "武隆区"
+          },
+          {
+            "value": 500229,
+            "label": "城口县"
+          },
+          {
+            "value": 500230,
+            "label": "丰都县"
+          },
+          {
+            "value": 500231,
+            "label": "垫江县"
+          },
+          {
+            "value": 500233,
+            "label": "忠县"
+          },
+          {
+            "value": 500235,
+            "label": "云阳县"
+          },
+          {
+            "value": 500236,
+            "label": "奉节县"
+          },
+          {
+            "value": 500237,
+            "label": "巫山县"
+          },
+          {
+            "value": 500238,
+            "label": "巫溪县"
+          },
+          {
+            "value": 500240,
+            "label": "石柱土家族自治县"
+          },
+          {
+            "value": 500241,
+            "label": "秀山土家族苗族自治县"
+          },
+          {
+            "value": 500242,
+            "label": "酉阳土家族苗族自治县"
+          },
+          {
+            "value": 500243,
+            "label": "彭水苗族土家族自治县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 500000,
+    "label": "重庆市",
+    "expand": "true"
+  },
+  {
+    "id": 2271,
+    "children": [
+      {
+        "id": 2272,
+        "value": 510100,
+        "label": "成都市",
+        "children": [
+          {
+            "value": 510107,
+            "label": "武侯区"
+          },
+          {
+            "value": 510104,
+            "label": "锦江区"
+          },
+          {
+            "value": 510105,
+            "label": "青羊区"
+          },
+          {
+            "value": 510106,
+            "label": "金牛区"
+          },
+          {
+            "value": 510108,
+            "label": "成华区"
+          },
+          {
+            "value": 510112,
+            "label": "龙泉驿区"
+          },
+          {
+            "value": 510113,
+            "label": "青白江区"
+          },
+          {
+            "value": 510114,
+            "label": "新都区"
+          },
+          {
+            "value": 510115,
+            "label": "温江区"
+          },
+          {
+            "value": 510116,
+            "label": "双流区"
+          },
+          {
+            "value": 510117,
+            "label": "郫都区"
+          },
+          {
+            "value": 510181,
+            "label": "都江堰市"
+          },
+          {
+            "value": 510182,
+            "label": "彭州市"
+          },
+          {
+            "value": 510183,
+            "label": "邛崃市"
+          },
+          {
+            "value": 510184,
+            "label": "崇州市"
+          },
+          {
+            "value": 510185,
+            "label": "简阳市"
+          },
+          {
+            "value": 510121,
+            "label": "金堂县"
+          },
+          {
+            "value": 510129,
+            "label": "大邑县"
+          },
+          {
+            "value": 510131,
+            "label": "蒲江县"
+          },
+          {
+            "value": 510132,
+            "label": "新津县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2293,
+        "value": 510300,
+        "label": "自贡市",
+        "children": [
+          {
+            "value": 510302,
+            "label": "自流井区"
+          },
+          {
+            "value": 510303,
+            "label": "贡井区"
+          },
+          {
+            "value": 510304,
+            "label": "大安区"
+          },
+          {
+            "value": 510311,
+            "label": "沿滩区"
+          },
+          {
+            "value": 510321,
+            "label": "荣县"
+          },
+          {
+            "value": 510322,
+            "label": "富顺县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2300,
+        "value": 510400,
+        "label": "攀枝花市",
+        "children": [
+          {
+            "value": 510402,
+            "label": "东区"
+          },
+          {
+            "value": 510403,
+            "label": "西区"
+          },
+          {
+            "value": 510411,
+            "label": "仁和区"
+          },
+          {
+            "value": 510421,
+            "label": "米易县"
+          },
+          {
+            "value": 510422,
+            "label": "盐边县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2306,
+        "value": 510500,
+        "label": "泸州市",
+        "children": [
+          {
+            "value": 510502,
+            "label": "江阳区"
+          },
+          {
+            "value": 510503,
+            "label": "纳溪区"
+          },
+          {
+            "value": 510504,
+            "label": "龙马潭区"
+          },
+          {
+            "value": 510521,
+            "label": "泸县"
+          },
+          {
+            "value": 510522,
+            "label": "合江县"
+          },
+          {
+            "value": 510524,
+            "label": "叙永县"
+          },
+          {
+            "value": 510525,
+            "label": "古蔺县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2314,
+        "value": 510600,
+        "label": "德阳市",
+        "children": [
+          {
+            "value": 510603,
+            "label": "旌阳区"
+          },
+          {
+            "value": 510681,
+            "label": "广汉市"
+          },
+          {
+            "value": 510682,
+            "label": "什邡市"
+          },
+          {
+            "value": 510683,
+            "label": "绵竹市"
+          },
+          {
+            "value": 510626,
+            "label": "罗江县"
+          },
+          {
+            "value": 510623,
+            "label": "中江县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2321,
+        "value": 510700,
+        "label": "绵阳市",
+        "children": [
+          {
+            "value": 510703,
+            "label": "涪城区"
+          },
+          {
+            "value": 510704,
+            "label": "游仙区"
+          },
+          {
+            "value": 510705,
+            "label": "安州区"
+          },
+          {
+            "value": 510781,
+            "label": "江油市"
+          },
+          {
+            "value": 510722,
+            "label": "三台县"
+          },
+          {
+            "value": 510723,
+            "label": "盐亭县"
+          },
+          {
+            "value": 510725,
+            "label": "梓潼县"
+          },
+          {
+            "value": 510727,
+            "label": "平武县"
+          },
+          {
+            "value": 510726,
+            "label": "北川羌族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2331,
+        "value": 510800,
+        "label": "广元市",
+        "children": [
+          {
+            "value": 510802,
+            "label": "利州区"
+          },
+          {
+            "value": 510811,
+            "label": "昭化区"
+          },
+          {
+            "value": 510812,
+            "label": "朝天区"
+          },
+          {
+            "value": 510821,
+            "label": "旺苍县"
+          },
+          {
+            "value": 510822,
+            "label": "青川县"
+          },
+          {
+            "value": 510823,
+            "label": "剑阁县"
+          },
+          {
+            "value": 510824,
+            "label": "苍溪县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2339,
+        "value": 510900,
+        "label": "遂宁市",
+        "children": [
+          {
+            "value": 510903,
+            "label": "船山区"
+          },
+          {
+            "value": 510904,
+            "label": "安居区"
+          },
+          {
+            "value": 510921,
+            "label": "蓬溪县"
+          },
+          {
+            "value": 510922,
+            "label": "射洪县"
+          },
+          {
+            "value": 510923,
+            "label": "大英县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2345,
+        "value": 511000,
+        "label": "内江市",
+        "children": [
+          {
+            "value": 511002,
+            "label": "市中区"
+          },
+          {
+            "value": 511011,
+            "label": "东兴区"
+          },
+          {
+            "value": 511083,
+            "label": "隆昌市"
+          },
+          {
+            "value": 511024,
+            "label": "威远县"
+          },
+          {
+            "value": 511025,
+            "label": "资中县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2351,
+        "value": 511100,
+        "label": "乐山市",
+        "children": [
+          {
+            "value": 511102,
+            "label": "市中区"
+          },
+          {
+            "value": 511111,
+            "label": "沙湾区"
+          },
+          {
+            "value": 511112,
+            "label": "五通桥区"
+          },
+          {
+            "value": 511113,
+            "label": "金口河区"
+          },
+          {
+            "value": 511181,
+            "label": "峨眉山市"
+          },
+          {
+            "value": 511123,
+            "label": "犍为县"
+          },
+          {
+            "value": 511124,
+            "label": "井研县"
+          },
+          {
+            "value": 511126,
+            "label": "夹江县"
+          },
+          {
+            "value": 511129,
+            "label": "沐川县"
+          },
+          {
+            "value": 511132,
+            "label": "峨边彝族自治县"
+          },
+          {
+            "value": 511133,
+            "label": "马边彝族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2363,
+        "value": 511300,
+        "label": "南充市",
+        "children": [
+          {
+            "value": 511302,
+            "label": "顺庆区"
+          },
+          {
+            "value": 511303,
+            "label": "高坪区"
+          },
+          {
+            "value": 511304,
+            "label": "嘉陵区"
+          },
+          {
+            "value": 511381,
+            "label": "阆中市"
+          },
+          {
+            "value": 511321,
+            "label": "南部县"
+          },
+          {
+            "value": 511322,
+            "label": "营山县"
+          },
+          {
+            "value": 511323,
+            "label": "蓬安县"
+          },
+          {
+            "value": 511324,
+            "label": "仪陇县"
+          },
+          {
+            "value": 511325,
+            "label": "西充县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2373,
+        "value": 511400,
+        "label": "眉山市",
+        "children": [
+          {
+            "value": 511402,
+            "label": "东坡区"
+          },
+          {
+            "value": 511403,
+            "label": "彭山区"
+          },
+          {
+            "value": 511421,
+            "label": "仁寿县"
+          },
+          {
+            "value": 511423,
+            "label": "洪雅县"
+          },
+          {
+            "value": 511424,
+            "label": "丹棱县"
+          },
+          {
+            "value": 511425,
+            "label": "青神县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2380,
+        "value": 511500,
+        "label": "宜宾市",
+        "children": [
+          {
+            "value": 511502,
+            "label": "翠屏区"
+          },
+          {
+            "value": 511503,
+            "label": "南溪区"
+          },
+          {
+            "value": 511521,
+            "label": "宜宾县"
+          },
+          {
+            "value": 511523,
+            "label": "江安县"
+          },
+          {
+            "value": 511524,
+            "label": "长宁县"
+          },
+          {
+            "value": 511525,
+            "label": "高县"
+          },
+          {
+            "value": 511526,
+            "label": "珙县"
+          },
+          {
+            "value": 511527,
+            "label": "筠连县"
+          },
+          {
+            "value": 511528,
+            "label": "兴文县"
+          },
+          {
+            "value": 511529,
+            "label": "屏山县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2391,
+        "value": 511600,
+        "label": "广安市",
+        "children": [
+          {
+            "value": 511602,
+            "label": "广安区"
+          },
+          {
+            "value": 511603,
+            "label": "前锋区"
+          },
+          {
+            "value": 511681,
+            "label": "华蓥市"
+          },
+          {
+            "value": 511621,
+            "label": "岳池县"
+          },
+          {
+            "value": 511622,
+            "label": "武胜县"
+          },
+          {
+            "value": 511623,
+            "label": "邻水县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2398,
+        "value": 511700,
+        "label": "达州市",
+        "children": [
+          {
+            "value": 511702,
+            "label": "通川区"
+          },
+          {
+            "value": 511703,
+            "label": "达川区"
+          },
+          {
+            "value": 511781,
+            "label": "万源市"
+          },
+          {
+            "value": 511722,
+            "label": "宣汉县"
+          },
+          {
+            "value": 511723,
+            "label": "开江县"
+          },
+          {
+            "value": 511724,
+            "label": "大竹县"
+          },
+          {
+            "value": 511725,
+            "label": "渠县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2406,
+        "value": 511800,
+        "label": "雅安市",
+        "children": [
+          {
+            "value": 511802,
+            "label": "雨城区"
+          },
+          {
+            "value": 511803,
+            "label": "名山区"
+          },
+          {
+            "value": 511822,
+            "label": "荥经县"
+          },
+          {
+            "value": 511823,
+            "label": "汉源县"
+          },
+          {
+            "value": 511824,
+            "label": "石棉县"
+          },
+          {
+            "value": 511825,
+            "label": "天全县"
+          },
+          {
+            "value": 511826,
+            "label": "芦山县"
+          },
+          {
+            "value": 511827,
+            "label": "宝兴县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2415,
+        "value": 511900,
+        "label": "巴中市",
+        "children": [
+          {
+            "value": 511902,
+            "label": "巴州区"
+          },
+          {
+            "value": 511903,
+            "label": "恩阳区"
+          },
+          {
+            "value": 511921,
+            "label": "通江县"
+          },
+          {
+            "value": 511922,
+            "label": "南江县"
+          },
+          {
+            "value": 511923,
+            "label": "平昌县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2421,
+        "value": 512000,
+        "label": "资阳市",
+        "children": [
+          {
+            "value": 512002,
+            "label": "雁江区"
+          },
+          {
+            "value": 512022,
+            "label": "乐至县"
+          },
+          {
+            "value": 512021,
+            "label": "安岳县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2425,
+        "value": 513200,
+        "label": "阿坝藏族羌族自治州",
+        "children": [
+          {
+            "value": 513201,
+            "label": "马尔康市"
+          },
+          {
+            "value": 513221,
+            "label": "汶川县"
+          },
+          {
+            "value": 513222,
+            "label": "理县"
+          },
+          {
+            "value": 513223,
+            "label": "茂县"
+          },
+          {
+            "value": 513224,
+            "label": "松潘县"
+          },
+          {
+            "value": 513225,
+            "label": "九寨沟县"
+          },
+          {
+            "value": 513226,
+            "label": "金川县"
+          },
+          {
+            "value": 513227,
+            "label": "小金县"
+          },
+          {
+            "value": 513228,
+            "label": "黑水县"
+          },
+          {
+            "value": 513230,
+            "label": "壤塘县"
+          },
+          {
+            "value": 513231,
+            "label": "阿坝县"
+          },
+          {
+            "value": 513232,
+            "label": "若尔盖县"
+          },
+          {
+            "value": 513233,
+            "label": "红原县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2439,
+        "value": 513300,
+        "label": "甘孜藏族自治州",
+        "children": [
+          {
+            "value": 513301,
+            "label": "康定市"
+          },
+          {
+            "value": 513322,
+            "label": "泸定县"
+          },
+          {
+            "value": 513323,
+            "label": "丹巴县"
+          },
+          {
+            "value": 513324,
+            "label": "九龙县"
+          },
+          {
+            "value": 513325,
+            "label": "雅江县"
+          },
+          {
+            "value": 513326,
+            "label": "道孚县"
+          },
+          {
+            "value": 513327,
+            "label": "炉霍县"
+          },
+          {
+            "value": 513328,
+            "label": "甘孜县"
+          },
+          {
+            "value": 513329,
+            "label": "新龙县"
+          },
+          {
+            "value": 513330,
+            "label": "德格县"
+          },
+          {
+            "value": 513331,
+            "label": "白玉县"
+          },
+          {
+            "value": 513332,
+            "label": "石渠县"
+          },
+          {
+            "value": 513333,
+            "label": "色达县"
+          },
+          {
+            "value": 513334,
+            "label": "理塘县"
+          },
+          {
+            "value": 513335,
+            "label": "巴塘县"
+          },
+          {
+            "value": 513336,
+            "label": "乡城县"
+          },
+          {
+            "value": 513337,
+            "label": "稻城县"
+          },
+          {
+            "value": 513338,
+            "label": "得荣县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2458,
+        "value": 513400,
+        "label": "凉山彝族自治州",
+        "children": [
+          {
+            "value": 513401,
+            "label": "西昌市"
+          },
+          {
+            "value": 513423,
+            "label": "盐源县"
+          },
+          {
+            "value": 513424,
+            "label": "德昌县"
+          },
+          {
+            "value": 513425,
+            "label": "会理县"
+          },
+          {
+            "value": 513426,
+            "label": "会东县"
+          },
+          {
+            "value": 513427,
+            "label": "宁南县"
+          },
+          {
+            "value": 513428,
+            "label": "普格县"
+          },
+          {
+            "value": 513429,
+            "label": "布拖县"
+          },
+          {
+            "value": 513430,
+            "label": "金阳县"
+          },
+          {
+            "value": 513431,
+            "label": "昭觉县"
+          },
+          {
+            "value": 513432,
+            "label": "喜德县"
+          },
+          {
+            "value": 513433,
+            "label": "冕宁县"
+          },
+          {
+            "value": 513434,
+            "label": "越西县"
+          },
+          {
+            "value": 513435,
+            "label": "甘洛县"
+          },
+          {
+            "value": 513436,
+            "label": "美姑县"
+          },
+          {
+            "value": 513437,
+            "label": "雷波县"
+          },
+          {
+            "value": 513422,
+            "label": "木里藏族自治县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 510000,
+    "label": "四川省",
+    "expand": "true"
+  },
+  {
+    "id": 2476,
+    "children": [
+      {
+        "id": 2477,
+        "value": 520100,
+        "label": "贵阳市",
+        "children": [
+          {
+            "value": 520112,
+            "label": "乌当区"
+          },
+          {
+            "value": 520102,
+            "label": "南明区"
+          },
+          {
+            "value": 520103,
+            "label": "云岩区"
+          },
+          {
+            "value": 520111,
+            "label": "花溪区"
+          },
+          {
+            "value": 520113,
+            "label": "白云区"
+          },
+          {
+            "value": 520115,
+            "label": "观山湖区"
+          },
+          {
+            "value": 520181,
+            "label": "清镇市"
+          },
+          {
+            "value": 520121,
+            "label": "开阳县"
+          },
+          {
+            "value": 520122,
+            "label": "息烽县"
+          },
+          {
+            "value": 520123,
+            "label": "修文县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2488,
+        "value": 520200,
+        "label": "六盘水市",
+        "children": [
+          {
+            "value": 520201,
+            "label": "钟山区"
+          },
+          {
+            "value": 520281,
+            "label": "盘州市"
+          },
+          {
+            "value": 520221,
+            "label": "水城县"
+          },
+          {
+            "value": 520203,
+            "label": "六枝特区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2493,
+        "value": 520300,
+        "label": "遵义市",
+        "children": [
+          {
+            "value": 520303,
+            "label": "汇川区"
+          },
+          {
+            "value": 520302,
+            "label": "红花岗区"
+          },
+          {
+            "value": 520304,
+            "label": "播州区"
+          },
+          {
+            "value": 520381,
+            "label": "赤水市"
+          },
+          {
+            "value": 520382,
+            "label": "仁怀市"
+          },
+          {
+            "value": 520322,
+            "label": "桐梓县"
+          },
+          {
+            "value": 520323,
+            "label": "绥阳县"
+          },
+          {
+            "value": 520324,
+            "label": "正安县"
+          },
+          {
+            "value": 520327,
+            "label": "凤冈县"
+          },
+          {
+            "value": 520328,
+            "label": "湄潭县"
+          },
+          {
+            "value": 520329,
+            "label": "余庆县"
+          },
+          {
+            "value": 520330,
+            "label": "习水县"
+          },
+          {
+            "value": 520325,
+            "label": "道真仡佬族苗族自治县"
+          },
+          {
+            "value": 520326,
+            "label": "务川仡佬族苗族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2508,
+        "value": 520400,
+        "label": "安顺市",
+        "children": [
+          {
+            "value": 520402,
+            "label": "西秀区"
+          },
+          {
+            "value": 520403,
+            "label": "平坝区"
+          },
+          {
+            "value": 520422,
+            "label": "普定县"
+          },
+          {
+            "value": 520423,
+            "label": "镇宁布依族苗族自治县"
+          },
+          {
+            "value": 520424,
+            "label": "关岭布依族苗族自治县"
+          },
+          {
+            "value": 520425,
+            "label": "紫云苗族布依族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2515,
+        "value": 520500,
+        "label": "毕节市",
+        "children": [
+          {
+            "value": 520502,
+            "label": "七星关区"
+          },
+          {
+            "value": 520521,
+            "label": "大方县"
+          },
+          {
+            "value": 520522,
+            "label": "黔西县"
+          },
+          {
+            "value": 520523,
+            "label": "金沙县"
+          },
+          {
+            "value": 520524,
+            "label": "织金县"
+          },
+          {
+            "value": 520525,
+            "label": "纳雍县"
+          },
+          {
+            "value": 520527,
+            "label": "赫章县"
+          },
+          {
+            "value": 520526,
+            "label": "威宁彝族回族苗族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2524,
+        "value": 520600,
+        "label": "铜仁市",
+        "children": [
+          {
+            "value": 520602,
+            "label": "碧江区"
+          },
+          {
+            "value": 520603,
+            "label": "万山区"
+          },
+          {
+            "value": 520621,
+            "label": "江口县"
+          },
+          {
+            "value": 520623,
+            "label": "石阡县"
+          },
+          {
+            "value": 520624,
+            "label": "思南县"
+          },
+          {
+            "value": 520626,
+            "label": "德江县"
+          },
+          {
+            "value": 520622,
+            "label": "玉屏侗族自治县"
+          },
+          {
+            "value": 520625,
+            "label": "印江土家族苗族自治县"
+          },
+          {
+            "value": 520627,
+            "label": "沿河土家族自治县"
+          },
+          {
+            "value": 520628,
+            "label": "松桃苗族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2535,
+        "value": 522300,
+        "label": "黔西南布依族苗族自治州",
+        "children": [
+          {
+            "value": 522301,
+            "label": "兴义市"
+          },
+          {
+            "value": 522322,
+            "label": "兴仁县"
+          },
+          {
+            "value": 522323,
+            "label": "普安县"
+          },
+          {
+            "value": 522324,
+            "label": "晴隆县"
+          },
+          {
+            "value": 522325,
+            "label": "贞丰县"
+          },
+          {
+            "value": 522326,
+            "label": "望谟县"
+          },
+          {
+            "value": 522327,
+            "label": "册亨县"
+          },
+          {
+            "value": 522328,
+            "label": "安龙县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2544,
+        "value": 522600,
+        "label": "黔东南苗族侗族自治州",
+        "children": [
+          {
+            "value": 522601,
+            "label": "凯里市"
+          },
+          {
+            "value": 522622,
+            "label": "黄平县"
+          },
+          {
+            "value": 522623,
+            "label": "施秉县"
+          },
+          {
+            "value": 522624,
+            "label": "三穗县"
+          },
+          {
+            "value": 522625,
+            "label": "镇远县"
+          },
+          {
+            "value": 522626,
+            "label": "岑巩县"
+          },
+          {
+            "value": 522627,
+            "label": "天柱县"
+          },
+          {
+            "value": 522628,
+            "label": "锦屏县"
+          },
+          {
+            "value": 522629,
+            "label": "剑河县"
+          },
+          {
+            "value": 522630,
+            "label": "台江县"
+          },
+          {
+            "value": 522631,
+            "label": "黎平县"
+          },
+          {
+            "value": 522632,
+            "label": "榕江县"
+          },
+          {
+            "value": 522633,
+            "label": "从江县"
+          },
+          {
+            "value": 522634,
+            "label": "雷山县"
+          },
+          {
+            "value": 522635,
+            "label": "麻江县"
+          },
+          {
+            "value": 522636,
+            "label": "丹寨县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2561,
+        "value": 522700,
+        "label": "黔南布依族苗族自治州",
+        "children": [
+          {
+            "value": 522701,
+            "label": "都匀市"
+          },
+          {
+            "value": 522702,
+            "label": "福泉市"
+          },
+          {
+            "value": 522722,
+            "label": "荔波县"
+          },
+          {
+            "value": 522723,
+            "label": "贵定县"
+          },
+          {
+            "value": 522725,
+            "label": "瓮安县"
+          },
+          {
+            "value": 522726,
+            "label": "独山县"
+          },
+          {
+            "value": 522727,
+            "label": "平塘县"
+          },
+          {
+            "value": 522728,
+            "label": "罗甸县"
+          },
+          {
+            "value": 522729,
+            "label": "长顺县"
+          },
+          {
+            "value": 522730,
+            "label": "龙里县"
+          },
+          {
+            "value": 522731,
+            "label": "惠水县"
+          },
+          {
+            "value": 522732,
+            "label": "三都水族自治县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 520000,
+    "label": "贵州省",
+    "expand": "true"
+  },
+  {
+    "id": 2574,
+    "children": [
+      {
+        "id": 2575,
+        "value": 530100,
+        "label": "昆明市",
+        "children": [
+          {
+            "value": 530114,
+            "label": "呈贡区"
+          },
+          {
+            "value": 530102,
+            "label": "五华区"
+          },
+          {
+            "value": 530103,
+            "label": "盘龙区"
+          },
+          {
+            "value": 530111,
+            "label": "官渡区"
+          },
+          {
+            "value": 530112,
+            "label": "西山区"
+          },
+          {
+            "value": 530113,
+            "label": "东川区"
+          },
+          {
+            "value": 530115,
+            "label": "晋宁区"
+          },
+          {
+            "value": 530181,
+            "label": "安宁市"
+          },
+          {
+            "value": 530124,
+            "label": "富民县"
+          },
+          {
+            "value": 530125,
+            "label": "宜良县"
+          },
+          {
+            "value": 530127,
+            "label": "嵩明县"
+          },
+          {
+            "value": 530126,
+            "label": "石林彝族自治县"
+          },
+          {
+            "value": 530128,
+            "label": "禄劝彝族苗族自治县"
+          },
+          {
+            "value": 530129,
+            "label": "寻甸回族彝族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2590,
+        "value": 530300,
+        "label": "曲靖市",
+        "children": [
+          {
+            "value": 530302,
+            "label": "麒麟区"
+          },
+          {
+            "value": 530303,
+            "label": "沾益区"
+          },
+          {
+            "value": 530381,
+            "label": "宣威市"
+          },
+          {
+            "value": 530321,
+            "label": "马龙县"
+          },
+          {
+            "value": 530322,
+            "label": "陆良县"
+          },
+          {
+            "value": 530323,
+            "label": "师宗县"
+          },
+          {
+            "value": 530324,
+            "label": "罗平县"
+          },
+          {
+            "value": 530325,
+            "label": "富源县"
+          },
+          {
+            "value": 530326,
+            "label": "会泽县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2600,
+        "value": 530400,
+        "label": "玉溪市",
+        "children": [
+          {
+            "value": 530402,
+            "label": "红塔区"
+          },
+          {
+            "value": 530403,
+            "label": "江川区"
+          },
+          {
+            "value": 530422,
+            "label": "澄江县"
+          },
+          {
+            "value": 530423,
+            "label": "通海县"
+          },
+          {
+            "value": 530424,
+            "label": "华宁县"
+          },
+          {
+            "value": 530425,
+            "label": "易门县"
+          },
+          {
+            "value": 530426,
+            "label": "峨山彝族自治县"
+          },
+          {
+            "value": 530427,
+            "label": "新平彝族傣族自治县"
+          },
+          {
+            "value": 530428,
+            "label": "元江哈尼族彝族傣族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2610,
+        "value": 530500,
+        "label": "保山市",
+        "children": [
+          {
+            "value": 530502,
+            "label": "隆阳区"
+          },
+          {
+            "value": 530581,
+            "label": "腾冲市"
+          },
+          {
+            "value": 530521,
+            "label": "施甸县"
+          },
+          {
+            "value": 530523,
+            "label": "龙陵县"
+          },
+          {
+            "value": 530524,
+            "label": "昌宁县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2616,
+        "value": 530600,
+        "label": "昭通市",
+        "children": [
+          {
+            "value": 530602,
+            "label": "昭阳区"
+          },
+          {
+            "value": 530621,
+            "label": "鲁甸县"
+          },
+          {
+            "value": 530622,
+            "label": "巧家县"
+          },
+          {
+            "value": 530623,
+            "label": "盐津县"
+          },
+          {
+            "value": 530624,
+            "label": "大关县"
+          },
+          {
+            "value": 530625,
+            "label": "永善县"
+          },
+          {
+            "value": 530626,
+            "label": "绥江县"
+          },
+          {
+            "value": 530627,
+            "label": "镇雄县"
+          },
+          {
+            "value": 530628,
+            "label": "彝良县"
+          },
+          {
+            "value": 530629,
+            "label": "威信县"
+          },
+          {
+            "value": 530630,
+            "label": "水富县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2628,
+        "value": 530700,
+        "label": "丽江市",
+        "children": [
+          {
+            "value": 530702,
+            "label": "古城区"
+          },
+          {
+            "value": 530722,
+            "label": "永胜县"
+          },
+          {
+            "value": 530723,
+            "label": "华坪县"
+          },
+          {
+            "value": 530721,
+            "label": "玉龙纳西族自治县"
+          },
+          {
+            "value": 530724,
+            "label": "宁蒗彝族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2634,
+        "value": 530800,
+        "label": "普洱市",
+        "children": [
+          {
+            "value": 530802,
+            "label": "思茅区"
+          },
+          {
+            "value": 530821,
+            "label": "宁洱哈尼族彝族自治县"
+          },
+          {
+            "value": 530822,
+            "label": "墨江哈尼族自治县"
+          },
+          {
+            "value": 530823,
+            "label": "景东彝族自治县"
+          },
+          {
+            "value": 530824,
+            "label": "景谷傣族彝族自治县"
+          },
+          {
+            "value": 530825,
+            "label": "镇沅彝族哈尼族拉祜族自治县"
+          },
+          {
+            "value": 530826,
+            "label": "江城哈尼族彝族自治县"
+          },
+          {
+            "value": 530827,
+            "label": "孟连傣族拉祜族佤族自治县"
+          },
+          {
+            "value": 530828,
+            "label": "澜沧拉祜族自治县"
+          },
+          {
+            "value": 530829,
+            "label": "西盟佤族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2645,
+        "value": 530900,
+        "label": "临沧市",
+        "children": [
+          {
+            "value": 530902,
+            "label": "临翔区"
+          },
+          {
+            "value": 530921,
+            "label": "凤庆县"
+          },
+          {
+            "value": 530922,
+            "label": "云县"
+          },
+          {
+            "value": 530923,
+            "label": "永德县"
+          },
+          {
+            "value": 530924,
+            "label": "镇康县"
+          },
+          {
+            "value": 530925,
+            "label": "双江拉祜族佤族布朗族傣族自治县"
+          },
+          {
+            "value": 530926,
+            "label": "耿马傣族佤族自治县"
+          },
+          {
+            "value": 530927,
+            "label": "沧源佤族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2654,
+        "value": 532300,
+        "label": "楚雄彝族自治州",
+        "children": [
+          {
+            "value": 532301,
+            "label": "楚雄市"
+          },
+          {
+            "value": 532322,
+            "label": "双柏县"
+          },
+          {
+            "value": 532323,
+            "label": "牟定县"
+          },
+          {
+            "value": 532324,
+            "label": "南华县"
+          },
+          {
+            "value": 532325,
+            "label": "姚安县"
+          },
+          {
+            "value": 532326,
+            "label": "大姚县"
+          },
+          {
+            "value": 532327,
+            "label": "永仁县"
+          },
+          {
+            "value": 532328,
+            "label": "元谋县"
+          },
+          {
+            "value": 532329,
+            "label": "武定县"
+          },
+          {
+            "value": 532331,
+            "label": "禄丰县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2665,
+        "value": 532500,
+        "label": "红河哈尼族彝族自治州",
+        "children": [
+          {
+            "value": 532503,
+            "label": "蒙自市"
+          },
+          {
+            "value": 532501,
+            "label": "个旧市"
+          },
+          {
+            "value": 532502,
+            "label": "开远市"
+          },
+          {
+            "value": 532504,
+            "label": "弥勒市"
+          },
+          {
+            "value": 532524,
+            "label": "建水县"
+          },
+          {
+            "value": 532525,
+            "label": "石屏县"
+          },
+          {
+            "value": 532527,
+            "label": "泸西县"
+          },
+          {
+            "value": 532528,
+            "label": "元阳县"
+          },
+          {
+            "value": 532529,
+            "label": "红河县"
+          },
+          {
+            "value": 532531,
+            "label": "绿春县"
+          },
+          {
+            "value": 532523,
+            "label": "屏边苗族自治县"
+          },
+          {
+            "value": 532530,
+            "label": "金平苗族瑶族傣族自治县"
+          },
+          {
+            "value": 532532,
+            "label": "河口瑶族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2679,
+        "value": 532600,
+        "label": "文山壮族苗族自治州",
+        "children": [
+          {
+            "value": 532601,
+            "label": "文山市"
+          },
+          {
+            "value": 532622,
+            "label": "砚山县"
+          },
+          {
+            "value": 532623,
+            "label": "西畴县"
+          },
+          {
+            "value": 532624,
+            "label": "麻栗坡县"
+          },
+          {
+            "value": 532625,
+            "label": "马关县"
+          },
+          {
+            "value": 532626,
+            "label": "丘北县"
+          },
+          {
+            "value": 532627,
+            "label": "广南县"
+          },
+          {
+            "value": 532628,
+            "label": "富宁县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2688,
+        "value": 532800,
+        "label": "西双版纳傣族自治州",
+        "children": [
+          {
+            "value": 532801,
+            "label": "景洪市"
+          },
+          {
+            "value": 532822,
+            "label": "勐海县"
+          },
+          {
+            "value": 532823,
+            "label": "勐腊县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2692,
+        "value": 532900,
+        "label": "大理白族自治州",
+        "children": [
+          {
+            "value": 532901,
+            "label": "大理市"
+          },
+          {
+            "value": 532923,
+            "label": "祥云县"
+          },
+          {
+            "value": 532924,
+            "label": "宾川县"
+          },
+          {
+            "value": 532925,
+            "label": "弥渡县"
+          },
+          {
+            "value": 532928,
+            "label": "永平县"
+          },
+          {
+            "value": 532929,
+            "label": "云龙县"
+          },
+          {
+            "value": 532930,
+            "label": "洱源县"
+          },
+          {
+            "value": 532931,
+            "label": "剑川县"
+          },
+          {
+            "value": 532932,
+            "label": "鹤庆县"
+          },
+          {
+            "value": 532922,
+            "label": "漾濞彝族自治县"
+          },
+          {
+            "value": 532926,
+            "label": "南涧彝族自治县"
+          },
+          {
+            "value": 532927,
+            "label": "巍山彝族回族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2705,
+        "value": 533100,
+        "label": "德宏傣族景颇族自治州",
+        "children": [
+          {
+            "value": 533103,
+            "label": "芒市"
+          },
+          {
+            "value": 533102,
+            "label": "瑞丽市"
+          },
+          {
+            "value": 533122,
+            "label": "梁河县"
+          },
+          {
+            "value": 533123,
+            "label": "盈江县"
+          },
+          {
+            "value": 533124,
+            "label": "陇川县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2711,
+        "value": 533300,
+        "label": "怒江傈僳族自治州",
+        "children": [
+          {
+            "value": 533301,
+            "label": "泸水市"
+          },
+          {
+            "value": 533323,
+            "label": "福贡县"
+          },
+          {
+            "value": 533324,
+            "label": "贡山独龙族怒族自治县"
+          },
+          {
+            "value": 533325,
+            "label": "兰坪白族普米族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2716,
+        "value": 533400,
+        "label": "迪庆藏族自治州",
+        "children": [
+          {
+            "value": 533401,
+            "label": "香格里拉市"
+          },
+          {
+            "value": 533422,
+            "label": "德钦县"
+          },
+          {
+            "value": 533423,
+            "label": "维西傈僳族自治县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 530000,
+    "label": "云南省",
+    "expand": "true"
+  },
+  {
+    "id": 2720,
+    "children": [
+      {
+        "id": 2721,
+        "value": 540100,
+        "label": "拉萨市",
+        "children": [
+          {
+            "value": 540102,
+            "label": "城关区"
+          },
+          {
+            "value": 540121,
+            "label": "林周县"
+          },
+          {
+            "value": 540122,
+            "label": "当雄县"
+          },
+          {
+            "value": 540123,
+            "label": "尼木县"
+          },
+          {
+            "value": 540124,
+            "label": "曲水县"
+          },
+          {
+            "value": 540103,
+            "label": "堆龙德庆区"
+          },
+          {
+            "value": 540126,
+            "label": "达孜县"
+          },
+          {
+            "value": 540127,
+            "label": "墨竹工卡县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2730,
+        "value": 540200,
+        "label": "日喀则市",
+        "children": [
+          {
+            "value": 540202,
+            "label": "桑珠孜区"
+          },
+          {
+            "value": 540221,
+            "label": "南木林县"
+          },
+          {
+            "value": 540222,
+            "label": "江孜县"
+          },
+          {
+            "value": 540223,
+            "label": "定日县"
+          },
+          {
+            "value": 540224,
+            "label": "萨迦县"
+          },
+          {
+            "value": 540225,
+            "label": "拉孜县"
+          },
+          {
+            "value": 540226,
+            "label": "昂仁县"
+          },
+          {
+            "value": 540227,
+            "label": "谢通门县"
+          },
+          {
+            "value": 540228,
+            "label": "白朗县"
+          },
+          {
+            "value": 540229,
+            "label": "仁布县"
+          },
+          {
+            "value": 540230,
+            "label": "康马县"
+          },
+          {
+            "value": 540231,
+            "label": "定结县"
+          },
+          {
+            "value": 540232,
+            "label": "仲巴县"
+          },
+          {
+            "value": 540233,
+            "label": "亚东县"
+          },
+          {
+            "value": 540234,
+            "label": "吉隆县"
+          },
+          {
+            "value": 540235,
+            "label": "聂拉木县"
+          },
+          {
+            "value": 540236,
+            "label": "萨嘎县"
+          },
+          {
+            "value": 540237,
+            "label": "岗巴县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2749,
+        "value": 540300,
+        "label": "昌都市",
+        "children": [
+          {
+            "value": 540302,
+            "label": "卡若区"
+          },
+          {
+            "value": 540321,
+            "label": "江达县"
+          },
+          {
+            "value": 540322,
+            "label": "贡觉县"
+          },
+          {
+            "value": 540323,
+            "label": "类乌齐县"
+          },
+          {
+            "value": 540324,
+            "label": "丁青县"
+          },
+          {
+            "value": 540325,
+            "label": "察雅县"
+          },
+          {
+            "value": 540326,
+            "label": "八宿县"
+          },
+          {
+            "value": 540327,
+            "label": "左贡县"
+          },
+          {
+            "value": 540328,
+            "label": "芒康县"
+          },
+          {
+            "value": 540329,
+            "label": "洛隆县"
+          },
+          {
+            "value": 540330,
+            "label": "边坝县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2761,
+        "value": 540400,
+        "label": "林芝市",
+        "children": [
+          {
+            "value": 540402,
+            "label": "巴宜区"
+          },
+          {
+            "value": 540421,
+            "label": "工布江达县"
+          },
+          {
+            "value": 540422,
+            "label": "米林县"
+          },
+          {
+            "value": 540423,
+            "label": "墨脱县"
+          },
+          {
+            "value": 540424,
+            "label": "波密县"
+          },
+          {
+            "value": 540425,
+            "label": "察隅县"
+          },
+          {
+            "value": 540426,
+            "label": "朗县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2769,
+        "value": 540500,
+        "label": "山南市",
+        "children": [
+          {
+            "value": 540502,
+            "label": "乃东区"
+          },
+          {
+            "value": 540521,
+            "label": "扎囊县"
+          },
+          {
+            "value": 540522,
+            "label": "贡嘎县"
+          },
+          {
+            "value": 540523,
+            "label": "桑日县"
+          },
+          {
+            "value": 540524,
+            "label": "琼结县"
+          },
+          {
+            "value": 540525,
+            "label": "曲松县"
+          },
+          {
+            "value": 540526,
+            "label": "措美县"
+          },
+          {
+            "value": 540527,
+            "label": "洛扎县"
+          },
+          {
+            "value": 540528,
+            "label": "加查县"
+          },
+          {
+            "value": 540529,
+            "label": "隆子县"
+          },
+          {
+            "value": 540530,
+            "label": "错那县"
+          },
+          {
+            "value": 540531,
+            "label": "浪卡子县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2782,
+        "value": 542400,
+        "label": "那曲地区",
+        "children": [
+          {
+            "value": 542421,
+            "label": "那曲县"
+          },
+          {
+            "value": 542422,
+            "label": "嘉黎县"
+          },
+          {
+            "value": 542423,
+            "label": "比如县"
+          },
+          {
+            "value": 542424,
+            "label": "聂荣县"
+          },
+          {
+            "value": 542425,
+            "label": "安多县"
+          },
+          {
+            "value": 542426,
+            "label": "申扎县"
+          },
+          {
+            "value": 542427,
+            "label": "索县"
+          },
+          {
+            "value": 542428,
+            "label": "班戈县"
+          },
+          {
+            "value": 542429,
+            "label": "巴青县"
+          },
+          {
+            "value": 542430,
+            "label": "尼玛县"
+          },
+          {
+            "value": 542431,
+            "label": "双湖县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2794,
+        "value": 542500,
+        "label": "阿里地区",
+        "children": [
+          {
+            "value": 542523,
+            "label": "噶尔县"
+          },
+          {
+            "value": 542521,
+            "label": "普兰县"
+          },
+          {
+            "value": 542522,
+            "label": "札达县"
+          },
+          {
+            "value": 542524,
+            "label": "日土县"
+          },
+          {
+            "value": 542525,
+            "label": "革吉县"
+          },
+          {
+            "value": 542526,
+            "label": "改则县"
+          },
+          {
+            "value": 542527,
+            "label": "措勤县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 540000,
+    "label": "西藏自治区",
+    "expand": "true"
+  },
+  {
+    "id": 2802,
+    "children": [
+      {
+        "id": 2803,
+        "value": 610100,
+        "label": "西安市",
+        "children": [
+          {
+            "value": 610112,
+            "label": "未央区"
+          },
+          {
+            "value": 610102,
+            "label": "新城区"
+          },
+          {
+            "value": 610103,
+            "label": "碑林区"
+          },
+          {
+            "value": 610104,
+            "label": "莲湖区"
+          },
+          {
+            "value": 610111,
+            "label": "灞桥区"
+          },
+          {
+            "value": 610113,
+            "label": "雁塔区"
+          },
+          {
+            "value": 610114,
+            "label": "阎良区"
+          },
+          {
+            "value": 610115,
+            "label": "临潼区"
+          },
+          {
+            "value": 610116,
+            "label": "长安区"
+          },
+          {
+            "value": 610117,
+            "label": "高陵区"
+          },
+          {
+            "value": 610118,
+            "label": "鄠邑区"
+          },
+          {
+            "value": 610122,
+            "label": "蓝田县"
+          },
+          {
+            "value": 610124,
+            "label": "周至县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2817,
+        "value": 610200,
+        "label": "铜川市",
+        "children": [
+          {
+            "value": 610204,
+            "label": "耀州区"
+          },
+          {
+            "value": 610202,
+            "label": "王益区"
+          },
+          {
+            "value": 610203,
+            "label": "印台区"
+          },
+          {
+            "value": 610222,
+            "label": "宜君县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2822,
+        "value": 610300,
+        "label": "宝鸡市",
+        "children": [
+          {
+            "value": 610303,
+            "label": "金台区"
+          },
+          {
+            "value": 610302,
+            "label": "渭滨区"
+          },
+          {
+            "value": 610304,
+            "label": "陈仓区"
+          },
+          {
+            "value": 610322,
+            "label": "凤翔县"
+          },
+          {
+            "value": 610323,
+            "label": "岐山县"
+          },
+          {
+            "value": 610324,
+            "label": "扶风县"
+          },
+          {
+            "value": 610326,
+            "label": "眉县"
+          },
+          {
+            "value": 610327,
+            "label": "陇县"
+          },
+          {
+            "value": 610328,
+            "label": "千阳县"
+          },
+          {
+            "value": 610329,
+            "label": "麟游县"
+          },
+          {
+            "value": 610330,
+            "label": "凤县"
+          },
+          {
+            "value": 610331,
+            "label": "太白县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2835,
+        "value": 610400,
+        "label": "咸阳市",
+        "children": [
+          {
+            "value": 610402,
+            "label": "秦都区"
+          },
+          {
+            "value": 610403,
+            "label": "杨陵区"
+          },
+          {
+            "value": 610404,
+            "label": "渭城区"
+          },
+          {
+            "value": 610481,
+            "label": "兴平市"
+          },
+          {
+            "value": 610422,
+            "label": "三原县"
+          },
+          {
+            "value": 610423,
+            "label": "泾阳县"
+          },
+          {
+            "value": 610424,
+            "label": "乾县"
+          },
+          {
+            "value": 610425,
+            "label": "礼泉县"
+          },
+          {
+            "value": 610426,
+            "label": "永寿县"
+          },
+          {
+            "value": 610427,
+            "label": "彬县"
+          },
+          {
+            "value": 610428,
+            "label": "长武县"
+          },
+          {
+            "value": 610429,
+            "label": "旬邑县"
+          },
+          {
+            "value": 610430,
+            "label": "淳化县"
+          },
+          {
+            "value": 610431,
+            "label": "武功县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2850,
+        "value": 610500,
+        "label": "渭南市",
+        "children": [
+          {
+            "value": 610502,
+            "label": "临渭区"
+          },
+          {
+            "value": 610581,
+            "label": "韩城市"
+          },
+          {
+            "value": 610582,
+            "label": "华阴市"
+          },
+          {
+            "value": 610503,
+            "label": "华州区"
+          },
+          {
+            "value": 610522,
+            "label": "潼关县"
+          },
+          {
+            "value": 610523,
+            "label": "大荔县"
+          },
+          {
+            "value": 610524,
+            "label": "合阳县"
+          },
+          {
+            "value": 610525,
+            "label": "澄城县"
+          },
+          {
+            "value": 610526,
+            "label": "蒲城县"
+          },
+          {
+            "value": 610527,
+            "label": "白水县"
+          },
+          {
+            "value": 610528,
+            "label": "富平县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2862,
+        "value": 610600,
+        "label": "延安市",
+        "children": [
+          {
+            "value": 610602,
+            "label": "宝塔区"
+          },
+          {
+            "value": 610603,
+            "label": "安塞区"
+          },
+          {
+            "value": 610621,
+            "label": "延长县"
+          },
+          {
+            "value": 610622,
+            "label": "延川县"
+          },
+          {
+            "value": 610623,
+            "label": "子长县"
+          },
+          {
+            "value": 610625,
+            "label": "志丹县"
+          },
+          {
+            "value": 610626,
+            "label": "吴起县"
+          },
+          {
+            "value": 610627,
+            "label": "甘泉县"
+          },
+          {
+            "value": 610628,
+            "label": "富县"
+          },
+          {
+            "value": 610629,
+            "label": "洛川县"
+          },
+          {
+            "value": 610630,
+            "label": "宜川县"
+          },
+          {
+            "value": 610631,
+            "label": "黄龙县"
+          },
+          {
+            "value": 610632,
+            "label": "黄陵县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2876,
+        "value": 610700,
+        "label": "汉中市",
+        "children": [
+          {
+            "value": 610702,
+            "label": "汉台区"
+          },
+          {
+            "value": 610721,
+            "label": "南郑县"
+          },
+          {
+            "value": 610722,
+            "label": "城固县"
+          },
+          {
+            "value": 610723,
+            "label": "洋县"
+          },
+          {
+            "value": 610724,
+            "label": "西乡县"
+          },
+          {
+            "value": 610725,
+            "label": "勉县"
+          },
+          {
+            "value": 610726,
+            "label": "宁强县"
+          },
+          {
+            "value": 610727,
+            "label": "略阳县"
+          },
+          {
+            "value": 610728,
+            "label": "镇巴县"
+          },
+          {
+            "value": 610729,
+            "label": "留坝县"
+          },
+          {
+            "value": 610730,
+            "label": "佛坪县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2888,
+        "value": 610800,
+        "label": "榆林市",
+        "children": [
+          {
+            "value": 610802,
+            "label": "榆阳区"
+          },
+          {
+            "value": 610881,
+            "label": "神木市"
+          },
+          {
+            "value": 610822,
+            "label": "府谷县"
+          },
+          {
+            "value": 610803,
+            "label": "横山区"
+          },
+          {
+            "value": 610824,
+            "label": "靖边县"
+          },
+          {
+            "value": 610825,
+            "label": "定边县"
+          },
+          {
+            "value": 610826,
+            "label": "绥德县"
+          },
+          {
+            "value": 610827,
+            "label": "米脂县"
+          },
+          {
+            "value": 610828,
+            "label": "佳县"
+          },
+          {
+            "value": 610829,
+            "label": "吴堡县"
+          },
+          {
+            "value": 610830,
+            "label": "清涧县"
+          },
+          {
+            "value": 610831,
+            "label": "子洲县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2901,
+        "value": 610900,
+        "label": "安康市",
+        "children": [
+          {
+            "value": 610902,
+            "label": "汉滨区"
+          },
+          {
+            "value": 610921,
+            "label": "汉阴县"
+          },
+          {
+            "value": 610922,
+            "label": "石泉县"
+          },
+          {
+            "value": 610923,
+            "label": "宁陕县"
+          },
+          {
+            "value": 610924,
+            "label": "紫阳县"
+          },
+          {
+            "value": 610925,
+            "label": "岚皋县"
+          },
+          {
+            "value": 610926,
+            "label": "平利县"
+          },
+          {
+            "value": 610927,
+            "label": "镇坪县"
+          },
+          {
+            "value": 610928,
+            "label": "旬阳县"
+          },
+          {
+            "value": 610929,
+            "label": "白河县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2912,
+        "value": 611000,
+        "label": "商洛市",
+        "children": [
+          {
+            "value": 611002,
+            "label": "商州区"
+          },
+          {
+            "value": 611021,
+            "label": "洛南县"
+          },
+          {
+            "value": 611022,
+            "label": "丹凤县"
+          },
+          {
+            "value": 611023,
+            "label": "商南县"
+          },
+          {
+            "value": 611024,
+            "label": "山阳县"
+          },
+          {
+            "value": 611025,
+            "label": "镇安县"
+          },
+          {
+            "value": 611026,
+            "label": "柞水县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 610000,
+    "label": "陕西省",
+    "expand": "true"
+  },
+  {
+    "id": 2920,
+    "children": [
+      {
+        "id": 2921,
+        "value": 620100,
+        "label": "兰州市",
+        "children": [
+          {
+            "value": 620102,
+            "label": "城关区"
+          },
+          {
+            "value": 620103,
+            "label": "七里河区"
+          },
+          {
+            "value": 620104,
+            "label": "西固区"
+          },
+          {
+            "value": 620105,
+            "label": "安宁区"
+          },
+          {
+            "value": 620111,
+            "label": "红古区"
+          },
+          {
+            "value": 620121,
+            "label": "永登县"
+          },
+          {
+            "value": 620122,
+            "label": "皋兰县"
+          },
+          {
+            "value": 620123,
+            "label": "榆中县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2930,
+        "value": 620200,
+        "label": "嘉峪关市"
+      },
+      {
+        "id": 2931,
+        "value": 620300,
+        "label": "金昌市",
+        "children": [
+          {
+            "value": 620302,
+            "label": "金川区"
+          },
+          {
+            "value": 620321,
+            "label": "永昌县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2934,
+        "value": 620400,
+        "label": "白银市",
+        "children": [
+          {
+            "value": 620402,
+            "label": "白银区"
+          },
+          {
+            "value": 620403,
+            "label": "平川区"
+          },
+          {
+            "value": 620421,
+            "label": "靖远县"
+          },
+          {
+            "value": 620422,
+            "label": "会宁县"
+          },
+          {
+            "value": 620423,
+            "label": "景泰县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2940,
+        "value": 620500,
+        "label": "天水市",
+        "children": [
+          {
+            "value": 620502,
+            "label": "秦州区"
+          },
+          {
+            "value": 620503,
+            "label": "麦积区"
+          },
+          {
+            "value": 620521,
+            "label": "清水县"
+          },
+          {
+            "value": 620522,
+            "label": "秦安县"
+          },
+          {
+            "value": 620523,
+            "label": "甘谷县"
+          },
+          {
+            "value": 620524,
+            "label": "武山县"
+          },
+          {
+            "value": 620525,
+            "label": "张家川回族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2948,
+        "value": 620600,
+        "label": "武威市",
+        "children": [
+          {
+            "value": 620602,
+            "label": "凉州区"
+          },
+          {
+            "value": 620621,
+            "label": "民勤县"
+          },
+          {
+            "value": 620622,
+            "label": "古浪县"
+          },
+          {
+            "value": 620623,
+            "label": "天祝藏族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2953,
+        "value": 620700,
+        "label": "张掖市",
+        "children": [
+          {
+            "value": 620702,
+            "label": "甘州区"
+          },
+          {
+            "value": 620722,
+            "label": "民乐县"
+          },
+          {
+            "value": 620723,
+            "label": "临泽县"
+          },
+          {
+            "value": 620724,
+            "label": "高台县"
+          },
+          {
+            "value": 620725,
+            "label": "山丹县"
+          },
+          {
+            "value": 620721,
+            "label": "肃南裕固族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2960,
+        "value": 620800,
+        "label": "平凉市",
+        "children": [
+          {
+            "value": 620802,
+            "label": "崆峒区"
+          },
+          {
+            "value": 620821,
+            "label": "泾川县"
+          },
+          {
+            "value": 620822,
+            "label": "灵台县"
+          },
+          {
+            "value": 620823,
+            "label": "崇信县"
+          },
+          {
+            "value": 620824,
+            "label": "华亭县"
+          },
+          {
+            "value": 620825,
+            "label": "庄浪县"
+          },
+          {
+            "value": 620826,
+            "label": "静宁县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2968,
+        "value": 620900,
+        "label": "酒泉市",
+        "children": [
+          {
+            "value": 620902,
+            "label": "肃州区"
+          },
+          {
+            "value": 620981,
+            "label": "玉门市"
+          },
+          {
+            "value": 620982,
+            "label": "敦煌市"
+          },
+          {
+            "value": 620921,
+            "label": "金塔县"
+          },
+          {
+            "value": 620922,
+            "label": "瓜州县"
+          },
+          {
+            "value": 620923,
+            "label": "肃北蒙古族自治县"
+          },
+          {
+            "value": 620924,
+            "label": "阿克塞哈萨克族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2976,
+        "value": 621000,
+        "label": "庆阳市",
+        "children": [
+          {
+            "value": 621002,
+            "label": "西峰区"
+          },
+          {
+            "value": 621021,
+            "label": "庆城县"
+          },
+          {
+            "value": 621022,
+            "label": "环县"
+          },
+          {
+            "value": 621023,
+            "label": "华池县"
+          },
+          {
+            "value": 621024,
+            "label": "合水县"
+          },
+          {
+            "value": 621025,
+            "label": "正宁县"
+          },
+          {
+            "value": 621026,
+            "label": "宁县"
+          },
+          {
+            "value": 621027,
+            "label": "镇原县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2985,
+        "value": 621100,
+        "label": "定西市",
+        "children": [
+          {
+            "value": 621102,
+            "label": "安定区"
+          },
+          {
+            "value": 621121,
+            "label": "通渭县"
+          },
+          {
+            "value": 621122,
+            "label": "陇西县"
+          },
+          {
+            "value": 621123,
+            "label": "渭源县"
+          },
+          {
+            "value": 621124,
+            "label": "临洮县"
+          },
+          {
+            "value": 621125,
+            "label": "漳县"
+          },
+          {
+            "value": 621126,
+            "label": "岷县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 2993,
+        "value": 621200,
+        "label": "陇南市",
+        "children": [
+          {
+            "value": 621202,
+            "label": "武都区"
+          },
+          {
+            "value": 621221,
+            "label": "成县"
+          },
+          {
+            "value": 621222,
+            "label": "文县"
+          },
+          {
+            "value": 621223,
+            "label": "宕昌县"
+          },
+          {
+            "value": 621224,
+            "label": "康县"
+          },
+          {
+            "value": 621225,
+            "label": "西和县"
+          },
+          {
+            "value": 621226,
+            "label": "礼县"
+          },
+          {
+            "value": 621227,
+            "label": "徽县"
+          },
+          {
+            "value": 621228,
+            "label": "两当县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3003,
+        "value": 622900,
+        "label": "临夏回族自治州",
+        "children": [
+          {
+            "value": 622901,
+            "label": "临夏市"
+          },
+          {
+            "value": 622921,
+            "label": "临夏县"
+          },
+          {
+            "value": 622922,
+            "label": "康乐县"
+          },
+          {
+            "value": 622923,
+            "label": "永靖县"
+          },
+          {
+            "value": 622924,
+            "label": "广河县"
+          },
+          {
+            "value": 622925,
+            "label": "和政县"
+          },
+          {
+            "value": 622926,
+            "label": "东乡族自治县"
+          },
+          {
+            "value": 622927,
+            "label": "积石山保安族东乡族撒拉族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3012,
+        "value": 623000,
+        "label": "甘南藏族自治州",
+        "children": [
+          {
+            "value": 623001,
+            "label": "合作市"
+          },
+          {
+            "value": 623021,
+            "label": "临潭县"
+          },
+          {
+            "value": 623022,
+            "label": "卓尼县"
+          },
+          {
+            "value": 623023,
+            "label": "舟曲县"
+          },
+          {
+            "value": 623024,
+            "label": "迭部县"
+          },
+          {
+            "value": 623025,
+            "label": "玛曲县"
+          },
+          {
+            "value": 623026,
+            "label": "碌曲县"
+          },
+          {
+            "value": 623027,
+            "label": "夏河县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 620000,
+    "label": "甘肃省",
+    "expand": "true"
+  },
+  {
+    "id": 3021,
+    "children": [
+      {
+        "id": 3022,
+        "value": 630100,
+        "label": "西宁市",
+        "children": [
+          {
+            "value": 630103,
+            "label": "城中区"
+          },
+          {
+            "value": 630102,
+            "label": "城东区"
+          },
+          {
+            "value": 630104,
+            "label": "城西区"
+          },
+          {
+            "value": 630105,
+            "label": "城北区"
+          },
+          {
+            "value": 630122,
+            "label": "湟中县"
+          },
+          {
+            "value": 630123,
+            "label": "湟源县"
+          },
+          {
+            "value": 630121,
+            "label": "大通回族土族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3030,
+        "value": 630200,
+        "label": "海东市",
+        "children": [
+          {
+            "value": 630202,
+            "label": "乐都区"
+          },
+          {
+            "value": 630203,
+            "label": "平安区"
+          },
+          {
+            "value": 630222,
+            "label": "民和回族土族自治县"
+          },
+          {
+            "value": 630223,
+            "label": "互助土族自治县"
+          },
+          {
+            "value": 630224,
+            "label": "化隆回族自治县"
+          },
+          {
+            "value": 630225,
+            "label": "循化撒拉族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3037,
+        "value": 632200,
+        "label": "海北藏族自治州",
+        "children": [
+          {
+            "value": 632223,
+            "label": "海晏县"
+          },
+          {
+            "value": 632222,
+            "label": "祁连县"
+          },
+          {
+            "value": 632224,
+            "label": "刚察县"
+          },
+          {
+            "value": 632221,
+            "label": "门源回族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3042,
+        "value": 632300,
+        "label": "黄南藏族自治州",
+        "children": [
+          {
+            "value": 632321,
+            "label": "同仁县"
+          },
+          {
+            "value": 632322,
+            "label": "尖扎县"
+          },
+          {
+            "value": 632323,
+            "label": "泽库县"
+          },
+          {
+            "value": 632324,
+            "label": "河南蒙古族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3047,
+        "value": 632500,
+        "label": "海南藏族自治州",
+        "children": [
+          {
+            "value": 632521,
+            "label": "共和县"
+          },
+          {
+            "value": 632522,
+            "label": "同德县"
+          },
+          {
+            "value": 632523,
+            "label": "贵德县"
+          },
+          {
+            "value": 632524,
+            "label": "兴海县"
+          },
+          {
+            "value": 632525,
+            "label": "贵南县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3053,
+        "value": 632600,
+        "label": "果洛藏族自治州",
+        "children": [
+          {
+            "value": 632621,
+            "label": "玛沁县"
+          },
+          {
+            "value": 632622,
+            "label": "班玛县"
+          },
+          {
+            "value": 632623,
+            "label": "甘德县"
+          },
+          {
+            "value": 632624,
+            "label": "达日县"
+          },
+          {
+            "value": 632625,
+            "label": "久治县"
+          },
+          {
+            "value": 632626,
+            "label": "玛多县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3060,
+        "value": 632700,
+        "label": "玉树藏族自治州",
+        "children": [
+          {
+            "value": 632701,
+            "label": "玉树市"
+          },
+          {
+            "value": 632722,
+            "label": "杂多县"
+          },
+          {
+            "value": 632723,
+            "label": "称多县"
+          },
+          {
+            "value": 632724,
+            "label": "治多县"
+          },
+          {
+            "value": 632725,
+            "label": "囊谦县"
+          },
+          {
+            "value": 632726,
+            "label": "曲麻莱县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3067,
+        "value": 632800,
+        "label": "海西蒙古族藏族自治州",
+        "children": [
+          {
+            "value": 632802,
+            "label": "德令哈市"
+          },
+          {
+            "value": 632801,
+            "label": "格尔木市"
+          },
+          {
+            "value": 632821,
+            "label": "乌兰县"
+          },
+          {
+            "value": 632822,
+            "label": "都兰县"
+          },
+          {
+            "value": 632823,
+            "label": "天峻县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 630000,
+    "label": "青海省",
+    "expand": "true"
+  },
+  {
+    "id": 3073,
+    "children": [
+      {
+        "id": 3074,
+        "value": 640100,
+        "label": "银川市",
+        "children": [
+          {
+            "value": 640106,
+            "label": "金凤区"
+          },
+          {
+            "value": 640104,
+            "label": "兴庆区"
+          },
+          {
+            "value": 640105,
+            "label": "西夏区"
+          },
+          {
+            "value": 640181,
+            "label": "灵武市"
+          },
+          {
+            "value": 640121,
+            "label": "永宁县"
+          },
+          {
+            "value": 640122,
+            "label": "贺兰县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3081,
+        "value": 640200,
+        "label": "石嘴山市",
+        "children": [
+          {
+            "value": 640202,
+            "label": "大武口区"
+          },
+          {
+            "value": 640205,
+            "label": "惠农区"
+          },
+          {
+            "value": 640221,
+            "label": "平罗县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3085,
+        "value": 640300,
+        "label": "吴忠市",
+        "children": [
+          {
+            "value": 640302,
+            "label": "利通区"
+          },
+          {
+            "value": 640303,
+            "label": "红寺堡区"
+          },
+          {
+            "value": 640381,
+            "label": "青铜峡市"
+          },
+          {
+            "value": 640323,
+            "label": "盐池县"
+          },
+          {
+            "value": 640324,
+            "label": "同心县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3091,
+        "value": 640400,
+        "label": "固原市",
+        "children": [
+          {
+            "value": 640402,
+            "label": "原州区"
+          },
+          {
+            "value": 640422,
+            "label": "西吉县"
+          },
+          {
+            "value": 640423,
+            "label": "隆德县"
+          },
+          {
+            "value": 640424,
+            "label": "泾源县"
+          },
+          {
+            "value": 640425,
+            "label": "彭阳县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3097,
+        "value": 640500,
+        "label": "中卫市",
+        "children": [
+          {
+            "value": 640502,
+            "label": "沙坡头区"
+          },
+          {
+            "value": 640521,
+            "label": "中宁县"
+          },
+          {
+            "value": 640522,
+            "label": "海原县"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 640000,
+    "label": "宁夏回族自治区",
+    "expand": "true"
+  },
+  {
+    "id": 3101,
+    "children": [
+      {
+        "id": 3102,
+        "value": 650100,
+        "label": "乌鲁木齐市",
+        "children": [
+          {
+            "value": 650102,
+            "label": "天山区"
+          },
+          {
+            "value": 650103,
+            "label": "沙依巴克区"
+          },
+          {
+            "value": 650104,
+            "label": "新市区"
+          },
+          {
+            "value": 650105,
+            "label": "水磨沟区"
+          },
+          {
+            "value": 650106,
+            "label": "头屯河区"
+          },
+          {
+            "value": 650107,
+            "label": "达坂城区"
+          },
+          {
+            "value": 650109,
+            "label": "米东区"
+          },
+          {
+            "value": 650121,
+            "label": "乌鲁木齐县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3111,
+        "value": 650200,
+        "label": "克拉玛依市",
+        "children": [
+          {
+            "value": 650203,
+            "label": "克拉玛依区"
+          },
+          {
+            "value": 650202,
+            "label": "独山子区"
+          },
+          {
+            "value": 650204,
+            "label": "白碱滩区"
+          },
+          {
+            "value": 650205,
+            "label": "乌尔禾区"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3116,
+        "value": 650400,
+        "label": "吐鲁番市",
+        "children": [
+          {
+            "value": 650402,
+            "label": "高昌区"
+          },
+          {
+            "value": 650421,
+            "label": "鄯善县"
+          },
+          {
+            "value": 650422,
+            "label": "托克逊县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3120,
+        "value": 650500,
+        "label": "哈密市",
+        "children": [
+          {
+            "value": 650502,
+            "label": "伊州区"
+          },
+          {
+            "value": 650522,
+            "label": "伊吾县"
+          },
+          {
+            "value": 650521,
+            "label": "巴里坤哈萨克自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3124,
+        "value": 652900,
+        "label": "阿克苏地区",
+        "children": [
+          {
+            "value": 652901,
+            "label": "阿克苏市"
+          },
+          {
+            "value": 652922,
+            "label": "温宿县"
+          },
+          {
+            "value": 652923,
+            "label": "库车县"
+          },
+          {
+            "value": 652924,
+            "label": "沙雅县"
+          },
+          {
+            "value": 652925,
+            "label": "新和县"
+          },
+          {
+            "value": 652926,
+            "label": "拜城县"
+          },
+          {
+            "value": 652927,
+            "label": "乌什县"
+          },
+          {
+            "value": 652928,
+            "label": "阿瓦提县"
+          },
+          {
+            "value": 652929,
+            "label": "柯坪县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3134,
+        "value": 653100,
+        "label": "喀什地区",
+        "children": [
+          {
+            "value": 653101,
+            "label": "喀什市"
+          },
+          {
+            "value": 653121,
+            "label": "疏附县"
+          },
+          {
+            "value": 653122,
+            "label": "疏勒县"
+          },
+          {
+            "value": 653123,
+            "label": "英吉沙县"
+          },
+          {
+            "value": 653124,
+            "label": "泽普县"
+          },
+          {
+            "value": 653125,
+            "label": "莎车县"
+          },
+          {
+            "value": 653126,
+            "label": "叶城县"
+          },
+          {
+            "value": 653127,
+            "label": "麦盖提县"
+          },
+          {
+            "value": 653128,
+            "label": "岳普湖县"
+          },
+          {
+            "value": 653129,
+            "label": "伽师县"
+          },
+          {
+            "value": 653130,
+            "label": "巴楚县"
+          },
+          {
+            "value": 653131,
+            "label": "塔什库尔干塔吉克自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3147,
+        "value": 653200,
+        "label": "和田地区",
+        "children": [
+          {
+            "value": 653201,
+            "label": "和田市"
+          },
+          {
+            "value": 653221,
+            "label": "和田县"
+          },
+          {
+            "value": 653222,
+            "label": "墨玉县"
+          },
+          {
+            "value": 653223,
+            "label": "皮山县"
+          },
+          {
+            "value": 653224,
+            "label": "洛浦县"
+          },
+          {
+            "value": 653225,
+            "label": "策勒县"
+          },
+          {
+            "value": 653226,
+            "label": "于田县"
+          },
+          {
+            "value": 653227,
+            "label": "民丰县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3156,
+        "value": 652300,
+        "label": "昌吉回族自治州",
+        "children": [
+          {
+            "value": 652301,
+            "label": "昌吉市"
+          },
+          {
+            "value": 652302,
+            "label": "阜康市"
+          },
+          {
+            "value": 652323,
+            "label": "呼图壁县"
+          },
+          {
+            "value": 652324,
+            "label": "玛纳斯县"
+          },
+          {
+            "value": 652325,
+            "label": "奇台县"
+          },
+          {
+            "value": 652327,
+            "label": "吉木萨尔县"
+          },
+          {
+            "value": 652328,
+            "label": "木垒哈萨克自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3164,
+        "value": 652700,
+        "label": "博尔塔拉蒙古自治州",
+        "children": [
+          {
+            "value": 652701,
+            "label": "博乐市"
+          },
+          {
+            "value": 652702,
+            "label": "阿拉山口市"
+          },
+          {
+            "value": 652722,
+            "label": "精河县"
+          },
+          {
+            "value": 652723,
+            "label": "温泉县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3169,
+        "value": 652800,
+        "label": "巴音郭楞蒙古自治州",
+        "children": [
+          {
+            "value": 652801,
+            "label": "库尔勒市"
+          },
+          {
+            "value": 652822,
+            "label": "轮台县"
+          },
+          {
+            "value": 652823,
+            "label": "尉犁县"
+          },
+          {
+            "value": 652824,
+            "label": "若羌县"
+          },
+          {
+            "value": 652825,
+            "label": "且末县"
+          },
+          {
+            "value": 652827,
+            "label": "和静县"
+          },
+          {
+            "value": 652828,
+            "label": "和硕县"
+          },
+          {
+            "value": 652829,
+            "label": "博湖县"
+          },
+          {
+            "value": 652826,
+            "label": "焉耆回族自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3179,
+        "value": 653000,
+        "label": "克孜勒苏柯尔克孜自治州",
+        "children": [
+          {
+            "value": 653001,
+            "label": "阿图什市"
+          },
+          {
+            "value": 653022,
+            "label": "阿克陶县"
+          },
+          {
+            "value": 653023,
+            "label": "阿合奇县"
+          },
+          {
+            "value": 653024,
+            "label": "乌恰县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3184,
+        "value": 654000,
+        "label": "伊犁哈萨克自治州",
+        "children": [
+          {
+            "value": 654002,
+            "label": "伊宁市"
+          },
+          {
+            "value": 654003,
+            "label": "奎屯市"
+          },
+          {
+            "value": 654004,
+            "label": "霍尔果斯市"
+          },
+          {
+            "value": 654021,
+            "label": "伊宁县"
+          },
+          {
+            "value": 654023,
+            "label": "霍城县"
+          },
+          {
+            "value": 654024,
+            "label": "巩留县"
+          },
+          {
+            "value": 654025,
+            "label": "新源县"
+          },
+          {
+            "value": 654026,
+            "label": "昭苏县"
+          },
+          {
+            "value": 654027,
+            "label": "特克斯县"
+          },
+          {
+            "value": 654028,
+            "label": "尼勒克县"
+          },
+          {
+            "value": 654022,
+            "label": "察布查尔锡伯自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3196,
+        "value": 654200,
+        "label": "塔城地区",
+        "children": [
+          {
+            "value": 654201,
+            "label": "塔城市"
+          },
+          {
+            "value": 654202,
+            "label": "乌苏市"
+          },
+          {
+            "value": 654221,
+            "label": "额敏县"
+          },
+          {
+            "value": 654223,
+            "label": "沙湾县"
+          },
+          {
+            "value": 654224,
+            "label": "托里县"
+          },
+          {
+            "value": 654225,
+            "label": "裕民县"
+          },
+          {
+            "value": 654226,
+            "label": "和布克赛尔蒙古自治县"
+          }
+        ],
+        "expand": "true"
+      },
+      {
+        "id": 3204,
+        "value": 654300,
+        "label": "阿勒泰地区",
+        "children": [
+          {
+            "value": 654301,
+            "label": "阿勒泰市"
+          },
+          {
+            "value": 654321,
+            "label": "布尔津县"
+          },
+          {
+            "value": 654322,
+            "label": "富蕴县"
+          },
+          {
+            "value": 654323,
+            "label": "福海县"
+          },
+          {
+            "value": 654324,
+            "label": "哈巴河县"
+          },
+          {
+            "value": 654325,
+            "label": "青河县"
+          },
+          {
+            "value": 654326,
+            "label": "吉木乃县"
+          },
+          {
+            "value": 659001,
+            "label": "石河子市"
+          },
+          {
+            "value": 659002,
+            "label": "阿拉尔市"
+          },
+          {
+            "value": 659003,
+            "label": "图木舒克市"
+          },
+          {
+            "value": 659004,
+            "label": "五家渠市"
+          },
+          {
+            "value": 659005,
+            "label": "北屯市"
+          },
+          {
+            "value": 659006,
+            "label": "铁门关市"
+          },
+          {
+            "value": 659007,
+            "label": "双河市"
+          },
+          {
+            "value": 659008,
+            "label": "可克达拉市"
+          },
+          {
+            "value": 659009,
+            "label": "昆玉市"
+          }
+        ],
+        "expand": "true"
+      }
+    ],
+    "value": 650000,
+    "label": "新疆维吾尔自治区",
+    "expand": "true"
+  },
+  {
+    "id": 3221,
+    "children": [
+      {
+        "id": 3222,
+        "value": 810100,
+        "label": "香港特别行政区"
+      }
+    ],
+    "value": 810000,
+    "label": "香港特别行政区",
+    "expand": "true"
+  },
+  {
+    "id": 3223,
+    "children": [
+      {
+        "id": 3224,
+        "value": 820100,
+        "label": "澳门特别行政区(澳)"
+      }
+    ],
+    "value": 820000,
+    "label": "澳门特别行政区",
+    "expand": "true"
+  },
+  {
+    "id": 3225,
+    "value": 710000,
+    "label": "台湾省",
+    "expand": "true"
+  }
+]

BIN
src/assets/error_images/401.png


BIN
src/assets/error_images/404.png


BIN
src/assets/error_images/cloud.png


BIN
src/assets/img/10.jpg


BIN
src/assets/img/11.jpg


BIN
src/assets/img/20.jpg


BIN
src/assets/img/30.jpg


BIN
src/assets/img/40.jpg


BIN
src/assets/img/cube_four.png


BIN
src/assets/img/cube_one.png


BIN
src/assets/img/cube_three.png


BIN
src/assets/img/cube_two.png


BIN
src/assets/img/enterprise_bg.png


BIN
src/assets/img/goods.jpeg


BIN
src/assets/img/ic-time.png


BIN
src/assets/img/ic-yxtime.png


BIN
src/assets/img/icon-success.png


BIN
src/assets/img/login-bg.jpg


BIN
src/assets/img/login-pic.png


BIN
src/assets/img/logo-21249f@2x.png


BIN
src/assets/img/logo-white.png


BIN
src/assets/img/marshalling5.png


BIN
src/assets/img/no_enterprise.png


BIN
src/assets/img/pageComponents/adv-size-01.jpg


BIN
src/assets/img/pageComponents/adv-size-02.jpg


BIN
src/assets/img/pageComponents/adv-size-03.jpg


BIN
src/assets/img/pageComponents/adv-style-01.png


BIN
src/assets/img/pageComponents/adv-style-02.png


BIN
src/assets/img/pageComponents/adv-style-03.png


BIN
src/assets/img/pageComponents/banner.png


BIN
src/assets/img/pageComponents/blank.png


BIN
src/assets/img/pageComponents/coupon.png


BIN
src/assets/img/pageComponents/coupon_bck.png


BIN
src/assets/img/pageComponents/coupon_item.png


BIN
src/assets/img/pageComponents/cube.png


BIN
src/assets/img/pageComponents/float.png


BIN
src/assets/img/pageComponents/goods.png


BIN
src/assets/img/pageComponents/guess.png


BIN
src/assets/img/pageComponents/line.png


Some files were not shown because too many files changed in this diff