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/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