diff --git a/src/api/userApp/index.ts b/src/api/userApp/index.ts
index ea99873..31453a7 100644
--- a/src/api/userApp/index.ts
+++ b/src/api/userApp/index.ts
@@ -19,5 +19,13 @@ export const deviceList = (params): AxiosPromise => {
params
});
};
+// 账号状态
+export const userStatus = (data): AxiosPromise => {
+ return request({
+ url: '/api/app/device',
+ method: 'put',
+ data
+ });
+};
-export default { userList,deviceList }
\ No newline at end of file
+export default { userList,deviceList,userStatus }
\ No newline at end of file
diff --git a/src/api/userApp/types.ts b/src/api/userApp/types.ts
index e69de29..ec718b1 100644
--- a/src/api/userApp/types.ts
+++ b/src/api/userApp/types.ts
@@ -0,0 +1,16 @@
+export interface userQuery {
+ pageNum: number | string | undefined;
+ pageSize: number | string | undefined;
+ userName: string;
+ status: string;
+}
+
+
+export interface userForm {
+ configId: number | string | undefined;
+ configName: string;
+ configKey: string;
+ configValue: string;
+ configType: string;
+ remark: string;
+}
\ No newline at end of file
diff --git a/src/assets/images/login-background.jpg b/src/assets/images/login-background.jpg
index fa6408b..3e49b10 100644
Binary files a/src/assets/images/login-background.jpg and b/src/assets/images/login-background.jpg differ
diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue
index ded9533..ae86369 100644
--- a/src/layout/components/Navbar.vue
+++ b/src/layout/components/Navbar.vue
@@ -14,47 +14,6 @@