From 62fb43a7c2e14109093af94f7282820a0242d443 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期一, 10 七月 2023 11:25:13 +0800 Subject: [PATCH] 代码整合 --- Source/UBCS-WEB/dist/src/api/system/passwordvalue.js | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 46 insertions(+), 0 deletions(-) diff --git a/Source/UBCS-WEB/dist/src/api/system/passwordvalue.js b/Source/UBCS-WEB/dist/src/api/system/passwordvalue.js new file mode 100644 index 0000000..8b7f1e9 --- /dev/null +++ b/Source/UBCS-WEB/dist/src/api/system/passwordvalue.js @@ -0,0 +1,46 @@ +//瀵嗙爜缁勫悎鏂瑰紡鍙栧�� +import request from '@/router/axios'; + +// 鏂板 +export const getadd =(row)=>{ + return request({ + url:'/api/ubcs-system/value-range/submit', + method:'post', + data:row + }) +} +// 淇敼 +export const getupdata =(row)=>{ + return request({ + url:'/api/ubcs-system/value-range/submit', + method:'post', + data:row + }) +} +// 鍏ㄦ煡璇� +export const allList =()=>{ + return request({ + url:'/api/ubcs-system/value-range/list', + method:'get' + }) +} +// 鍒犻櫎 +export const getremove = (row) => { + return request({ + url: '/api/ubcs-system/value-range/remove', + method: 'post', + data:row + }) +} +// 鍒嗛〉 +export const getPage =(current, size, params)=>{ + return request({ + url:'/api/ubcs-system/value-range/page', + method:'get', + params:{ + ...params, + current, + size, + } + }) +} -- Gitblit v1.9.3