diff --git a/.history/src/api/system/SysSpeedingDept_20250829150502.js b/.history/src/api/system/SysSpeedingDept_20250829150502.js new file mode 100644 index 0000000..b6033e6 --- /dev/null +++ b/.history/src/api/system/SysSpeedingDept_20250829150502.js @@ -0,0 +1,83 @@ +import request from '@/utils/request' + +// 查询部门树状结构 +export function listDept(query) { + return request({ + url: '/system/speedingdept/tree', + method: 'get', + params: query + }) +} + +// 查询部门列表(根据父部门ID查询子部门) +export function listDept(query) { + return request({ + url: '/system/speedingdept/list', + method: 'get', + params: query + }) +} + + + +// 根据父部门ID查询子部门列表 +export function getDept(parentId) { + return request({ + url: '/system/speedingdept/listByParent/' + parentId, + method: 'get' + }) +} + + + +// 查询部门层级信息 +export function getDept(deptId) { + return request({ + url: '/system/speedingdept/level/' + deptId, + method: 'get' + }) +} + + +// 查询部门详细数据 +export function getDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'get' + }) +} + +// 新增部门 +export function addDept(data) { + return request({ + url: '/system/speedingdept', + method: 'post', + data: data + }) +} + +// 修改部门 +export function updateDept(data) { + return request({ + url: '/system/speedingdept', + method: 'put', + data: data + }) +} + +// 获取部门层级选项(用于新增/编辑时的父部门选择) +export function levelOptions() { + return request({ + url: '/system/levelOptions', + method: 'get' + }) +} + + +// 删除部门 +export function delDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'delete' + }) +} diff --git a/.history/src/api/system/SysSpeedingDept_20250829150652.js b/.history/src/api/system/SysSpeedingDept_20250829150652.js new file mode 100644 index 0000000..a17adcc --- /dev/null +++ b/.history/src/api/system/SysSpeedingDept_20250829150652.js @@ -0,0 +1,83 @@ +import request from '@/utils/request' + +// 查询部门树状结构 +export function listDepttree(query) { + return request({ + url: '/system/speedingdept/tree', + method: 'get', + params: query + }) +} + +// 查询部门列表(根据父部门ID查询子部门) +export function listDept(query) { + return request({ + url: '/system/speedingdept/list', + method: 'get', + params: query + }) +} + + + +// 根据父部门ID查询子部门列表 +export function getDept(parentId) { + return request({ + url: '/system/speedingdept/listByParent/' + parentId, + method: 'get' + }) +} + + + +// 查询部门层级信息 +export function getDept(deptId) { + return request({ + url: '/system/speedingdept/level/' + deptId, + method: 'get' + }) +} + + +// 查询部门详细数据 +export function getDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'get' + }) +} + +// 新增部门 +export function addDept(data) { + return request({ + url: '/system/speedingdept', + method: 'post', + data: data + }) +} + +// 修改部门 +export function updateDept(data) { + return request({ + url: '/system/speedingdept', + method: 'put', + data: data + }) +} + +// 获取部门层级选项(用于新增/编辑时的父部门选择) +export function levelOptions() { + return request({ + url: '/system/levelOptions', + method: 'get' + }) +} + + +// 删除部门 +export function delDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'delete' + }) +} diff --git a/.history/src/api/system/SysSpeedingDept_20250829150957.js b/.history/src/api/system/SysSpeedingDept_20250829150957.js new file mode 100644 index 0000000..a17adcc --- /dev/null +++ b/.history/src/api/system/SysSpeedingDept_20250829150957.js @@ -0,0 +1,83 @@ +import request from '@/utils/request' + +// 查询部门树状结构 +export function listDepttree(query) { + return request({ + url: '/system/speedingdept/tree', + method: 'get', + params: query + }) +} + +// 查询部门列表(根据父部门ID查询子部门) +export function listDept(query) { + return request({ + url: '/system/speedingdept/list', + method: 'get', + params: query + }) +} + + + +// 根据父部门ID查询子部门列表 +export function getDept(parentId) { + return request({ + url: '/system/speedingdept/listByParent/' + parentId, + method: 'get' + }) +} + + + +// 查询部门层级信息 +export function getDept(deptId) { + return request({ + url: '/system/speedingdept/level/' + deptId, + method: 'get' + }) +} + + +// 查询部门详细数据 +export function getDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'get' + }) +} + +// 新增部门 +export function addDept(data) { + return request({ + url: '/system/speedingdept', + method: 'post', + data: data + }) +} + +// 修改部门 +export function updateDept(data) { + return request({ + url: '/system/speedingdept', + method: 'put', + data: data + }) +} + +// 获取部门层级选项(用于新增/编辑时的父部门选择) +export function levelOptions() { + return request({ + url: '/system/levelOptions', + method: 'get' + }) +} + + +// 删除部门 +export function delDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'delete' + }) +} diff --git a/.history/src/api/system/SysSpeedingDept_20250829151054.js b/.history/src/api/system/SysSpeedingDept_20250829151054.js new file mode 100644 index 0000000..760d878 --- /dev/null +++ b/.history/src/api/system/SysSpeedingDept_20250829151054.js @@ -0,0 +1,83 @@ +import request from '@/utils/request' + +// 查询部门树状结构 +export function listDepttree(query) { + return request({ + url: '/system/speedingdept/tree', + method: 'get', + params: query + }) +} + +// 查询部门列表(根据父部门ID查询子部门) +export function listDept(query) { + return request({ + url: '/system/speedingdept/list', + method: 'get', + params: query + }) +} + + + +// 根据父部门ID查询子部门列表 +export function getDept(parentId) { + return request({ + url: '/system/speedingdept/listByParent/' + parentId, + method: 'get' + }) +} + + + +// 查询部门层级信息 +export function getDeptlevel(deptId) { + return request({ + url: '/system/speedingdept/level/' + deptId, + method: 'get' + }) +} + + +// 查询部门详细数据 +export function getDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'get' + }) +} + +// 新增部门 +export function addDept(data) { + return request({ + url: '/system/speedingdept', + method: 'post', + data: data + }) +} + +// 修改部门 +export function updateDept(data) { + return request({ + url: '/system/speedingdept', + method: 'put', + data: data + }) +} + +// 获取部门层级选项(用于新增/编辑时的父部门选择) +export function levelOptions() { + return request({ + url: '/system/levelOptions', + method: 'get' + }) +} + + +// 删除部门 +export function delDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'delete' + }) +} diff --git a/.history/src/api/system/SysSpeedingDept_20250829151102.js b/.history/src/api/system/SysSpeedingDept_20250829151102.js new file mode 100644 index 0000000..782981f --- /dev/null +++ b/.history/src/api/system/SysSpeedingDept_20250829151102.js @@ -0,0 +1,83 @@ +import request from '@/utils/request' + +// 查询部门树状结构 +export function listDepttree(query) { + return request({ + url: '/system/speedingdept/tree', + method: 'get', + params: query + }) +} + +// 查询部门列表(根据父部门ID查询子部门) +export function listDept(query) { + return request({ + url: '/system/speedingdept/list', + method: 'get', + params: query + }) +} + + + +// 根据父部门ID查询子部门列表 +export function getDept(parentId) { + return request({ + url: '/system/speedingdept/listByParent/' + parentId, + method: 'get' + }) +} + + + +// 查询部门层级信息 +export function getDeptlevel(deptId) { + return request({ + url: '/system/speedingdept/level/' + deptId, + method: 'get' + }) +} + + +// 查询部门详细数据 +export function getDeptspeedingdept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'get' + }) +} + +// 新增部门 +export function addDept(data) { + return request({ + url: '/system/speedingdept', + method: 'post', + data: data + }) +} + +// 修改部门 +export function updateDept(data) { + return request({ + url: '/system/speedingdept', + method: 'put', + data: data + }) +} + +// 获取部门层级选项(用于新增/编辑时的父部门选择) +export function levelOptions() { + return request({ + url: '/system/levelOptions', + method: 'get' + }) +} + + +// 删除部门 +export function delDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'delete' + }) +} diff --git a/.history/src/api/system/SysSpeedingDept_20250829153002.js b/.history/src/api/system/SysSpeedingDept_20250829153002.js new file mode 100644 index 0000000..51d29a3 --- /dev/null +++ b/.history/src/api/system/SysSpeedingDept_20250829153002.js @@ -0,0 +1,84 @@ +import request from '@/utils/request' + +// 查询部门树状结构 +export function listDepttree(query) { + return request({ + url: '/system/speedingdept/tree', + method: 'get', + params: query + }) +} + +// 查询部门列表(根据父部门ID查询子部门) +export function listDept(query) { + return request({ + url: '/system/speedingdept/list', + method: 'get', + params: query + }) +} + + + +// 根据父部门ID查询子部门列表 +export function getDept(parentId,data) { + return request({ + url: '/system/speedingdept/listByParent/' + parentId, + method: 'get', + params:data + }) +} + + + +// 查询部门层级信息 +export function getDeptlevel(deptId) { + return request({ + url: '/system/speedingdept/level/' + deptId, + method: 'get' + }) +} + + +// 查询部门详细数据 +export function getDeptspeedingdept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'get' + }) +} + +// 新增部门 +export function addDept(data) { + return request({ + url: '/system/speedingdept', + method: 'post', + data: data + }) +} + +// 修改部门 +export function updateDept(data) { + return request({ + url: '/system/speedingdept', + method: 'put', + data: data + }) +} + +// 获取部门层级选项(用于新增/编辑时的父部门选择) +export function levelOptions() { + return request({ + url: '/system/levelOptions', + method: 'get' + }) +} + + +// 删除部门 +export function delDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'delete' + }) +} diff --git a/.history/src/api/system/SysSpeedingDept_20250829155141.js b/.history/src/api/system/SysSpeedingDept_20250829155141.js new file mode 100644 index 0000000..9289516 --- /dev/null +++ b/.history/src/api/system/SysSpeedingDept_20250829155141.js @@ -0,0 +1,85 @@ +import request from '@/utils/request' + +// 查询部门树状结构 +export function listDepttree(query) { + return request({ + url: '/system/speedingdept/tree', + method: 'get', + params: query + }) +} + +// 查询部门列表(根据父部门ID查询子部门) +export function listDept(query) { + return request({ + url: '/system/speedingdept/list', + method: 'get', + params: query + }) +} + + + +// 根据父部门ID查询子部门列表 +export function getDept(parentId,data) { + return request({ + url: '/system/speedingdept/listByParent/' + parentId, + method: 'get', + params:data + }) +} + + + +// 查询部门层级信息 +export function getDeptlevel(deptId) { + return request({ + url: '/system/speedingdept/level/' + deptId, + method: 'get' + }) +} + + +// 查询部门详细数据 +export function getDeptspeedingdept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'get' + }) +} + +// 新增部门 +export function addDept(data) { + return request({ + url: '/system/speedingdept', + method: 'post', + data: data + }) +} + +// 修改部门 +export function updateDept(data) { + return request({ + url: '/system/speedingdept', + method: 'put', + data: data + }) +} + +// 获取部门层级选项(用于新增/编辑时的父部门选择) +export function levelOptions(data) { + return request({ + url: '/system/parentOptionsByLevel', + method: 'get', + data: data + }) +} + + +// 删除部门 +export function delDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'delete' + }) +} diff --git a/.history/src/api/system/SysSpeedingDept_20250829155224.js b/.history/src/api/system/SysSpeedingDept_20250829155224.js new file mode 100644 index 0000000..17446aa --- /dev/null +++ b/.history/src/api/system/SysSpeedingDept_20250829155224.js @@ -0,0 +1,85 @@ +import request from '@/utils/request' + +// 查询部门树状结构 +export function listDepttree(query) { + return request({ + url: '/system/speedingdept/tree', + method: 'get', + params: query + }) +} + +// 查询部门列表(根据父部门ID查询子部门) +export function listDept(query) { + return request({ + url: '/system/speedingdept/list', + method: 'get', + params: query + }) +} + + + +// 根据父部门ID查询子部门列表 +export function getDept(parentId,data) { + return request({ + url: '/system/speedingdept/listByParent/' + parentId, + method: 'get', + params:data + }) +} + + + +// 查询部门层级信息 +export function getDeptlevel(deptId) { + return request({ + url: '/system/speedingdept/level/' + deptId, + method: 'get' + }) +} + + +// 查询部门详细数据 +export function getDeptspeedingdept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'get' + }) +} + +// 新增部门 +export function addDept(data) { + return request({ + url: '/system/speedingdept', + method: 'post', + method: data + }) +} + +// 修改部门 +export function updateDept(data) { + return request({ + url: '/system/speedingdept', + method: 'put', + method: data + }) +} + +// 获取部门层级选项(用于新增/编辑时的父部门选择) +export function levelOptions(data) { + return request({ + url: '/system/parentOptionsByLevel', + method: 'get', + method: data + }) +} + + +// 删除部门 +export function delDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'delete' + }) +} diff --git a/.history/src/api/system/SysSpeedingDept_20250829155312.js b/.history/src/api/system/SysSpeedingDept_20250829155312.js new file mode 100644 index 0000000..a0d459b --- /dev/null +++ b/.history/src/api/system/SysSpeedingDept_20250829155312.js @@ -0,0 +1,85 @@ +import request from '@/utils/request' + +// 查询部门树状结构 +export function listDepttree(query) { + return request({ + url: '/system/speedingdept/tree', + method: 'get', + params: query + }) +} + +// 查询部门列表(根据父部门ID查询子部门) +export function listDept(query) { + return request({ + url: '/system/speedingdept/list', + method: 'get', + params: query + }) +} + + + +// 根据父部门ID查询子部门列表 +export function getDept(parentId,data) { + return request({ + url: '/system/speedingdept/listByParent/' + parentId, + method: 'get', + params:data + }) +} + + + +// 查询部门层级信息 +export function getDeptlevel(deptId) { + return request({ + url: '/system/speedingdept/level/' + deptId, + method: 'get' + }) +} + + +// 查询部门详细数据 +export function getDeptspeedingdept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'get' + }) +} + +// 新增部门 +export function addDept(data) { + return request({ + url: '/system/speedingdept', + method: 'post', + params: data + }) +} + +// 修改部门 +export function updateDept(data) { + return request({ + url: '/system/speedingdept', + method: 'put', + params: data + }) +} + +// 获取部门层级选项(用于新增/编辑时的父部门选择) +export function levelOptions(data) { + return request({ + url: '/system/parentOptionsByLevel', + method: 'get', + params: data + }) +} + + +// 删除部门 +export function delDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'delete' + }) +} diff --git a/.history/src/api/system/SysSpeedingDept_20250829155431.js b/.history/src/api/system/SysSpeedingDept_20250829155431.js new file mode 100644 index 0000000..ef0e665 --- /dev/null +++ b/.history/src/api/system/SysSpeedingDept_20250829155431.js @@ -0,0 +1,85 @@ +import request from '@/utils/request' + +// 查询部门树状结构 +export function listDepttree(query) { + return request({ + url: '/system/speedingdept/tree', + method: 'get', + params: query + }) +} + +// 查询部门列表(根据父部门ID查询子部门) +export function listDept(query) { + return request({ + url: '/system/speedingdept/list', + method: 'get', + params: query + }) +} + + + +// 根据父部门ID查询子部门列表 +export function getDept(parentId,data) { + return request({ + url: '/system/speedingdept/listByParent/' + parentId, + method: 'get', + params:data + }) +} + + + +// 查询部门层级信息 +export function getDeptlevel(deptId) { + return request({ + url: '/system/speedingdept/level/' + deptId, + method: 'get' + }) +} + + +// 查询部门详细数据 +export function getDeptspeedingdept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'get' + }) +} + +// 新增部门 +export function addDept(data) { + return request({ + url: '/system/speedingdept', + method: 'post', + params: data + }) +} + +// 修改部门 +export function updateDept(data) { + return request({ + url: '/system/speedingdept', + method: 'put', + params: data + }) +} + +// 获取部门层级选项(用于新增/编辑时的父部门选择) +export function levelOptions(data) { + return request({ + url: '/system/speedingdept/parentOptionsByLevel', + method: 'get', + params: data + }) +} + + +// 删除部门 +export function delDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'delete' + }) +} diff --git a/.history/src/api/system/SysSpeedingDept_20250829155948.js b/.history/src/api/system/SysSpeedingDept_20250829155948.js new file mode 100644 index 0000000..bfa6e2e --- /dev/null +++ b/.history/src/api/system/SysSpeedingDept_20250829155948.js @@ -0,0 +1,85 @@ +import request from '@/utils/request' + +// 查询部门树状结构 +export function listDepttree(query) { + return request({ + url: '/system/speedingdept/tree', + method: 'get', + params: query + }) +} + +// 查询部门列表(根据父部门ID查询子部门) +export function listDept(query) { + return request({ + url: '/system/speedingdept/list', + method: 'get', + params: query + }) +} + + + +// 根据父部门ID查询子部门列表 +export function getDept(parentId,data) { + return request({ + url: '/system/speedingdept/listByParent/' + parentId, + method: 'get', + params:data + }) +} + + + +// 查询部门层级信息 +export function getDeptlevel(deptId) { + return request({ + url: '/system/speedingdept/level/' + deptId, + method: 'get' + }) +} + + +// 查询部门详细数据 +export function getDeptspeedingdept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'get' + }) +} + +// 新增部门 +export function addDept(data) { + return request({ + url: '/system/speedingdept', + method: 'post', + data: data + }) +} + +// 修改部门 +export function updateDept(data) { + return request({ + url: '/system/speedingdept', + method: 'put', + params: data + }) +} + +// 获取部门层级选项(用于新增/编辑时的父部门选择) +export function levelOptions(data) { + return request({ + url: '/system/speedingdept/parentOptionsByLevel', + method: 'get', + params: data + }) +} + + +// 删除部门 +export function delDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'delete' + }) +} diff --git a/.history/src/views/system/addUser/index_20250828122217.vue b/.history/src/views/system/addUser/index_20250828122217.vue new file mode 100644 index 0000000..a177da4 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250828122217.vue @@ -0,0 +1,424 @@ + + + + + diff --git a/.history/src/views/system/addUser/index_20250829171633.vue b/.history/src/views/system/addUser/index_20250829171633.vue new file mode 100644 index 0000000..2ee0623 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829171633.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829171658.vue b/.history/src/views/system/addUser/index_20250829171658.vue new file mode 100644 index 0000000..a177da4 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829171658.vue @@ -0,0 +1,424 @@ + + + + + diff --git a/.history/src/views/system/addUser/index_20250829171705.vue b/.history/src/views/system/addUser/index_20250829171705.vue new file mode 100644 index 0000000..2ee0623 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829171705.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829171723.vue b/.history/src/views/system/addUser/index_20250829171723.vue new file mode 100644 index 0000000..2ee0623 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829171723.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829171749.vue b/.history/src/views/system/addUser/index_20250829171749.vue new file mode 100644 index 0000000..84cd7e5 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829171749.vue @@ -0,0 +1,480 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829171756.vue b/.history/src/views/system/addUser/index_20250829171756.vue new file mode 100644 index 0000000..a1de8b7 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829171756.vue @@ -0,0 +1,486 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829171805.vue b/.history/src/views/system/addUser/index_20250829171805.vue new file mode 100644 index 0000000..da90317 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829171805.vue @@ -0,0 +1,486 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829171815.vue b/.history/src/views/system/addUser/index_20250829171815.vue new file mode 100644 index 0000000..6e3224a --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829171815.vue @@ -0,0 +1,486 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829171850.vue b/.history/src/views/system/addUser/index_20250829171850.vue new file mode 100644 index 0000000..6307624 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829171850.vue @@ -0,0 +1,473 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829171924.vue b/.history/src/views/system/addUser/index_20250829171924.vue new file mode 100644 index 0000000..ead7e62 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829171924.vue @@ -0,0 +1,473 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829171954.vue b/.history/src/views/system/addUser/index_20250829171954.vue new file mode 100644 index 0000000..ead7e62 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829171954.vue @@ -0,0 +1,473 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829172315.vue b/.history/src/views/system/addUser/index_20250829172315.vue new file mode 100644 index 0000000..c4fd0d4 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829172315.vue @@ -0,0 +1,481 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829172355.vue b/.history/src/views/system/addUser/index_20250829172355.vue new file mode 100644 index 0000000..521c74c --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829172355.vue @@ -0,0 +1,489 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829172410.vue b/.history/src/views/system/addUser/index_20250829172410.vue new file mode 100644 index 0000000..521c74c --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829172410.vue @@ -0,0 +1,489 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829172419.vue b/.history/src/views/system/addUser/index_20250829172419.vue new file mode 100644 index 0000000..46ca874 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829172419.vue @@ -0,0 +1,489 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829173314.vue b/.history/src/views/system/addUser/index_20250829173314.vue new file mode 100644 index 0000000..7c635ec --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829173314.vue @@ -0,0 +1,474 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829173318.vue b/.history/src/views/system/addUser/index_20250829173318.vue new file mode 100644 index 0000000..5d74482 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829173318.vue @@ -0,0 +1,474 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829173543.vue b/.history/src/views/system/addUser/index_20250829173543.vue new file mode 100644 index 0000000..34527cb --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829173543.vue @@ -0,0 +1,480 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829174415.vue b/.history/src/views/system/addUser/index_20250829174415.vue new file mode 100644 index 0000000..0e3d490 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829174415.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829174946.vue b/.history/src/views/system/addUser/index_20250829174946.vue new file mode 100644 index 0000000..13963b1 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829174946.vue @@ -0,0 +1,483 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829174955.vue b/.history/src/views/system/addUser/index_20250829174955.vue new file mode 100644 index 0000000..0f0886e --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829174955.vue @@ -0,0 +1,483 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829175038.vue b/.history/src/views/system/addUser/index_20250829175038.vue new file mode 100644 index 0000000..38d2afc --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829175038.vue @@ -0,0 +1,485 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829175142.vue b/.history/src/views/system/addUser/index_20250829175142.vue new file mode 100644 index 0000000..a19b551 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829175142.vue @@ -0,0 +1,488 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829175309.vue b/.history/src/views/system/addUser/index_20250829175309.vue new file mode 100644 index 0000000..f23bd30 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829175309.vue @@ -0,0 +1,486 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829175438.vue b/.history/src/views/system/addUser/index_20250829175438.vue new file mode 100644 index 0000000..72fbfae --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829175438.vue @@ -0,0 +1,481 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829175622.vue b/.history/src/views/system/addUser/index_20250829175622.vue new file mode 100644 index 0000000..dd8c0cc --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829175622.vue @@ -0,0 +1,481 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829175639.vue b/.history/src/views/system/addUser/index_20250829175639.vue new file mode 100644 index 0000000..2a7db77 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829175639.vue @@ -0,0 +1,527 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829175905.vue b/.history/src/views/system/addUser/index_20250829175905.vue new file mode 100644 index 0000000..7e27df7 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829175905.vue @@ -0,0 +1,528 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829175926.vue b/.history/src/views/system/addUser/index_20250829175926.vue new file mode 100644 index 0000000..96ffdc9 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829175926.vue @@ -0,0 +1,527 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829180003.vue b/.history/src/views/system/addUser/index_20250829180003.vue new file mode 100644 index 0000000..0c25c49 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829180003.vue @@ -0,0 +1,518 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829180023.vue b/.history/src/views/system/addUser/index_20250829180023.vue new file mode 100644 index 0000000..cdaa264 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829180023.vue @@ -0,0 +1,518 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829180115.vue b/.history/src/views/system/addUser/index_20250829180115.vue new file mode 100644 index 0000000..a689216 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829180115.vue @@ -0,0 +1,518 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829180156.vue b/.history/src/views/system/addUser/index_20250829180156.vue new file mode 100644 index 0000000..cc90213 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829180156.vue @@ -0,0 +1,518 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829180226.vue b/.history/src/views/system/addUser/index_20250829180226.vue new file mode 100644 index 0000000..eeb166f --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829180226.vue @@ -0,0 +1,518 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829180249.vue b/.history/src/views/system/addUser/index_20250829180249.vue new file mode 100644 index 0000000..2c4fb05 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829180249.vue @@ -0,0 +1,519 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829180341.vue b/.history/src/views/system/addUser/index_20250829180341.vue new file mode 100644 index 0000000..263ec32 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829180341.vue @@ -0,0 +1,519 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829180405.vue b/.history/src/views/system/addUser/index_20250829180405.vue new file mode 100644 index 0000000..90d4014 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829180405.vue @@ -0,0 +1,519 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829180518.vue b/.history/src/views/system/addUser/index_20250829180518.vue new file mode 100644 index 0000000..82c653e --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829180518.vue @@ -0,0 +1,520 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829180548.vue b/.history/src/views/system/addUser/index_20250829180548.vue new file mode 100644 index 0000000..caee3d9 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829180548.vue @@ -0,0 +1,520 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829180932.vue b/.history/src/views/system/addUser/index_20250829180932.vue new file mode 100644 index 0000000..e0c8817 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829180932.vue @@ -0,0 +1,521 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829180949.vue b/.history/src/views/system/addUser/index_20250829180949.vue new file mode 100644 index 0000000..e0c8817 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829180949.vue @@ -0,0 +1,521 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829181113.vue b/.history/src/views/system/addUser/index_20250829181113.vue new file mode 100644 index 0000000..b1c1b90 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829181113.vue @@ -0,0 +1,521 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829181343.vue b/.history/src/views/system/addUser/index_20250829181343.vue new file mode 100644 index 0000000..bfe63a9 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829181343.vue @@ -0,0 +1,524 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829181359.vue b/.history/src/views/system/addUser/index_20250829181359.vue new file mode 100644 index 0000000..f9ed371 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829181359.vue @@ -0,0 +1,524 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829181444.vue b/.history/src/views/system/addUser/index_20250829181444.vue new file mode 100644 index 0000000..12b3d85 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829181444.vue @@ -0,0 +1,540 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829181753.vue b/.history/src/views/system/addUser/index_20250829181753.vue new file mode 100644 index 0000000..1c5fc79 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829181753.vue @@ -0,0 +1,548 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182056.vue b/.history/src/views/system/addUser/index_20250829182056.vue new file mode 100644 index 0000000..b3860cd --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182056.vue @@ -0,0 +1,549 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182115.vue b/.history/src/views/system/addUser/index_20250829182115.vue new file mode 100644 index 0000000..a81e64b --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182115.vue @@ -0,0 +1,549 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182122.vue b/.history/src/views/system/addUser/index_20250829182122.vue new file mode 100644 index 0000000..f7fed87 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182122.vue @@ -0,0 +1,547 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182128.vue b/.history/src/views/system/addUser/index_20250829182128.vue new file mode 100644 index 0000000..4ecb0f4 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182128.vue @@ -0,0 +1,547 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182406.vue b/.history/src/views/system/addUser/index_20250829182406.vue new file mode 100644 index 0000000..fe9941a --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182406.vue @@ -0,0 +1,561 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182427.vue b/.history/src/views/system/addUser/index_20250829182427.vue new file mode 100644 index 0000000..25135b0 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182427.vue @@ -0,0 +1,578 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182521.vue b/.history/src/views/system/addUser/index_20250829182521.vue new file mode 100644 index 0000000..4476ffb --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182521.vue @@ -0,0 +1,578 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182547.vue b/.history/src/views/system/addUser/index_20250829182547.vue new file mode 100644 index 0000000..5392927 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182547.vue @@ -0,0 +1,579 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182653.vue b/.history/src/views/system/addUser/index_20250829182653.vue new file mode 100644 index 0000000..0f99fb8 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182653.vue @@ -0,0 +1,592 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182740.vue b/.history/src/views/system/addUser/index_20250829182740.vue new file mode 100644 index 0000000..495481e --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182740.vue @@ -0,0 +1,592 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182815.vue b/.history/src/views/system/addUser/index_20250829182815.vue new file mode 100644 index 0000000..f971f77 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182815.vue @@ -0,0 +1,592 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182919.vue b/.history/src/views/system/addUser/index_20250829182919.vue new file mode 100644 index 0000000..ef12fd9 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182919.vue @@ -0,0 +1,592 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182926.vue b/.history/src/views/system/addUser/index_20250829182926.vue new file mode 100644 index 0000000..588217f --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182926.vue @@ -0,0 +1,592 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829182937.vue b/.history/src/views/system/addUser/index_20250829182937.vue new file mode 100644 index 0000000..9682998 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829182937.vue @@ -0,0 +1,592 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829183037.vue b/.history/src/views/system/addUser/index_20250829183037.vue new file mode 100644 index 0000000..dde6528 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829183037.vue @@ -0,0 +1,592 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829183245.vue b/.history/src/views/system/addUser/index_20250829183245.vue new file mode 100644 index 0000000..d8295b6 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829183245.vue @@ -0,0 +1,592 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829183334.vue b/.history/src/views/system/addUser/index_20250829183334.vue new file mode 100644 index 0000000..c137762 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829183334.vue @@ -0,0 +1,593 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829183339.vue b/.history/src/views/system/addUser/index_20250829183339.vue new file mode 100644 index 0000000..c137762 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829183339.vue @@ -0,0 +1,593 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829183439.vue b/.history/src/views/system/addUser/index_20250829183439.vue new file mode 100644 index 0000000..90925ae --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829183439.vue @@ -0,0 +1,589 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829183614.vue b/.history/src/views/system/addUser/index_20250829183614.vue new file mode 100644 index 0000000..d71060c --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829183614.vue @@ -0,0 +1,597 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829183823.vue b/.history/src/views/system/addUser/index_20250829183823.vue new file mode 100644 index 0000000..8c3ca18 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829183823.vue @@ -0,0 +1,597 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829183932.vue b/.history/src/views/system/addUser/index_20250829183932.vue new file mode 100644 index 0000000..f4a2652 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829183932.vue @@ -0,0 +1,597 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829184011.vue b/.history/src/views/system/addUser/index_20250829184011.vue new file mode 100644 index 0000000..e0d7f6c --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829184011.vue @@ -0,0 +1,599 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829184149.vue b/.history/src/views/system/addUser/index_20250829184149.vue new file mode 100644 index 0000000..f71579f --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829184149.vue @@ -0,0 +1,600 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829184237.vue b/.history/src/views/system/addUser/index_20250829184237.vue new file mode 100644 index 0000000..f47150e --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829184237.vue @@ -0,0 +1,600 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829184411.vue b/.history/src/views/system/addUser/index_20250829184411.vue new file mode 100644 index 0000000..ddfbeab --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829184411.vue @@ -0,0 +1,601 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829184606.vue b/.history/src/views/system/addUser/index_20250829184606.vue new file mode 100644 index 0000000..7ab87e5 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829184606.vue @@ -0,0 +1,615 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829184615.vue b/.history/src/views/system/addUser/index_20250829184615.vue new file mode 100644 index 0000000..2ce25f8 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829184615.vue @@ -0,0 +1,615 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829184737.vue b/.history/src/views/system/addUser/index_20250829184737.vue new file mode 100644 index 0000000..9b216ba --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829184737.vue @@ -0,0 +1,625 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829184801.vue b/.history/src/views/system/addUser/index_20250829184801.vue new file mode 100644 index 0000000..1b711b4 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829184801.vue @@ -0,0 +1,625 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829184822.vue b/.history/src/views/system/addUser/index_20250829184822.vue new file mode 100644 index 0000000..cc780ed --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829184822.vue @@ -0,0 +1,625 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829184904.vue b/.history/src/views/system/addUser/index_20250829184904.vue new file mode 100644 index 0000000..690d131 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829184904.vue @@ -0,0 +1,626 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829184954.vue b/.history/src/views/system/addUser/index_20250829184954.vue new file mode 100644 index 0000000..73f027d --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829184954.vue @@ -0,0 +1,626 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829185227.vue b/.history/src/views/system/addUser/index_20250829185227.vue new file mode 100644 index 0000000..293a373 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829185227.vue @@ -0,0 +1,624 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829185253.vue b/.history/src/views/system/addUser/index_20250829185253.vue new file mode 100644 index 0000000..a0eb5cb --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829185253.vue @@ -0,0 +1,639 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829185556.vue b/.history/src/views/system/addUser/index_20250829185556.vue new file mode 100644 index 0000000..e0c49c3 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829185556.vue @@ -0,0 +1,640 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829185652.vue b/.history/src/views/system/addUser/index_20250829185652.vue new file mode 100644 index 0000000..a13136b --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829185652.vue @@ -0,0 +1,640 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829185734.vue b/.history/src/views/system/addUser/index_20250829185734.vue new file mode 100644 index 0000000..95d39f7 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829185734.vue @@ -0,0 +1,641 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829185839.vue b/.history/src/views/system/addUser/index_20250829185839.vue new file mode 100644 index 0000000..11f5e62 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829185839.vue @@ -0,0 +1,641 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829185913.vue b/.history/src/views/system/addUser/index_20250829185913.vue new file mode 100644 index 0000000..883ac8b --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829185913.vue @@ -0,0 +1,641 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829185924.vue b/.history/src/views/system/addUser/index_20250829185924.vue new file mode 100644 index 0000000..28798a8 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829185924.vue @@ -0,0 +1,642 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829185928.vue b/.history/src/views/system/addUser/index_20250829185928.vue new file mode 100644 index 0000000..883ac8b --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829185928.vue @@ -0,0 +1,641 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829190124.vue b/.history/src/views/system/addUser/index_20250829190124.vue new file mode 100644 index 0000000..6712a74 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829190124.vue @@ -0,0 +1,642 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829190137.vue b/.history/src/views/system/addUser/index_20250829190137.vue new file mode 100644 index 0000000..cec27ee --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829190137.vue @@ -0,0 +1,641 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829190333.vue b/.history/src/views/system/addUser/index_20250829190333.vue new file mode 100644 index 0000000..484c396 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829190333.vue @@ -0,0 +1,641 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829190435.vue b/.history/src/views/system/addUser/index_20250829190435.vue new file mode 100644 index 0000000..a886211 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829190435.vue @@ -0,0 +1,640 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829190525.vue b/.history/src/views/system/addUser/index_20250829190525.vue new file mode 100644 index 0000000..dc460dd --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829190525.vue @@ -0,0 +1,640 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829190603.vue b/.history/src/views/system/addUser/index_20250829190603.vue new file mode 100644 index 0000000..5e3c8fe --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829190603.vue @@ -0,0 +1,641 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829190831.vue b/.history/src/views/system/addUser/index_20250829190831.vue new file mode 100644 index 0000000..78e15a8 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829190831.vue @@ -0,0 +1,647 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829190913.vue b/.history/src/views/system/addUser/index_20250829190913.vue new file mode 100644 index 0000000..2b270ee --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829190913.vue @@ -0,0 +1,648 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829190938.vue b/.history/src/views/system/addUser/index_20250829190938.vue new file mode 100644 index 0000000..8faec30 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829190938.vue @@ -0,0 +1,648 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829191109.vue b/.history/src/views/system/addUser/index_20250829191109.vue new file mode 100644 index 0000000..3a164a9 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829191109.vue @@ -0,0 +1,633 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829191127.vue b/.history/src/views/system/addUser/index_20250829191127.vue new file mode 100644 index 0000000..1434a2b --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829191127.vue @@ -0,0 +1,633 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829191153.vue b/.history/src/views/system/addUser/index_20250829191153.vue new file mode 100644 index 0000000..356a4a5 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829191153.vue @@ -0,0 +1,632 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829191224.vue b/.history/src/views/system/addUser/index_20250829191224.vue new file mode 100644 index 0000000..573c3ec --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829191224.vue @@ -0,0 +1,633 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829191314.vue b/.history/src/views/system/addUser/index_20250829191314.vue new file mode 100644 index 0000000..7a1a825 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829191314.vue @@ -0,0 +1,633 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829191517.vue b/.history/src/views/system/addUser/index_20250829191517.vue new file mode 100644 index 0000000..801c68c --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829191517.vue @@ -0,0 +1,634 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829191600.vue b/.history/src/views/system/addUser/index_20250829191600.vue new file mode 100644 index 0000000..e4eb834 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829191600.vue @@ -0,0 +1,634 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829191655.vue b/.history/src/views/system/addUser/index_20250829191655.vue new file mode 100644 index 0000000..168e7e4 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829191655.vue @@ -0,0 +1,634 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829191925.vue b/.history/src/views/system/addUser/index_20250829191925.vue new file mode 100644 index 0000000..7832c89 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829191925.vue @@ -0,0 +1,636 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829192120.vue b/.history/src/views/system/addUser/index_20250829192120.vue new file mode 100644 index 0000000..6061d0a --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829192120.vue @@ -0,0 +1,638 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829192239.vue b/.history/src/views/system/addUser/index_20250829192239.vue new file mode 100644 index 0000000..d245763 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829192239.vue @@ -0,0 +1,638 @@ + + + + diff --git a/.history/src/views/system/addUser/index_20250829192602.vue b/.history/src/views/system/addUser/index_20250829192602.vue new file mode 100644 index 0000000..36339a0 --- /dev/null +++ b/.history/src/views/system/addUser/index_20250829192602.vue @@ -0,0 +1,642 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250828121307.vue b/.history/src/views/system/departmentManagement/index_20250828121307.vue new file mode 100644 index 0000000..1d54862 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250828121307.vue @@ -0,0 +1,419 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829150829.vue b/.history/src/views/system/departmentManagement/index_20250829150829.vue new file mode 100644 index 0000000..d63ea5f --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829150829.vue @@ -0,0 +1,432 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829150932.vue b/.history/src/views/system/departmentManagement/index_20250829150932.vue new file mode 100644 index 0000000..d63ea5f --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829150932.vue @@ -0,0 +1,432 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829151213.vue b/.history/src/views/system/departmentManagement/index_20250829151213.vue new file mode 100644 index 0000000..93bc4c8 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829151213.vue @@ -0,0 +1,432 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829151303.vue b/.history/src/views/system/departmentManagement/index_20250829151303.vue new file mode 100644 index 0000000..4251ad9 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829151303.vue @@ -0,0 +1,432 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829151317.vue b/.history/src/views/system/departmentManagement/index_20250829151317.vue new file mode 100644 index 0000000..155bd50 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829151317.vue @@ -0,0 +1,432 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829151334.vue b/.history/src/views/system/departmentManagement/index_20250829151334.vue new file mode 100644 index 0000000..88240ad --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829151334.vue @@ -0,0 +1,433 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829151442.vue b/.history/src/views/system/departmentManagement/index_20250829151442.vue new file mode 100644 index 0000000..9a7c800 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829151442.vue @@ -0,0 +1,435 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829151537.vue b/.history/src/views/system/departmentManagement/index_20250829151537.vue new file mode 100644 index 0000000..f8af9ac --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829151537.vue @@ -0,0 +1,435 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829151622.vue b/.history/src/views/system/departmentManagement/index_20250829151622.vue new file mode 100644 index 0000000..21e6f1f --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829151622.vue @@ -0,0 +1,435 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829151647.vue b/.history/src/views/system/departmentManagement/index_20250829151647.vue new file mode 100644 index 0000000..1409c49 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829151647.vue @@ -0,0 +1,433 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829152124.vue b/.history/src/views/system/departmentManagement/index_20250829152124.vue new file mode 100644 index 0000000..7bf8ca0 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829152124.vue @@ -0,0 +1,382 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829152219.vue b/.history/src/views/system/departmentManagement/index_20250829152219.vue new file mode 100644 index 0000000..8242530 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829152219.vue @@ -0,0 +1,363 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829152241.vue b/.history/src/views/system/departmentManagement/index_20250829152241.vue new file mode 100644 index 0000000..c042d2a --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829152241.vue @@ -0,0 +1,358 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829152431.vue b/.history/src/views/system/departmentManagement/index_20250829152431.vue new file mode 100644 index 0000000..5db7a48 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829152431.vue @@ -0,0 +1,360 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829152537.vue b/.history/src/views/system/departmentManagement/index_20250829152537.vue new file mode 100644 index 0000000..7aa92f8 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829152537.vue @@ -0,0 +1,362 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829152700.vue b/.history/src/views/system/departmentManagement/index_20250829152700.vue new file mode 100644 index 0000000..6f4e83a --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829152700.vue @@ -0,0 +1,362 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829152722.vue b/.history/src/views/system/departmentManagement/index_20250829152722.vue new file mode 100644 index 0000000..6f4e83a --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829152722.vue @@ -0,0 +1,362 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829153050.vue b/.history/src/views/system/departmentManagement/index_20250829153050.vue new file mode 100644 index 0000000..07cd705 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829153050.vue @@ -0,0 +1,363 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829153126.vue b/.history/src/views/system/departmentManagement/index_20250829153126.vue new file mode 100644 index 0000000..25a685a --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829153126.vue @@ -0,0 +1,363 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829153407.vue b/.history/src/views/system/departmentManagement/index_20250829153407.vue new file mode 100644 index 0000000..bb17bea --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829153407.vue @@ -0,0 +1,363 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829153408.vue b/.history/src/views/system/departmentManagement/index_20250829153408.vue new file mode 100644 index 0000000..ebd4ebe --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829153408.vue @@ -0,0 +1,363 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829153422.vue b/.history/src/views/system/departmentManagement/index_20250829153422.vue new file mode 100644 index 0000000..abe9ecd --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829153422.vue @@ -0,0 +1,364 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829153441.vue b/.history/src/views/system/departmentManagement/index_20250829153441.vue new file mode 100644 index 0000000..1196f0f --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829153441.vue @@ -0,0 +1,364 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829153506.vue b/.history/src/views/system/departmentManagement/index_20250829153506.vue new file mode 100644 index 0000000..9498a21 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829153506.vue @@ -0,0 +1,364 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829153534.vue b/.history/src/views/system/departmentManagement/index_20250829153534.vue new file mode 100644 index 0000000..1e60c68 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829153534.vue @@ -0,0 +1,364 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829153546.vue b/.history/src/views/system/departmentManagement/index_20250829153546.vue new file mode 100644 index 0000000..81440ce --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829153546.vue @@ -0,0 +1,364 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829153742.vue b/.history/src/views/system/departmentManagement/index_20250829153742.vue new file mode 100644 index 0000000..e5b3c1f --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829153742.vue @@ -0,0 +1,365 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829154109.vue b/.history/src/views/system/departmentManagement/index_20250829154109.vue new file mode 100644 index 0000000..960e934 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829154109.vue @@ -0,0 +1,365 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829154228.vue b/.history/src/views/system/departmentManagement/index_20250829154228.vue new file mode 100644 index 0000000..6e0974a --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829154228.vue @@ -0,0 +1,365 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829154246.vue b/.history/src/views/system/departmentManagement/index_20250829154246.vue new file mode 100644 index 0000000..d413844 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829154246.vue @@ -0,0 +1,365 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829154307.vue b/.history/src/views/system/departmentManagement/index_20250829154307.vue new file mode 100644 index 0000000..d413844 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829154307.vue @@ -0,0 +1,365 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829154322.vue b/.history/src/views/system/departmentManagement/index_20250829154322.vue new file mode 100644 index 0000000..8d61722 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829154322.vue @@ -0,0 +1,365 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829154408.vue b/.history/src/views/system/departmentManagement/index_20250829154408.vue new file mode 100644 index 0000000..f6d6cca --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829154408.vue @@ -0,0 +1,365 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829154439.vue b/.history/src/views/system/departmentManagement/index_20250829154439.vue new file mode 100644 index 0000000..35fcf67 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829154439.vue @@ -0,0 +1,369 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829154541.vue b/.history/src/views/system/departmentManagement/index_20250829154541.vue new file mode 100644 index 0000000..fa49c57 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829154541.vue @@ -0,0 +1,374 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829154819.vue b/.history/src/views/system/departmentManagement/index_20250829154819.vue new file mode 100644 index 0000000..4c977ac --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829154819.vue @@ -0,0 +1,378 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829154922.vue b/.history/src/views/system/departmentManagement/index_20250829154922.vue new file mode 100644 index 0000000..4b8127f --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829154922.vue @@ -0,0 +1,383 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829154951.vue b/.history/src/views/system/departmentManagement/index_20250829154951.vue new file mode 100644 index 0000000..ad83b4e --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829154951.vue @@ -0,0 +1,383 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829155010.vue b/.history/src/views/system/departmentManagement/index_20250829155010.vue new file mode 100644 index 0000000..0c0a7aa --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829155010.vue @@ -0,0 +1,383 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829155018.vue b/.history/src/views/system/departmentManagement/index_20250829155018.vue new file mode 100644 index 0000000..5b2bfa5 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829155018.vue @@ -0,0 +1,383 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829155050.vue b/.history/src/views/system/departmentManagement/index_20250829155050.vue new file mode 100644 index 0000000..e8fda68 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829155050.vue @@ -0,0 +1,383 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829155114.vue b/.history/src/views/system/departmentManagement/index_20250829155114.vue new file mode 100644 index 0000000..dae440e --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829155114.vue @@ -0,0 +1,383 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829155155.vue b/.history/src/views/system/departmentManagement/index_20250829155155.vue new file mode 100644 index 0000000..89ccffc --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829155155.vue @@ -0,0 +1,384 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829155206.vue b/.history/src/views/system/departmentManagement/index_20250829155206.vue new file mode 100644 index 0000000..14e381a --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829155206.vue @@ -0,0 +1,384 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829155346.vue b/.history/src/views/system/departmentManagement/index_20250829155346.vue new file mode 100644 index 0000000..14e381a --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829155346.vue @@ -0,0 +1,384 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829155633.vue b/.history/src/views/system/departmentManagement/index_20250829155633.vue new file mode 100644 index 0000000..c9fd22d --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829155633.vue @@ -0,0 +1,384 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829155738.vue b/.history/src/views/system/departmentManagement/index_20250829155738.vue new file mode 100644 index 0000000..e1eaf7e --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829155738.vue @@ -0,0 +1,381 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829155905.vue b/.history/src/views/system/departmentManagement/index_20250829155905.vue new file mode 100644 index 0000000..7dc3fb7 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829155905.vue @@ -0,0 +1,385 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160035.vue b/.history/src/views/system/departmentManagement/index_20250829160035.vue new file mode 100644 index 0000000..31c701d --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160035.vue @@ -0,0 +1,386 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160133.vue b/.history/src/views/system/departmentManagement/index_20250829160133.vue new file mode 100644 index 0000000..03a653d --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160133.vue @@ -0,0 +1,386 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160234.vue b/.history/src/views/system/departmentManagement/index_20250829160234.vue new file mode 100644 index 0000000..d523dfe --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160234.vue @@ -0,0 +1,386 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160310.vue b/.history/src/views/system/departmentManagement/index_20250829160310.vue new file mode 100644 index 0000000..d523dfe --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160310.vue @@ -0,0 +1,386 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160320.vue b/.history/src/views/system/departmentManagement/index_20250829160320.vue new file mode 100644 index 0000000..d523dfe --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160320.vue @@ -0,0 +1,386 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160321.vue b/.history/src/views/system/departmentManagement/index_20250829160321.vue new file mode 100644 index 0000000..d523dfe --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160321.vue @@ -0,0 +1,386 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160350.vue b/.history/src/views/system/departmentManagement/index_20250829160350.vue new file mode 100644 index 0000000..c462560 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160350.vue @@ -0,0 +1,387 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160405.vue b/.history/src/views/system/departmentManagement/index_20250829160405.vue new file mode 100644 index 0000000..b32aa75 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160405.vue @@ -0,0 +1,387 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160421.vue b/.history/src/views/system/departmentManagement/index_20250829160421.vue new file mode 100644 index 0000000..fbb5089 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160421.vue @@ -0,0 +1,386 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160527.vue b/.history/src/views/system/departmentManagement/index_20250829160527.vue new file mode 100644 index 0000000..2d0f8ce --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160527.vue @@ -0,0 +1,392 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160606.vue b/.history/src/views/system/departmentManagement/index_20250829160606.vue new file mode 100644 index 0000000..dfc95fe --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160606.vue @@ -0,0 +1,392 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160618.vue b/.history/src/views/system/departmentManagement/index_20250829160618.vue new file mode 100644 index 0000000..221158c --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160618.vue @@ -0,0 +1,392 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160646.vue b/.history/src/views/system/departmentManagement/index_20250829160646.vue new file mode 100644 index 0000000..8817c4f --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160646.vue @@ -0,0 +1,392 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160820.vue b/.history/src/views/system/departmentManagement/index_20250829160820.vue new file mode 100644 index 0000000..2bb946d --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160820.vue @@ -0,0 +1,393 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160835.vue b/.history/src/views/system/departmentManagement/index_20250829160835.vue new file mode 100644 index 0000000..c3a0bcc --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160835.vue @@ -0,0 +1,389 @@ + + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160843.vue b/.history/src/views/system/departmentManagement/index_20250829160843.vue new file mode 100644 index 0000000..434dada --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160843.vue @@ -0,0 +1,384 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160918.vue b/.history/src/views/system/departmentManagement/index_20250829160918.vue new file mode 100644 index 0000000..132db3d --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160918.vue @@ -0,0 +1,385 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829160932.vue b/.history/src/views/system/departmentManagement/index_20250829160932.vue new file mode 100644 index 0000000..4954de3 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829160932.vue @@ -0,0 +1,388 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829161115.vue b/.history/src/views/system/departmentManagement/index_20250829161115.vue new file mode 100644 index 0000000..b2a729c --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829161115.vue @@ -0,0 +1,444 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829161214.vue b/.history/src/views/system/departmentManagement/index_20250829161214.vue new file mode 100644 index 0000000..8c904fa --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829161214.vue @@ -0,0 +1,442 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829161230.vue b/.history/src/views/system/departmentManagement/index_20250829161230.vue new file mode 100644 index 0000000..f5ae255 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829161230.vue @@ -0,0 +1,444 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829161248.vue b/.history/src/views/system/departmentManagement/index_20250829161248.vue new file mode 100644 index 0000000..0ddee0d --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829161248.vue @@ -0,0 +1,445 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829161304.vue b/.history/src/views/system/departmentManagement/index_20250829161304.vue new file mode 100644 index 0000000..4ef89f3 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829161304.vue @@ -0,0 +1,445 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829161452.vue b/.history/src/views/system/departmentManagement/index_20250829161452.vue new file mode 100644 index 0000000..b01bf29 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829161452.vue @@ -0,0 +1,452 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829161548.vue b/.history/src/views/system/departmentManagement/index_20250829161548.vue new file mode 100644 index 0000000..bc0cb92 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829161548.vue @@ -0,0 +1,452 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829161622.vue b/.history/src/views/system/departmentManagement/index_20250829161622.vue new file mode 100644 index 0000000..4f45cd8 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829161622.vue @@ -0,0 +1,452 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829161649.vue b/.history/src/views/system/departmentManagement/index_20250829161649.vue new file mode 100644 index 0000000..419ca91 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829161649.vue @@ -0,0 +1,452 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829161750.vue b/.history/src/views/system/departmentManagement/index_20250829161750.vue new file mode 100644 index 0000000..b7a9681 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829161750.vue @@ -0,0 +1,452 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829161839.vue b/.history/src/views/system/departmentManagement/index_20250829161839.vue new file mode 100644 index 0000000..e8ee3f4 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829161839.vue @@ -0,0 +1,455 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829161847.vue b/.history/src/views/system/departmentManagement/index_20250829161847.vue new file mode 100644 index 0000000..6e39ffc --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829161847.vue @@ -0,0 +1,454 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829161914.vue b/.history/src/views/system/departmentManagement/index_20250829161914.vue new file mode 100644 index 0000000..a73577c --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829161914.vue @@ -0,0 +1,454 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829162155.vue b/.history/src/views/system/departmentManagement/index_20250829162155.vue new file mode 100644 index 0000000..e1e5034 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829162155.vue @@ -0,0 +1,454 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829162307.vue b/.history/src/views/system/departmentManagement/index_20250829162307.vue new file mode 100644 index 0000000..135f9b6 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829162307.vue @@ -0,0 +1,452 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829162322.vue b/.history/src/views/system/departmentManagement/index_20250829162322.vue new file mode 100644 index 0000000..8008b12 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829162322.vue @@ -0,0 +1,452 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829162334.vue b/.history/src/views/system/departmentManagement/index_20250829162334.vue new file mode 100644 index 0000000..98f4a36 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829162334.vue @@ -0,0 +1,453 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829162447.vue b/.history/src/views/system/departmentManagement/index_20250829162447.vue new file mode 100644 index 0000000..ee27f00 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829162447.vue @@ -0,0 +1,454 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829163120.vue b/.history/src/views/system/departmentManagement/index_20250829163120.vue new file mode 100644 index 0000000..013dfe3 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829163120.vue @@ -0,0 +1,457 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829163132.vue b/.history/src/views/system/departmentManagement/index_20250829163132.vue new file mode 100644 index 0000000..c8e6a1a --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829163132.vue @@ -0,0 +1,457 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829163229.vue b/.history/src/views/system/departmentManagement/index_20250829163229.vue new file mode 100644 index 0000000..9e09d00 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829163229.vue @@ -0,0 +1,455 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829163723.vue b/.history/src/views/system/departmentManagement/index_20250829163723.vue new file mode 100644 index 0000000..b92e3da --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829163723.vue @@ -0,0 +1,457 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829163809.vue b/.history/src/views/system/departmentManagement/index_20250829163809.vue new file mode 100644 index 0000000..32bd3f5 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829163809.vue @@ -0,0 +1,458 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829163845.vue b/.history/src/views/system/departmentManagement/index_20250829163845.vue new file mode 100644 index 0000000..d523af4 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829163845.vue @@ -0,0 +1,459 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829163956.vue b/.history/src/views/system/departmentManagement/index_20250829163956.vue new file mode 100644 index 0000000..e5cd29e --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829163956.vue @@ -0,0 +1,461 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829164138.vue b/.history/src/views/system/departmentManagement/index_20250829164138.vue new file mode 100644 index 0000000..418b8b0 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829164138.vue @@ -0,0 +1,469 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829164316.vue b/.history/src/views/system/departmentManagement/index_20250829164316.vue new file mode 100644 index 0000000..60f5def --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829164316.vue @@ -0,0 +1,471 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829164333.vue b/.history/src/views/system/departmentManagement/index_20250829164333.vue new file mode 100644 index 0000000..522c011 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829164333.vue @@ -0,0 +1,471 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829164424.vue b/.history/src/views/system/departmentManagement/index_20250829164424.vue new file mode 100644 index 0000000..46ac5c4 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829164424.vue @@ -0,0 +1,469 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829164730.vue b/.history/src/views/system/departmentManagement/index_20250829164730.vue new file mode 100644 index 0000000..51aa82a --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829164730.vue @@ -0,0 +1,469 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829164742.vue b/.history/src/views/system/departmentManagement/index_20250829164742.vue new file mode 100644 index 0000000..46ac5c4 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829164742.vue @@ -0,0 +1,469 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829164823.vue b/.history/src/views/system/departmentManagement/index_20250829164823.vue new file mode 100644 index 0000000..51aa82a --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829164823.vue @@ -0,0 +1,469 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829164957.vue b/.history/src/views/system/departmentManagement/index_20250829164957.vue new file mode 100644 index 0000000..ac97190 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829164957.vue @@ -0,0 +1,469 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829165018.vue b/.history/src/views/system/departmentManagement/index_20250829165018.vue new file mode 100644 index 0000000..9d14a2b --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829165018.vue @@ -0,0 +1,469 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829165129.vue b/.history/src/views/system/departmentManagement/index_20250829165129.vue new file mode 100644 index 0000000..08e8e0f --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829165129.vue @@ -0,0 +1,471 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829165220.vue b/.history/src/views/system/departmentManagement/index_20250829165220.vue new file mode 100644 index 0000000..d2465b7 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829165220.vue @@ -0,0 +1,472 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829165225.vue b/.history/src/views/system/departmentManagement/index_20250829165225.vue new file mode 100644 index 0000000..ec58e14 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829165225.vue @@ -0,0 +1,472 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829165646.vue b/.history/src/views/system/departmentManagement/index_20250829165646.vue new file mode 100644 index 0000000..3fd7047 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829165646.vue @@ -0,0 +1,472 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829165929.vue b/.history/src/views/system/departmentManagement/index_20250829165929.vue new file mode 100644 index 0000000..25ca516 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829165929.vue @@ -0,0 +1,474 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829170025.vue b/.history/src/views/system/departmentManagement/index_20250829170025.vue new file mode 100644 index 0000000..9ecd5c0 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829170025.vue @@ -0,0 +1,474 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829170032.vue b/.history/src/views/system/departmentManagement/index_20250829170032.vue new file mode 100644 index 0000000..4e7387b --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829170032.vue @@ -0,0 +1,474 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829170036.vue b/.history/src/views/system/departmentManagement/index_20250829170036.vue new file mode 100644 index 0000000..9ecd5c0 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829170036.vue @@ -0,0 +1,474 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829170227.vue b/.history/src/views/system/departmentManagement/index_20250829170227.vue new file mode 100644 index 0000000..368c003 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829170227.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829171223.vue b/.history/src/views/system/departmentManagement/index_20250829171223.vue new file mode 100644 index 0000000..05c2a0c --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829171223.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829171229.vue b/.history/src/views/system/departmentManagement/index_20250829171229.vue new file mode 100644 index 0000000..6ff51b4 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829171229.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829171234.vue b/.history/src/views/system/departmentManagement/index_20250829171234.vue new file mode 100644 index 0000000..fa77a82 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829171234.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829171244.vue b/.history/src/views/system/departmentManagement/index_20250829171244.vue new file mode 100644 index 0000000..29e43e8 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829171244.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829171246.vue b/.history/src/views/system/departmentManagement/index_20250829171246.vue new file mode 100644 index 0000000..6ff51b4 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829171246.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829171348.vue b/.history/src/views/system/departmentManagement/index_20250829171348.vue new file mode 100644 index 0000000..22fe41c --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829171348.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829171354.vue b/.history/src/views/system/departmentManagement/index_20250829171354.vue new file mode 100644 index 0000000..3253f3e --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829171354.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829171358.vue b/.history/src/views/system/departmentManagement/index_20250829171358.vue new file mode 100644 index 0000000..f41e62c --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829171358.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829171433.vue b/.history/src/views/system/departmentManagement/index_20250829171433.vue new file mode 100644 index 0000000..699d496 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829171433.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829171533.vue b/.history/src/views/system/departmentManagement/index_20250829171533.vue new file mode 100644 index 0000000..2ee0623 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829171533.vue @@ -0,0 +1,478 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829171736.vue b/.history/src/views/system/departmentManagement/index_20250829171736.vue new file mode 100644 index 0000000..dbb3828 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829171736.vue @@ -0,0 +1,486 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829171742.vue b/.history/src/views/system/departmentManagement/index_20250829171742.vue new file mode 100644 index 0000000..65d3b14 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829171742.vue @@ -0,0 +1,479 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829183949.vue b/.history/src/views/system/departmentManagement/index_20250829183949.vue new file mode 100644 index 0000000..e32af79 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829183949.vue @@ -0,0 +1,479 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829191803.vue b/.history/src/views/system/departmentManagement/index_20250829191803.vue new file mode 100644 index 0000000..f796dff --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829191803.vue @@ -0,0 +1,481 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829191849.vue b/.history/src/views/system/departmentManagement/index_20250829191849.vue new file mode 100644 index 0000000..df0e42e --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829191849.vue @@ -0,0 +1,488 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829191930.vue b/.history/src/views/system/departmentManagement/index_20250829191930.vue new file mode 100644 index 0000000..90cac97 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829191930.vue @@ -0,0 +1,489 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829191959.vue b/.history/src/views/system/departmentManagement/index_20250829191959.vue new file mode 100644 index 0000000..335e26b --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829191959.vue @@ -0,0 +1,490 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829192306.vue b/.history/src/views/system/departmentManagement/index_20250829192306.vue new file mode 100644 index 0000000..4c84e7f --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829192306.vue @@ -0,0 +1,492 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829192333.vue b/.history/src/views/system/departmentManagement/index_20250829192333.vue new file mode 100644 index 0000000..7a4c5f8 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829192333.vue @@ -0,0 +1,492 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829192454.vue b/.history/src/views/system/departmentManagement/index_20250829192454.vue new file mode 100644 index 0000000..22a9101 --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829192454.vue @@ -0,0 +1,496 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829192529.vue b/.history/src/views/system/departmentManagement/index_20250829192529.vue new file mode 100644 index 0000000..e918d1e --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829192529.vue @@ -0,0 +1,496 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829192535.vue b/.history/src/views/system/departmentManagement/index_20250829192535.vue new file mode 100644 index 0000000..572f3ec --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829192535.vue @@ -0,0 +1,496 @@ + + + + diff --git a/.history/src/views/system/departmentManagement/index_20250829192550.vue b/.history/src/views/system/departmentManagement/index_20250829192550.vue new file mode 100644 index 0000000..e282dfb --- /dev/null +++ b/.history/src/views/system/departmentManagement/index_20250829192550.vue @@ -0,0 +1,496 @@ + + + + diff --git a/.history/vite.config_20250828100205.js b/.history/vite.config_20250828100205.js new file mode 100644 index 0000000..6f318ee --- /dev/null +++ b/.history/vite.config_20250828100205.js @@ -0,0 +1,78 @@ +import { defineConfig, loadEnv } from 'vite' +import path from 'path' +import createVitePlugins from './vite/plugins' +const baseUrl = 'http://192.168.1.6:8777' // 后端接口 +// const baseUrl = 'https://api.huafurenjia.cn' +// https://vitejs.dev/config/ +export default defineConfig(({ mode, command }) => { + const env = loadEnv(mode, process.cwd()) + const { VITE_APP_ENV } = env + return { + // 部署生产环境和开发环境下的URL。 + // 默认情况下,vite 会假设你的应用是被部署在一个域名的根路径上 + // 例如 https://www.ruoyi.vip/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://www.ruoyi.vip/admin/,则设置 baseUrl 为 /admin/。 + base: VITE_APP_ENV === 'production' ? '/' : '/', + plugins: createVitePlugins(env, command === 'build'), + resolve: { + // https://cn.vitejs.dev/config/#resolve-alias + alias: { + // 设置路径 + '~': path.resolve(__dirname, './'), + // 设置别名 + '@': path.resolve(__dirname, './src') + }, + // https://cn.vitejs.dev/config/#resolve-extensions + extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue'] + }, + // 打包配置 + build: { + // https://vite.dev/config/build-options.html + sourcemap: command === 'build' ? false : 'inline', + outDir: 'dist', + assetsDir: 'assets', + chunkSizeWarningLimit: 2000, + rollupOptions: { + output: { + chunkFileNames: 'static/js/[name]-[hash].js', + entryFileNames: 'static/js/[name]-[hash].js', + assetFileNames: 'static/[ext]/[name]-[hash].[ext]' + } + } + }, + // vite 相关配置 + server: { + port: 80, + host: true, + open: true, + proxy: { + // https://cn.vitejs.dev/config/#server-proxy + '/dev-api': { + target: baseUrl, + changeOrigin: true, + rewrite: (p) => p.replace(/^\/dev-api/, '') + }, + // springdoc proxy + '^/v3/api-docs/(.*)': { + target: baseUrl, + changeOrigin: true, + } + } + }, + css: { + postcss: { + plugins: [ + { + postcssPlugin: 'internal:charset-removal', + AtRule: { + charset: (atRule) => { + if (atRule.name === 'charset') { + atRule.remove() + } + } + } + } + ] + } + } + } +}) diff --git a/.history/vite.config_20250829142319.js b/.history/vite.config_20250829142319.js new file mode 100644 index 0000000..159ed81 --- /dev/null +++ b/.history/vite.config_20250829142319.js @@ -0,0 +1,78 @@ +import { defineConfig, loadEnv } from 'vite' +import path from 'path' +import createVitePlugins from './vite/plugins' +const baseUrl = 'http://192.168.1.6:8566' // 后端接口 +// const baseUrl = 'https://api.huafurenjia.cn' +// https://vitejs.dev/config/ +export default defineConfig(({ mode, command }) => { + const env = loadEnv(mode, process.cwd()) + const { VITE_APP_ENV } = env + return { + // 部署生产环境和开发环境下的URL。 + // 默认情况下,vite 会假设你的应用是被部署在一个域名的根路径上 + // 例如 https://www.ruoyi.vip/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://www.ruoyi.vip/admin/,则设置 baseUrl 为 /admin/。 + base: VITE_APP_ENV === 'production' ? '/' : '/', + plugins: createVitePlugins(env, command === 'build'), + resolve: { + // https://cn.vitejs.dev/config/#resolve-alias + alias: { + // 设置路径 + '~': path.resolve(__dirname, './'), + // 设置别名 + '@': path.resolve(__dirname, './src') + }, + // https://cn.vitejs.dev/config/#resolve-extensions + extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue'] + }, + // 打包配置 + build: { + // https://vite.dev/config/build-options.html + sourcemap: command === 'build' ? false : 'inline', + outDir: 'dist', + assetsDir: 'assets', + chunkSizeWarningLimit: 2000, + rollupOptions: { + output: { + chunkFileNames: 'static/js/[name]-[hash].js', + entryFileNames: 'static/js/[name]-[hash].js', + assetFileNames: 'static/[ext]/[name]-[hash].[ext]' + } + } + }, + // vite 相关配置 + server: { + port: 80, + host: true, + open: true, + proxy: { + // https://cn.vitejs.dev/config/#server-proxy + '/dev-api': { + target: baseUrl, + changeOrigin: true, + rewrite: (p) => p.replace(/^\/dev-api/, '') + }, + // springdoc proxy + '^/v3/api-docs/(.*)': { + target: baseUrl, + changeOrigin: true, + } + } + }, + css: { + postcss: { + plugins: [ + { + postcssPlugin: 'internal:charset-removal', + AtRule: { + charset: (atRule) => { + if (atRule.name === 'charset') { + atRule.remove() + } + } + } + } + ] + } + } + } +}) diff --git a/src/api/system/SpeedingAlertSettings.js b/src/api/system/SpeedingAlertSettings.js new file mode 100644 index 0000000..b42db9a --- /dev/null +++ b/src/api/system/SpeedingAlertSettings.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询预警设备设置列表 +export function listSpeedingAlertSettings(query) { + return request({ + url: '/system/SpeedingAlertSettings/list', + method: 'get', + params: query + }) +} + +// 查询预警设备设置详细 +export function getSpeedingAlertSettings(id) { + return request({ + url: '/system/SpeedingAlertSettings/' + id, + method: 'get' + }) +} + +// 新增预警设备设置 +export function addSpeedingAlertSettings(data) { + return request({ + url: '/system/SpeedingAlertSettings', + method: 'post', + data: data + }) +} + +// 修改预警设备设置 +export function updateSpeedingAlertSettings(data) { + return request({ + url: '/system/SpeedingAlertSettings', + method: 'put', + data: data + }) +} + +// 删除预警设备设置 +export function delSpeedingAlertSettings(id) { + return request({ + url: '/system/SpeedingAlertSettings/' + id, + method: 'delete' + }) +} diff --git a/src/api/system/SpeedingEquipmentManagement.js b/src/api/system/SpeedingEquipmentManagement.js new file mode 100644 index 0000000..b6eb443 --- /dev/null +++ b/src/api/system/SpeedingEquipmentManagement.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询设备管理列表 +export function listSpeedingEquipmentManagement(query) { + return request({ + url: '/system/SpeedingEquipmentManagement/list', + method: 'get', + params: query + }) +} + +// 查询设备管理详细 +export function getSpeedingEquipmentManagement(id) { + return request({ + url: '/system/SpeedingEquipmentManagement/' + id, + method: 'get' + }) +} + +// 新增设备管理 +export function addSpeedingEquipmentManagement(data) { + return request({ + url: '/system/SpeedingEquipmentManagement', + method: 'post', + data: data + }) +} + +// 修改设备管理 +export function updateSpeedingEquipmentManagement(data) { + return request({ + url: '/system/SpeedingEquipmentManagement', + method: 'put', + data: data + }) +} + +// 删除设备管理 +export function delSpeedingEquipmentManagement(id) { + return request({ + url: '/system/SpeedingEquipmentManagement/' + id, + method: 'delete' + }) +} diff --git a/src/api/system/SpeedingPush.js b/src/api/system/SpeedingPush.js new file mode 100644 index 0000000..e1ee9ad --- /dev/null +++ b/src/api/system/SpeedingPush.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询超速推送列表 +export function listSpeedingPush(query) { + return request({ + url: '/system/SpeedingPush/list', + method: 'get', + params: query + }) +} + +// 查询超速推送详细 +export function getSpeedingPush(id) { + return request({ + url: '/system/SpeedingPush/' + id, + method: 'get' + }) +} + +// 新增超速推送 +export function addSpeedingPush(data) { + return request({ + url: '/system/SpeedingPush', + method: 'post', + data: data + }) +} + +// 修改超速推送 +export function updateSpeedingPush(data) { + return request({ + url: '/system/SpeedingPush', + method: 'put', + data: data + }) +} + +// 删除超速推送 +export function delSpeedingPush(id) { + return request({ + url: '/system/SpeedingPush/' + id, + method: 'delete' + }) +} diff --git a/src/api/system/SpeedingVehicleInformation.js b/src/api/system/SpeedingVehicleInformation.js new file mode 100644 index 0000000..1e24d76 --- /dev/null +++ b/src/api/system/SpeedingVehicleInformation.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询过车信息列表 +export function listSpeedingVehicleInformation(query) { + return request({ + url: '/system/SpeedingVehicleInformation/list', + method: 'get', + params: query + }) +} + +// 查询过车信息详细 +export function getSpeedingVehicleInformation(id) { + return request({ + url: '/system/SpeedingVehicleInformation/' + id, + method: 'get' + }) +} + +// 新增过车信息 +export function addSpeedingVehicleInformation(data) { + return request({ + url: '/system/SpeedingVehicleInformation', + method: 'post', + data: data + }) +} + +// 修改过车信息 +export function updateSpeedingVehicleInformation(data) { + return request({ + url: '/system/SpeedingVehicleInformation', + method: 'put', + data: data + }) +} + +// 删除过车信息 +export function delSpeedingVehicleInformation(id) { + return request({ + url: '/system/SpeedingVehicleInformation/' + id, + method: 'delete' + }) +} diff --git a/src/api/system/SysSpeedingDept.js b/src/api/system/SysSpeedingDept.js new file mode 100644 index 0000000..bfa6e2e --- /dev/null +++ b/src/api/system/SysSpeedingDept.js @@ -0,0 +1,85 @@ +import request from '@/utils/request' + +// 查询部门树状结构 +export function listDepttree(query) { + return request({ + url: '/system/speedingdept/tree', + method: 'get', + params: query + }) +} + +// 查询部门列表(根据父部门ID查询子部门) +export function listDept(query) { + return request({ + url: '/system/speedingdept/list', + method: 'get', + params: query + }) +} + + + +// 根据父部门ID查询子部门列表 +export function getDept(parentId,data) { + return request({ + url: '/system/speedingdept/listByParent/' + parentId, + method: 'get', + params:data + }) +} + + + +// 查询部门层级信息 +export function getDeptlevel(deptId) { + return request({ + url: '/system/speedingdept/level/' + deptId, + method: 'get' + }) +} + + +// 查询部门详细数据 +export function getDeptspeedingdept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'get' + }) +} + +// 新增部门 +export function addDept(data) { + return request({ + url: '/system/speedingdept', + method: 'post', + data: data + }) +} + +// 修改部门 +export function updateDept(data) { + return request({ + url: '/system/speedingdept', + method: 'put', + params: data + }) +} + +// 获取部门层级选项(用于新增/编辑时的父部门选择) +export function levelOptions(data) { + return request({ + url: '/system/speedingdept/parentOptionsByLevel', + method: 'get', + params: data + }) +} + + +// 删除部门 +export function delDept(deptId) { + return request({ + url: '/system/speedingdept/' + deptId, + method: 'delete' + }) +} diff --git a/src/views/system/SpeedingAlertSettings/index.vue b/src/views/system/SpeedingAlertSettings/index.vue new file mode 100644 index 0000000..ba44854 --- /dev/null +++ b/src/views/system/SpeedingAlertSettings/index.vue @@ -0,0 +1,525 @@ + + + diff --git a/src/views/system/SpeedingEquipmentManagement/index.vue b/src/views/system/SpeedingEquipmentManagement/index.vue new file mode 100644 index 0000000..a489e80 --- /dev/null +++ b/src/views/system/SpeedingEquipmentManagement/index.vue @@ -0,0 +1,429 @@ + + + diff --git a/src/views/system/SpeedingPush/index.vue b/src/views/system/SpeedingPush/index.vue new file mode 100644 index 0000000..d9cfb99 --- /dev/null +++ b/src/views/system/SpeedingPush/index.vue @@ -0,0 +1,354 @@ + + + diff --git a/src/views/system/SpeedingVehicleInformation/index.vue b/src/views/system/SpeedingVehicleInformation/index.vue new file mode 100644 index 0000000..08094eb --- /dev/null +++ b/src/views/system/SpeedingVehicleInformation/index.vue @@ -0,0 +1,634 @@ + + + diff --git a/src/views/system/addUser/index.vue b/src/views/system/addUser/index.vue index a177da4..36339a0 100644 --- a/src/views/system/addUser/index.vue +++ b/src/views/system/addUser/index.vue @@ -1,91 +1,152 @@ +// 左边数据 +function getthreedata(type = true) { + listDepttree().then((res) => { + data.value = res.data; + if (res.data.length && type) { + deptId.value = 0; + } + getusertlist(); + }); +} +getthreedata(); +getDeptTree(); +/** 查询用户列表 */ +function getusertlist() { + loading.value = true; + listUser(proxy.addDateRange(queryParams.value, dateRange.value)).then( + (res) => { + + loading.value = false; + tableData.value = res.rows; + total.value = res.total; + } + ); +} +/** 查询部门下拉树结构 */ +function getDeptTree() { + deptTreeSelect().then((response) => { + deptOptions.value = response.data; + enabledDeptOptions.value = filterDisabledDept( + JSON.parse(JSON.stringify(response.data)) + ); + }); +} + +/** 过滤禁用的部门 */ +function filterDisabledDept(deptList) { + return deptList.filter((dept) => { + if (dept.disabled) { + return false; + } + if (dept.children && dept.children.length) { + dept.children = filterDisabledDept(dept.children); + } + return true; + }); +} + + + +/** 新增按钮操作 */ +function handleAdd() { + reset(); + getUser().then((response) => { + postOptions.value = response.posts; + roleOptions.value = response.roles; + dialogVisible.value = true; + title.value = "添加用户"; + form.value.password = initPassword.value; + }); +} +/** 重置操作表单 */ +function reset() { + form.value = { + userId: undefined, + deptId: undefined, + userName: undefined, + nickName: undefined, + password: undefined, + phonenumber: undefined, + email: undefined, + sex: undefined, + status: "0", + remark: undefined, + postIds: [], + roleIds: "", + }; + proxy.resetForm("userRef"); +} +// 搜索 +function listSearch(e) { + console.log(e); + if ((e && e.keyCode && e.keyCode == 13) || !e || e.length) { + queryParams.value.pageNum = 1; + getusertlist(); + } +} +/** 修改按钮操作 */ +function handleUpdate(row) { + reset(); + const userId = row.userId || ids.value; + getUser(userId).then((response) => { + form.value = response.data; + postOptions.value = response.posts; + roleOptions.value = response.roles; + form.value.postIds = response.postIds; + form.value.roleIds = response.roleIds[0]; + dialogVisible.value = true; + title.value = "修改用户"; + form.password = ""; + }); +} +/** 删除按钮操作 */ +function handleDelete(row) { + const userIds = row.userId || ids.value; + proxy.$modal + .confirm('是否确认删除用户编号为"' + userIds + '"的数据项?') + .then(function () { + return delUser(userIds); + }) + .then(() => { + getList(); + proxy.$modal.msgSuccess("删除成功"); + }) + .catch(() => {}); +} +onMounted(() => { + getDeptTree(); + getusertlist(); + proxy.getConfigKey("sys.user.initPassword").then((response) => { + initPassword.value = response.msg; + }); +}); +