From 29dbbca735430b7bb95975021e0c08bb986d476c Mon Sep 17 00:00:00 2001
From: wangh <9483>
Date: Thu, 4 Jan 2024 15:52:02 +0800
Subject: [PATCH 1/3] =?UTF-8?q?bug=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
fuintAdmin_zt/.env.development | 5 +-
fuintAdmin_zt/src/api/system/Site/site.js | 6 +-
fuintAdmin_zt/src/main.js | 1 +
fuintAdmin_zt/src/views/Site/index.vue | 8 +-
.../src/views/components/Service/index.vue | 6 +-
.../src/views/components/Service/payment.vue | 136 ++++++++++++++++--
fuintAdmin_zt/src/views/system/role/index.vue | 3 +-
.../integral/mapper/IntegralDetailMapper.java | 2 +-
.../mapper/xml/IntegralDetailMapper.xml | 8 +-
.../mapper/xml/IntegralOrdersMapper.xml | 3 +
.../impl/IntegralOrdersServiceImpl.java | 56 ++++++--
.../impl/IntegralSettingsServiceImpl.java | 2 +-
.../system/dept/mapper/xml/SysDeptMapper.xml | 14 +-
.../dept/service/impl/SysDeptServiceImpl.java | 4 +-
.../main/resources/mapper/TAccountMapper.xml | 54 ++++---
fuintCashierWeb/src/router/index.js | 5 +
.../views/cashier/NewComponents/Integral.vue | 4 +-
gasStation-uni/pages/index/index.vue | 8 +-
.../PointsGoodsDetails/PointsGoodsDetails.vue | 4 +-
gasStation-uni/pagesHome/order/order.vue | 29 ++++
20 files changed, 283 insertions(+), 75 deletions(-)
diff --git a/fuintAdmin_zt/.env.development b/fuintAdmin_zt/.env.development
index 22deba912..b4d6f2162 100644
--- a/fuintAdmin_zt/.env.development
+++ b/fuintAdmin_zt/.env.development
@@ -11,5 +11,8 @@ VUE_APP_BASE_API = '/dev-api'
VUE_APP_PUBLIC_PATH = '/'
# 后端接口地址
-VUE_APP_SERVER_URL = 'http://192.168.0.138:8080/'
+# VUE_APP_SERVER_URL = 'http://192.168.0.138:8080/'
+VUE_APP_SERVER_URL = 'http://192.168.0.178:8008/'
+# cp端地址
+VUE_PC_SERVER_URL = 'http://192.168.0.178:82/'
diff --git a/fuintAdmin_zt/src/api/system/Site/site.js b/fuintAdmin_zt/src/api/system/Site/site.js
index 130f82d8f..2cabe565c 100644
--- a/fuintAdmin_zt/src/api/system/Site/site.js
+++ b/fuintAdmin_zt/src/api/system/Site/site.js
@@ -159,10 +159,12 @@ export function updateAuthRole(data) {
}
// 查询部门下拉树结构
-export function deptTreeSelect() {
+export function deptTreeSelect(data) {
return request({
url: '/system/dept/deptTree',
- method: 'get'
+ method: 'get',
+ params: data
+
})
}
diff --git a/fuintAdmin_zt/src/main.js b/fuintAdmin_zt/src/main.js
index f6a04b9db..029c93f67 100644
--- a/fuintAdmin_zt/src/main.js
+++ b/fuintAdmin_zt/src/main.js
@@ -47,6 +47,7 @@ Vue.prototype.addDateRange = addDateRange
Vue.prototype.getName = getName
Vue.prototype.download = download
Vue.prototype.handleTree = handleTree
+Vue.prototype.pcUrl = 'http://192.168.0.178:82/'
// 全局组件挂载
Vue.component('DictTag', DictTag)
diff --git a/fuintAdmin_zt/src/views/Site/index.vue b/fuintAdmin_zt/src/views/Site/index.vue
index 37f21ec94..f41a3fe6d 100644
--- a/fuintAdmin_zt/src/views/Site/index.vue
+++ b/fuintAdmin_zt/src/views/Site/index.vue
@@ -8,7 +8,8 @@