diff --git a/.env.development b/.env.development
index f7965ab..4a254d4 100644
--- a/.env.development
+++ b/.env.development
@@ -1,4 +1,4 @@
-VITE_API_BASE='https://hwjb.homilychart.com/dev/admin'
+# VITE_API_BASE='https://hwjb.homilychart.com/dev/admin'
# 测试环境
# VITE_API_BASE='http://54.255.212.181:10704/'
# 正式环境
@@ -11,6 +11,6 @@ VITE_UPLOAD_URL=http://39.101.133.168:8828/hljw/api/aws/upload
# zhangyong
# VITE_API_BASE='http://192.168.3.83:8081/'
# 本地
-# VITE_API_BASE='http://localhost:8081/'
+VITE_API_BASE='http://localhost:8081/'
# sunjiabei
# VITE_API_BASE='http://192.168.0.113:8081/'
\ No newline at end of file
diff --git a/src/router/index.js b/src/router/index.js
index fdd8a82..d750fce 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -240,6 +240,12 @@ const routes = [
component: () => import("../views/usergold/bean/userbean.vue"),
meta:{ permissionId: 45 }
},
+ {
+ path: '/history',
+ name: "history",
+ component: () => import("../views/history/history.vue"),
+ meta:{ permissionId: [56,57] }
+ },
// 权限管理
{
diff --git a/src/utils/menuTreePermission.js b/src/utils/menuTreePermission.js
index 356381d..60ec710 100644
--- a/src/utils/menuTreePermission.js
+++ b/src/utils/menuTreePermission.js
@@ -10,6 +10,8 @@ export const permissionMapping = {
Consumption_Management: 6, // 消耗管理
Refund_Management: 7, // 退款管理
Customer_Account_Details: 8, // 客户账户明细
+ History: 56, // 历史数据查询
+
Permission_Management: 9, // 权限管理
@@ -61,6 +63,9 @@ export const permissionMapping = {
Recharge_Audit: 31, // 充值审核(金币) // audit页面
Refund_Audit: 32, // 退款审核(金币) // audit页面,
+ History_Query: 57, // 历史数据查询
+
+
// 新增的金豆相关权限
Submit_Golden_Bean_Recharge: 46, // 提交金豆充值
View_Golden_Bean_System_Recharge_Details: 47, // 查看金豆系统充值明细
diff --git a/src/utils/menuUtils.js b/src/utils/menuUtils.js
index e516cfd..3c9877a 100644
--- a/src/utils/menuUtils.js
+++ b/src/utils/menuUtils.js
@@ -61,6 +61,9 @@ export const getRoutePath = (menu) => {
'金币退款': '/coinRefund',
// '金豆退款': '/beanRefund',
+ '历史数据查询': '/history',
+
+
'权限管理': '/permissions',
diff --git a/src/views/audit/gold/rechargeAudit.vue b/src/views/audit/gold/rechargeAudit.vue
index 39a3a19..463f905 100644
--- a/src/views/audit/gold/rechargeAudit.vue
+++ b/src/views/audit/gold/rechargeAudit.vue
@@ -64,7 +64,6 @@