From 9ff66017debadfc89bc0c1b796684a4d1dbe2bc3 Mon Sep 17 00:00:00 2001
From: fangyuan <527392886@qq.com>
Date: 星期五, 16 十二月 2022 10:00:02 +0800
Subject: [PATCH] 已上报到市批量操作按钮隐藏

---
 src/api/users.js |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/src/api/users.js b/src/api/users.js
index 681a6bf..1252c53 100644
--- a/src/api/users.js
+++ b/src/api/users.js
@@ -1,4 +1,22 @@
 import axios from "axios";
+import http from "@/http";
+
 export default {
   login: (data) => axios.post('/sccg/admin/login', data),
+
+  getMessageAuditList: (params) => {
+    return http.get('/sccg/message_column_set/getUserColumnSet', params);
+  },
+
+  getMenu: (params) => {
+    return http.get('/sccg/admin/info', params);
+  },
+
+  updatePassword: (params) => {
+    return http.post('/sccg/admin/updatePassword', params);
+  },
+
+  logout: () => {
+    return http.post('/sccg/admin/logout');
+  }
 };      
\ No newline at end of file

--
Gitblit v1.8.0