From b328e23398b911d9cbf0dbc03909725adf188ae6 Mon Sep 17 00:00:00 2001
From: lihang <lihang@vci-tech.com>
Date: 星期一, 03 七月 2023 12:17:47 +0800
Subject: [PATCH] 修正创建业务类型处理逻辑;暂时取消DDL的线程缓存,考虑是这个引起的

---
 Source/UBCS-WEB/src/api/system/post.js |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/Source/UBCS-WEB/src/api/system/post.js b/Source/UBCS-WEB/src/api/system/post.js
index 614b8fc..a0e0cb8 100644
--- a/Source/UBCS-WEB/src/api/system/post.js
+++ b/Source/UBCS-WEB/src/api/system/post.js
@@ -2,7 +2,7 @@
 
 export const getList = (current, size, params) => {
   return request({
-    url: '/api/blade-system/post/list',
+    url: '/api/ubcs-system/post/list',
     method: 'get',
     params: {
       ...params,
@@ -14,7 +14,7 @@
 
 export const getPostList = (tenantId) => {
   return request({
-    url: '/api/blade-system/post/select',
+    url: '/api/ubcs-system/post/select',
     method: 'get',
     params: {
       tenantId
@@ -24,7 +24,7 @@
 
 export const getDetail = (id) => {
   return request({
-    url: '/api/blade-system/post/detail',
+    url: '/api/ubcs-system/post/detail',
     method: 'get',
     params: {
       id
@@ -34,7 +34,7 @@
 
 export const remove = (ids) => {
   return request({
-    url: '/api/blade-system/post/remove',
+    url: '/api/ubcs-system/post/remove',
     method: 'post',
     params: {
       ids,
@@ -44,7 +44,7 @@
 
 export const add = (row) => {
   return request({
-    url: '/api/blade-system/post/submit',
+    url: '/api/ubcs-system/post/submit',
     method: 'post',
     data: row
   })
@@ -52,7 +52,7 @@
 
 export const update = (row) => {
   return request({
-    url: '/api/blade-system/post/submit',
+    url: '/api/ubcs-system/post/submit',
     method: 'post',
     data: row
   })

--
Gitblit v1.9.3