From ca8c0962e36d4ef8489e2d8a220d9953b9cf851a Mon Sep 17 00:00:00 2001 From: ludc Date: 星期四, 20 七月 2023 14:44:16 +0800 Subject: [PATCH] Merge branch 'master' of http://dev.vci-tech.com:1065/r/ubcs --- 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