From ffd0af47ee31a9592cfab56a907e9841a9113c52 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期四, 20 七月 2023 10:37:17 +0800 Subject: [PATCH] 代码提交,前端代码打包 --- Source/UBCS-WEB/dist/src/api/system/passwords.js | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 51 insertions(+), 0 deletions(-) diff --git a/Source/UBCS-WEB/dist/src/api/system/passwords.js b/Source/UBCS-WEB/dist/src/api/system/passwords.js new file mode 100644 index 0000000..7ad9fa1 --- /dev/null +++ b/Source/UBCS-WEB/dist/src/api/system/passwords.js @@ -0,0 +1,51 @@ +//瀵嗙爜绛栫暐 +import request from '@/router/axios'; + +//鍒嗛〉 +export const getPage =(current, size, params)=>{ + return request({ + url:'/api/ubcs-system/strategy/page', + method:'get', + params:{ + ...params, + current, + size, + } + }) +} +//鍗曟煡璇� +export const getOnesearch =(id)=>{ + return request({ + url:'/api/ubcs-system/strategy/one', + method:'post', + params:{ + id + } + }) +} +// 鏂板 +export const getadd =(row)=>{ + return request({ + url:'/api/ubcs-system/strategy/submit', + method:'post', + data:row + }) +} +// 淇敼 +export const getupdata =(row)=>{ + return request({ + url:'/api/ubcs-system/strategy/submit', + method:'post', + data:row + }) +} +//鍒犻櫎 +export const getremove = (ids) => { + return request({ + url: '/api/ubcs-system/strategy/remove', + method: 'post', + params: { + ids, + } + }) +} -- Gitblit v1.9.3