hurx 2 maanden geleden
bovenliggende
commit
e2b0d6f36f
2 gewijzigde bestanden met toevoegingen van 43 en 2 verwijderingen
  1. 16 0
      package-lock.json
  2. 27 2
      src/utils/siteConfig.ts

+ 16 - 0
package-lock.json

@@ -18,6 +18,7 @@
         "axios": "1.13.1",
         "crypto-js": "4.2.0",
         "echarts": "5.6.0",
+        "element-china-area-data": "^6.1.0",
         "element-plus": "2.11.7",
         "file-saver": "2.0.5",
         "highlight.js": "11.11.1",
@@ -3859,6 +3860,12 @@
         "node": ">= 16"
       }
     },
+    "node_modules/china-division": {
+      "version": "2.7.0",
+      "resolved": "https://registry.npmjs.org/china-division/-/china-division-2.7.0.tgz",
+      "integrity": "sha512-4uUPAT+1WfqDh5jytq7omdCmHNk3j+k76zEG/2IqaGcYB90c2SwcixttcypdsZ3T/9tN1TTpBDoeZn+Yw/qBEA==",
+      "license": "MIT"
+    },
     "node_modules/chokidar": {
       "version": "4.0.3",
       "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-4.0.3.tgz",
@@ -4276,6 +4283,15 @@
       "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==",
       "dev": true
     },
+    "node_modules/element-china-area-data": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/element-china-area-data/-/element-china-area-data-6.1.0.tgz",
+      "integrity": "sha512-IkpcjwQv2A/2AxFiSoaISZ+oMw1rZCPUSOg5sOCwT5jKc96TaawmKZeY81xfxXsO0QbKxU5LLc6AirhG52hUmg==",
+      "license": "MIT",
+      "dependencies": {
+        "china-division": "^2.7.0"
+      }
+    },
     "node_modules/element-plus": {
       "version": "2.11.7",
       "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.11.7.tgz",

+ 27 - 2
src/utils/siteConfig.ts

@@ -37,7 +37,31 @@ export const SITE_ROUTES: Record<any, string[]> = {
   cart: ['/cart'], //商品详情
   trad: ['/trad'], //确认订单信息
   payc: ['/payc'], //支付订单
-  order: ['/order/orderManage', '/order/orderManage/detail', '/order/orderAudit', '/order/afterSale', '/order/batchOrder', '/order/orderEvaluation'], //订单列表
+  order: [
+    '/order/orderManage',
+    '/order/orderManage/detail',
+    '/order/orderAudit',
+    '/order/afterSale',
+    '/order/batchOrder',
+    '/order/orderEvaluation',
+    '/enterprise/companyInfo',
+    '/enterprise/companyInfo/edit',
+    '/enterprise/purchaseHabit',
+    '/enterprise/invoiceManage',
+    '/reconciliation/billManage',
+    '/reconciliation/invoiceManage',
+    '/organization/deptManage',
+    '/organization/staffManage',
+    '/organization/roleManage',
+    '/valueAdded/maintenance',
+    '/valueAdded/complaint',
+    '/cost/itemExpense',
+    '/cost/quotaControl',
+    '/cost/quotaControl/apply',
+    '/enterprise/purchasePlan',
+    '/organization/approvalFlow',
+    '/organization/approvalFlow/create'
+  ], //订单列表
   plan: ['/plan'], //解决方案
   plan_info: ['/plan_info'], //信息展示
   i: ['/i'], //个人信息
@@ -103,7 +127,8 @@ export function getApiBase() {
   } else {
     // return '/dev-api'
     // return 'http://192.168.1.52:8080';
-    return 'https://ceshi.xiaoluwebsite.xyz';
+    // return 'https://ceshi.xiaoluwebsite.xyz';
+    return 'http://localhost:8080';
   }
 }