diff --git a/.env.test b/.env.integration similarity index 100% rename from .env.test rename to .env.integration diff --git a/package.json b/package.json index c3994975..553ee5dc 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "serve": "npm run dev", "dev": "vite", "build": "cross-env NODE_ENV=production vite build && esno ./build/script/postBuild.ts", - "build:test": "cross-env vite build --mode test && esno ./build/script/postBuild.ts", + "build:test": "cross-env vite build --mode integration && esno ./build/script/postBuild.ts", "build:no-cache": "pnpm clean:cache && npm run build", "report": "cross-env REPORT=true npm run build", "type:check": "vue-tsc --noEmit --skipLibCheck", diff --git a/src/components/ApproveBtns/index.vue b/src/components/ApproveBtns/index.vue index bbf26bfc..22e9f6c0 100644 --- a/src/components/ApproveBtns/index.vue +++ b/src/components/ApproveBtns/index.vue @@ -8,6 +8,7 @@
+ + RMB利润: + ¥{{ statisticData.profitCNY || 0 }} + + + USD利润: + ${{ statisticData.profitUSD || 0 }} + + + 合计应收: + {{ statisticData.receivableTotal || 0 }} + + + 合计利润: + {{ statisticData.profitTotal || 0 }} + + + 利润率: + {{ statisticData.profitMargin || '0%' }} + +
+