diff --git a/src/api/system/post.js b/src/api/system/post.js
new file mode 100644
index 0000000..614b8fc
--- /dev/null
+++ b/src/api/system/post.js
@@ -0,0 +1,60 @@
+import request from '@/router/axios';
+
+export const getList = (current, size, params) => {
+ return request({
+ url: '/api/blade-system/post/list',
+ method: 'get',
+ params: {
+ ...params,
+ current,
+ size,
+ }
+ })
+}
+
+export const getPostList = (tenantId) => {
+ return request({
+ url: '/api/blade-system/post/select',
+ method: 'get',
+ params: {
+ tenantId
+ }
+ })
+}
+
+export const getDetail = (id) => {
+ return request({
+ url: '/api/blade-system/post/detail',
+ method: 'get',
+ params: {
+ id
+ }
+ })
+}
+
+export const remove = (ids) => {
+ return request({
+ url: '/api/blade-system/post/remove',
+ method: 'post',
+ params: {
+ ids,
+ }
+ })
+}
+
+export const add = (row) => {
+ return request({
+ url: '/api/blade-system/post/submit',
+ method: 'post',
+ data: row
+ })
+}
+
+export const update = (row) => {
+ return request({
+ url: '/api/blade-system/post/submit',
+ method: 'post',
+ data: row
+ })
+}
+
diff --git a/src/views/system/post.vue b/src/views/system/post.vue
new file mode 100644
index 0000000..a7f83cb
--- /dev/null
+++ b/src/views/system/post.vue
@@ -0,0 +1,270 @@
+
+
+
+
+ 删 除
+
+
+
+ {{row.tenantName}}
+
+
+ {{row.categoryName}}
+
+
+
+
+
+
+
+
diff --git a/src/views/system/user.vue b/src/views/system/user.vue
index c75b89d..8f79720 100644
--- a/src/views/system/user.vue
+++ b/src/views/system/user.vue
@@ -28,25 +28,49 @@
删 除
- 角色分配
+
+ 密码重置
+ 导入
+
+ 导出
+
+
+
+ {{row.tenantName}}
+ slot="roleName">
{{row.roleName}}
+ slot="deptName">
{{row.deptName}}
@@ -58,7 +82,6 @@