From 51e2a64fb359eb2b00e7c52f13a17f71b70a4dd5 Mon Sep 17 00:00:00 2001 From: sunzehua Date: Mon, 6 May 2024 17:58:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A2=E6=88=B7=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 12 +- .env.development | 12 +- src/api/modular/main/DJYTenantParam.js | 40 ++ .../detail/modules/basicInfo.vue | 5 +- src/views/main/BookingGangjie/list/index.vue | 6 +- .../detail/modules/basicInfo.vue | 6 +- src/views/main/BookingLedger/list/index.vue | 10 +- src/views/main/Customer/index.vue | 58 ++- src/views/main/Printing/index.vue | 53 +-- src/views/main/customerParam/addItemForm.vue | 222 ++++++++++ src/views/main/customerParam/editItemForm.vue | 229 ++++++++++ src/views/main/customerParam/index.vue | 399 ++++++++++++++++++ 12 files changed, 958 insertions(+), 94 deletions(-) create mode 100644 src/views/main/customerParam/addItemForm.vue create mode 100644 src/views/main/customerParam/editItemForm.vue create mode 100644 src/views/main/customerParam/index.vue diff --git a/.env b/.env index c84d1c6..ce55dd7 100644 --- a/.env +++ b/.env @@ -1,8 +1,8 @@ NODE_ENV=production VUE_APP_PREVIEW=true # VUE_APP_TYPE = 'customer' -VUE_APP_TYPE = 'hechuan' -# VUE_APP_TYPE = 'yunyingduan' +# VUE_APP_TYPE = 'hechuan' +VUE_APP_TYPE = 'yunyingduan' # VUE_APP_TYPE = 'gangjie' # 打包部署的三个端 客户端customer 和川端hechuan 运营端djy @@ -11,8 +11,8 @@ VUE_APP_TYPE = 'hechuan' # VUE_APP_SOCKET_BASE_URL=http://47.104.85.216:12345 # 和川大简云测试 -VUE_APP_API_BASE_URL=http://60.209.125.238:35100 -VUE_APP_SOCKET_BASE_URL=http://60.209.125.238:35100 +# VUE_APP_API_BASE_URL=http://60.209.125.238:35100 +# VUE_APP_SOCKET_BASE_URL=http://60.209.125.238:35100 # 客户端测试 # VUE_APP_API_BASE_URL=http://60.209.125.238:30813 @@ -31,5 +31,5 @@ VUE_APP_SOCKET_BASE_URL=http://60.209.125.238:35100 # VUE_APP_SOCKET_BASE_URL=http://118.190.144.189:6001 # 运营端正式 -# VUE_APP_API_BASE_URL=http://118.190.144.189:6002 -# VUE_APP_SOCKET_BASE_URL=http://118.190.144.189:6002 \ No newline at end of file +VUE_APP_API_BASE_URL=http://118.190.144.189:6002 +VUE_APP_SOCKET_BASE_URL=http://118.190.144.189:6002 \ No newline at end of file diff --git a/.env.development b/.env.development index 7caaa7b..2afe06a 100644 --- a/.env.development +++ b/.env.development @@ -1,8 +1,8 @@ NODE_ENV=development VUE_APP_PREVIEW=true # VUE_APP_TYPE = 'customer' -VUE_APP_TYPE = 'hechuan' -# VUE_APP_TYPE = 'yunyingduan' +# VUE_APP_TYPE = 'hechuan' +VUE_APP_TYPE = 'yunyingduan' # VUE_APP_TYPE = 'gangjie' # 打包部署的三个端 客户端customer 和川端hechuan 运营端yunyingduan @@ -11,8 +11,8 @@ VUE_APP_TYPE = 'hechuan' # VUE_APP_SOCKET_BASE_URL=http://47.104.85.216:12345 # 和川大简云测试 -VUE_APP_API_BASE_URL=http://60.209.125.238:35100 -VUE_APP_SOCKET_BASE_URL=http://60.209.125.238:35100 +# VUE_APP_API_BASE_URL=http://60.209.125.238:35100 +# VUE_APP_SOCKET_BASE_URL=http://60.209.125.238:35100 # 客户端测试 # VUE_APP_API_BASE_URL=http://60.209.125.238:30813 @@ -30,8 +30,8 @@ VUE_APP_SOCKET_BASE_URL=http://60.209.125.238:35100 # VUE_APP_SOCKET_BASE_URL=http://118.190.144.189:5001 # 运营端正式 -# VUE_APP_API_BASE_URL=http://118.190.144.189:6002 -# VUE_APP_SOCKET_BASE_URL=http://118.190.144.189:6002 +VUE_APP_API_BASE_URL=http://118.190.144.189:6002 +VUE_APP_SOCKET_BASE_URL=http://118.190.144.189:6002 # 客户端正式 # VUE_APP_API_BASE_URL=http://118.190.144.189:6001 diff --git a/src/api/modular/main/DJYTenantParam.js b/src/api/modular/main/DJYTenantParam.js index a928790..c83f31f 100644 --- a/src/api/modular/main/DJYTenantParam.js +++ b/src/api/modular/main/DJYTenantParam.js @@ -165,3 +165,43 @@ export function SysTenantPage(parameter) { params: parameter }) } + +export function PageParamValue(parameter) { + return axios({ + url: '/DJYCustomerParam/PageParamValue', + method: 'post', + data: parameter + }) +} + +export function ParamList(parameter) { + return axios({ + url: '/DJYCustomerParam/ParamList', + method: 'get', + params: parameter + }) +} + +export function ParamItemList(parameter) { + return axios({ + url: '/DJYCustomerParam/ParamItemList', + method: 'get', + params: parameter + }) +} + +export function saveParamValue(parameter) { + return axios({ + url: '/DJYCustomerParam/saveParamValue', + method: 'post', + data: parameter + }) +} + +export function deleteParamValue(parameter) { + return axios({ + url: '/DJYCustomerParam/deleteParamValue', + method: 'post', + params: parameter + }) +} \ No newline at end of file diff --git a/src/views/main/BookingGangjie/detail/modules/basicInfo.vue b/src/views/main/BookingGangjie/detail/modules/basicInfo.vue index 03043a3..4b6cc97 100644 --- a/src/views/main/BookingGangjie/detail/modules/basicInfo.vue +++ b/src/views/main/BookingGangjie/detail/modules/basicInfo.vue @@ -1238,8 +1238,9 @@ export default { WserviceItem.push(item.split('[')[1]) } }) - this.details.saveServiceList = WserviceItem - this.$emit('handleSaveService', WserviceItem) + console.log(WserviceItem) + // this.details.saveServiceList = WserviceItem + // this.$emit('handleSaveService', WserviceItem) } else { this.details.saveServiceList = [] this.$emit('handleSaveService', []) diff --git a/src/views/main/BookingGangjie/list/index.vue b/src/views/main/BookingGangjie/list/index.vue index d7fb741..5e5e8e2 100644 --- a/src/views/main/BookingGangjie/list/index.vue +++ b/src/views/main/BookingGangjie/list/index.vue @@ -385,8 +385,10 @@ @click="TxxpLink(row)">
-
{{ row.extendState.txxpEndTime.substring(0, 16) }}
-
修改到期时间
+
+ {{ row.extendState.txxpEndTime.substring(0, 16) }} + +
-
+
-
- {{ row.extendState.txxpEndTime.substring(0, 16) }} -
-
- 修改到期时间 +
+ {{ row.extendState.txxpEndTime.substring(0, 16) }} +
- + @@ -130,12 +130,10 @@ > - - - - - + + + +
diff --git a/src/views/main/customerParam/editItemForm.vue b/src/views/main/customerParam/editItemForm.vue new file mode 100644 index 0000000..4bc4c60 --- /dev/null +++ b/src/views/main/customerParam/editItemForm.vue @@ -0,0 +1,229 @@ + + + diff --git a/src/views/main/customerParam/index.vue b/src/views/main/customerParam/index.vue new file mode 100644 index 0000000..3d6dc84 --- /dev/null +++ b/src/views/main/customerParam/index.vue @@ -0,0 +1,399 @@ + + +