diff --git a/cloud_admin_cas(9,27).zip b/cloud_admin_cas(9,27).zip new file mode 100644 index 0000000..d76f9aa Binary files /dev/null and b/cloud_admin_cas(9,27).zip differ diff --git a/src/api/order/index.js b/src/api/order/index.js new file mode 100644 index 0000000..765eda3 --- /dev/null +++ b/src/api/order/index.js @@ -0,0 +1,29 @@ +import request from '@/utils/request' +// 获取订单列表 +export function casDealLogList(params) { + return request({ + url: `/business/casDealLog/list`, + method: "get", + params + }); +} +export function addDealLog(data) { + return request({ + url: `/business/casDealLog`, + method: "post", + data + }); +} +export function DealLogDetail(id) { + return request({ + url: `/business/casDealLog/${id}`, + method: "get", + }); +} +export function updateDealLog(data) { + return request({ + url: `/business/casDealLog`, + method: "put", + data + }); +} \ No newline at end of file diff --git a/src/views/dataList/expert/add.vue b/src/views/dataList/expert/add.vue index 2c364ae..535b897 100644 --- a/src/views/dataList/expert/add.vue +++ b/src/views/dataList/expert/add.vue @@ -17,11 +17,7 @@ diff --git a/vite.config.js b/vite.config.js index 8b6f631..77ba91f 100644 --- a/vite.config.js +++ b/vite.config.js @@ -31,7 +31,8 @@ export default defineConfig(({ mode, command }) => { proxy: { // https://cn.vitejs.dev/config/#server-proxy '/dev-api': { - target: 'http://120.26.107.74:1618', + // target: 'http://120.26.107.74:1618', + target: 'http://172.18.3.141:1617', changeOrigin: true, rewrite: (p) => p.replace(/^\/dev-api/, '') }