Browse Source

fix(env): 调整开发环境API路径与代理配置

更新 `.env.development` 中的 API 路径和代理设置,确保开发环境正确指向本地代理地址。
同时修正 `VITE_API_URL` 的值以匹配实际接口路径。

fix(financial): 更新提现记录状态枚举标签

将“提现状态枚举”中的部分标签名称进行语义化优化,并移除不再使用的状态项,
使状态显示更加准确清晰。
zhuli 2 weeks ago
parent
commit
61f9e357a0
1 changed files with 3 additions and 6 deletions
  1. 3 6
      src/views/financialManagement/withdrawaRecord.vue

+ 3 - 6
src/views/financialManagement/withdrawaRecord.vue

@@ -95,12 +95,9 @@ const proTable = ref<ProTableInstance>();
 
 // 提现状态枚举
 const paymentStatusEnum = [
-  { label: "进行中", value: 0 },
-  { label: "成功", value: 1 },
-  { label: "失败", value: 2 },
-  { label: "待审核", value: 3 },
-  { label: "已拒绝", value: 4 },
-  { label: "待审核通过", value: 5 }
+  { label: "体现中", value: 0 },
+  { label: "提现成功", value: 1 },
+  { label: "提现失败", value: 2 }
 ];
 
 // 表格配置项