ss
Some checks failed
GitHub Actions Mirror / mirror_to_gitee (push) Has been cancelled
GitHub Actions Mirror / mirror_to_gitlab (push) Has been cancelled
build / build (10.x) (push) Has been cancelled
build / build (12.x) (push) Has been cancelled

This commit is contained in:
2025-06-29 00:40:17 +08:00
commit bc67220ef1
489 changed files with 66822 additions and 0 deletions

12
src/App.vue Normal file
View File

@ -0,0 +1,12 @@
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App'
}
</script>

View File

@ -0,0 +1,62 @@
import request from '@/utils/request'
// 查询字典数据列表
export function listData(query) {
return request({
url: '/api/v1/dict/data?dictType=' + query.dictType,
method: 'get',
params: query
})
}
// 查询字典数据详细
export function getData(dictCode) {
return request({
url: '/api/v1/dict/data/' + dictCode,
method: 'get'
})
}
// 根据字典类型查询字典数据信息
export function getDicts(dictType) {
return request({
url: '/api/v1/dict-data/option-select?dictType=' + dictType,
method: 'get'
})
}
// 新增字典数据
export function addData(data) {
return request({
url: '/api/v1/dict/data',
method: 'post',
data: data
})
}
// 修改字典数据
export function updateData(data) {
return request({
url: '/api/v1/dict/data/' + data.dictCode,
method: 'put',
data: data
})
}
// 删除字典数据
export function delData(dictCode) {
return request({
url: '/api/v1/dict/data',
method: 'delete',
data: dictCode
})
}
// 导出字典数据
export function exportData(query) {
return request({
url: '/api/v1/dict/data/export',
method: 'get',
params: query
})
}

View File

@ -0,0 +1,62 @@
import request from '@/utils/request'
// 查询字典类型列表
export function listType(query) {
return request({
url: '/api/v1/dict/type',
method: 'get',
params: query
})
}
// 查询字典类型详细
export function getType(dictId) {
return request({
url: '/api/v1/dict/type/' + dictId,
method: 'get'
})
}
// 新增字典类型
export function addType(data) {
return request({
url: '/api/v1/dict/type',
method: 'post',
data: data
})
}
// 修改字典类型
export function updateType(data) {
return request({
url: '/api/v1/dict/type/' + data.id,
method: 'put',
data: data
})
}
// 删除字典类型
export function delType(dictId) {
return request({
url: '/api/v1/dict/type',
method: 'delete',
data: dictId
})
}
// 导出字典类型
export function exportType(query) {
return request({
url: '/api/v1/dict/type/export',
method: 'get',
params: query
})
}
// 获取字典选择框列表
export function optionselect() {
return request({
url: '/api/v1/dict/type-option-select',
method: 'get'
})
}

46
src/api/admin/sys-api.js Normal file
View File

@ -0,0 +1,46 @@
import request from '@/utils/request'
// 查询SysApi列表
export function listSysApi(query) {
return request({
url: '/api/v1/sys-api',
method: 'get',
params: query
})
}
// 查询SysApi详细
export function getSysApi(id) {
return request({
url: '/api/v1/sys-api/' + id,
method: 'get'
})
}
// 新增SysApi
export function addSysApi(data) {
return request({
url: '/api/v1/sys-api',
method: 'post',
data: data
})
}
// 修改SysApi
export function updateSysApi(data) {
return request({
url: '/api/v1/sys-api/' + data.id,
method: 'put',
data: data
})
}
// 删除SysApi
export function delSysApi(data) {
return request({
url: '/api/v1/sys-api',
method: 'delete',
data: data
})
}

View File

@ -0,0 +1,68 @@
import request from '@/utils/request'
// 查询参数列表
export function listConfig(query) {
return request({
url: '/api/v1/config',
method: 'get',
params: query
})
}
// 查询参数详细
export function getConfig(configId) {
return request({
url: '/api/v1/config/' + configId,
method: 'get'
})
}
// 根据参数键名查询参数值
export function getConfigKey(configKey) {
return request({
url: '/api/v1/configKey/' + configKey,
method: 'get'
})
}
// 新增参数配置
export function addConfig(data) {
return request({
url: '/api/v1/config',
method: 'post',
data: data
})
}
// 修改参数配置
export function updateConfig(data) {
return request({
url: '/api/v1/config/' + data.id,
method: 'put',
data: data
})
}
// 删除参数配置
export function delConfig(data) {
return request({
url: '/api/v1/config',
method: 'delete',
data: data
})
}
export function getSetConfig(query) {
return request({
url: '/api/v1/set-config',
method: 'get'
})
}
export function updateSetConfig(data) {
return request({
url: '/api/v1/set-config',
method: 'put',
data: data
})
}

60
src/api/admin/sys-dept.js Normal file
View File

@ -0,0 +1,60 @@
import request from '@/utils/request'
export function getDeptList(query) {
return request({
url: '/api/v1/dept',
method: 'get',
params: query
})
}
// 查询部门详细
export function getDept(deptId) {
return request({
url: '/api/v1/dept/' + deptId,
method: 'get'
})
}
// 查询部门下拉树结构
export function treeselect() {
return request({
url: '/api/v1/deptTree',
method: 'get'
})
}
// 根据角色ID查询部门树结构
export function roleDeptTreeselect(roleId) {
return request({
url: '/api/v1/roleDeptTreeselect/' + roleId,
method: 'get'
})
}
// 新增部门
export function addDept(data) {
return request({
url: '/api/v1/dept',
method: 'post',
data: data
})
}
// 修改部门
export function updateDept(data, id) {
return request({
url: '/api/v1/dept/' + id,
method: 'put',
data: data
})
}
// 删除部门
export function delDept(data) {
return request({
url: '/api/v1/dept',
method: 'delete',
data: data
})
}

View File

@ -0,0 +1,28 @@
import request from '@/utils/request'
// 查询SysLoginlog列表
export function listSysLoginlog(query) {
return request({
url: '/api/v1/sys-login-log',
method: 'get',
params: query
})
}
// 查询SysLoginlog详细
export function getSysLoginlog(ID) {
return request({
url: '/api/v1/sys-login-log/' + ID,
method: 'get'
})
}
// 删除SysLoginlog
export function delSysLoginlog(data) {
return request({
url: '/api/v1/sys-login-log',
method: 'delete',
data: data
})
}

61
src/api/admin/sys-menu.js Normal file
View File

@ -0,0 +1,61 @@
import request from '@/utils/request'
// 查询菜单列表
export function listMenu(query) {
return request({
url: '/api/v1/menu',
method: 'get',
params: query
})
}
// 查询菜单详细
export function getMenu(menuId) {
return request({
url: '/api/v1/menu/' + menuId,
method: 'get'
})
}
// 查询菜单下拉树结构
// export function treeselect() {
// return request({
// url: '/api/v1/menuTreeselect',
// method: 'get'
// })
// }
// 根据角色ID查询菜单下拉树结构
export function roleMenuTreeselect(roleId) {
return request({
url: '/api/v1/roleMenuTreeselect/' + roleId,
method: 'get'
})
}
// 新增菜单
export function addMenu(data) {
return request({
url: '/api/v1/menu',
method: 'post',
data: data
})
}
// 修改菜单
export function updateMenu(data, id) {
return request({
url: '/api/v1/menu/' + id,
method: 'put',
data: data
})
}
// 删除菜单
export function delMenu(data) {
return request({
url: '/api/v1/menu',
method: 'delete',
data: data
})
}

View File

@ -0,0 +1,28 @@
import request from '@/utils/request'
// 清空操作日志
export function cleanOperlog() {
return request({
url: '/api/v1/operlog/clean',
method: 'delete'
})
}
// 查询SysOperlog列表
export function listSysOperlog(query) {
return request({
url: '/api/v1/sys-opera-log',
method: 'get',
params: query
})
}
// 删除SysOperlog
export function delSysOperlog(data) {
return request({
url: '/api/v1/sys-opera-log',
method: 'delete',
data: data
})
}

46
src/api/admin/sys-post.js Normal file
View File

@ -0,0 +1,46 @@
import request from '@/utils/request'
// 查询岗位列表
export function listPost(query) {
return request({
url: '/api/v1/post',
method: 'get',
params: query
})
}
// 查询岗位详细
export function getPost(postId) {
return request({
url: '/api/v1/post/' + postId,
method: 'get'
})
}
// 新增岗位
export function addPost(data) {
return request({
url: '/api/v1/post',
method: 'post',
data: data
})
}
// 修改岗位
export function updatePost(data, id) {
return request({
url: '/api/v1/post/' + id,
method: 'put',
data: data
})
}
// 删除岗位
export function delPost(postId) {
return request({
url: '/api/v1/post',
method: 'delete',
data: postId
})
}

88
src/api/admin/sys-role.js Normal file
View File

@ -0,0 +1,88 @@
import request from '@/utils/request'
// 查询角色列表
export function listRole(query) {
return request({
url: '/api/v1/role',
method: 'get',
params: query
})
}
// 查询角色详细
export function getRole(roleId) {
return request({
url: '/api/v1/role/' + roleId,
method: 'get'
})
}
// 新增角色
export function addRole(data) {
return request({
url: '/api/v1/role',
method: 'post',
data: data
})
}
// 修改角色
export function updateRole(data, roleId) {
return request({
url: '/api/v1/role/' + roleId,
method: 'put',
data: data
})
}
// 角色数据权限
export function dataScope(data) {
return request({
url: '/api/v1/roledatascope',
method: 'put',
data: data
})
}
// 角色状态修改
export function changeRoleStatus(roleId, status) {
const data = {
roleId,
status
}
return request({
url: '/api/v1/role-status',
method: 'put',
data: data
})
}
// 删除角色
export function delRole(roleId) {
return request({
url: '/api/v1/role',
method: 'delete',
data: roleId
})
}
export function getListrole(id) {
return request({
url: '/api/v1/menu/role/' + id,
method: 'get'
})
}
export function getRoutes() {
return request({
url: '/api/v1/menurole',
method: 'get'
})
}
// export function getMenuNames() {
// return request({
// url: '/api/v1/menuids',
// method: 'get'
// })
// }

135
src/api/admin/sys-user.js Normal file
View File

@ -0,0 +1,135 @@
import request from '@/utils/request'
// 查询用户列表
export function listUser(query) {
return request({
url: '/api/v1/sys-user',
method: 'get',
params: query
})
}
// 查询用户详细
export function getUser(userId) {
return request({
url: '/api/v1/sys-user/' + userId,
method: 'get'
})
}
export function getUserInit() {
return request({
url: '/api/v1/sys-user/',
method: 'get'
})
}
// 新增用户
export function addUser(data) {
return request({
url: '/api/v1/sys-user',
method: 'post',
data: data
})
}
// 修改用户
export function updateUser(data) {
return request({
url: '/api/v1/sys-user',
method: 'put',
data: data
})
}
// 删除用户
export function delUser(data) {
return request({
url: '/api/v1/sys-user',
method: 'delete',
data: data
})
}
// 导出用户
export function exportUser(query) {
return request({
url: '/api/v1/sys-user/export',
method: 'get',
params: query
})
}
// 用户密码重置
export function resetUserPwd(userId, password) {
const data = {
userId,
password
}
return request({
url: '/api/v1/user/pwd/reset',
method: 'put',
data: data
})
}
// 用户状态修改
export function changeUserStatus(e) {
const data = {
userId: e.userId,
status: e.status
}
return request({
url: '/api/v1/user/status',
method: 'put',
data: data
})
}
// 修改用户个人信息
export function updateUserProfile(data) {
return request({
url: '/api/v1/sys-user/profile',
method: 'put',
data: data
})
}
// 下载用户导入模板
export function importTemplate() {
return request({
url: '/api/v1/sys-user/importTemplate',
method: 'get'
})
}
// 用户密码重置
export function updateUserPwd(oldPassword, newPassword) {
const data = {
oldPassword,
newPassword
}
return request({
url: '/api/v1/user/pwd/set',
method: 'put',
data: data
})
}
// 用户头像上传
export function uploadAvatar(data) {
return request({
url: '/api/v1/user/avatar',
method: 'post',
data: data
})
}
// 查询用户个人信息
export function getUserProfile() {
return request({
url: '/api/v1/user/profile',
method: 'get'
})
}

View File

@ -0,0 +1,46 @@
import request from '@/utils/request'
// 查询TmMemberDailyUsage列表
export function listTmMemberDailyUsage(query) {
return request({
url: '/api/v1/tm-member-daily-usage',
method: 'get',
params: query
})
}
// 查询TmMemberDailyUsage详细
export function getTmMemberDailyUsage(id) {
return request({
url: '/api/v1/tm-member-daily-usage/' + id,
method: 'get'
})
}
// 新增TmMemberDailyUsage
export function addTmMemberDailyUsage(data) {
return request({
url: '/api/v1/tm-member-daily-usage',
method: 'post',
data: data
})
}
// 修改TmMemberDailyUsage
export function updateTmMemberDailyUsage(data) {
return request({
url: '/api/v1/tm-member-daily-usage/' + data.id,
method: 'put',
data: data
})
}
// 删除TmMemberDailyUsage
export function delTmMemberDailyUsage(data) {
return request({
url: '/api/v1/tm-member-daily-usage',
method: 'delete',
data: data
})
}

View File

@ -0,0 +1,46 @@
import request from '@/utils/request'
// 查询TmMemberPlatform列表
export function listTmMemberPlatform(query) {
return request({
url: '/api/v1/tm-member-platform',
method: 'get',
params: query
})
}
// 查询TmMemberPlatform详细
export function getTmMemberPlatform(id) {
return request({
url: '/api/v1/tm-member-platform/' + id,
method: 'get'
})
}
// 新增TmMemberPlatform
export function addTmMemberPlatform(data) {
return request({
url: '/api/v1/tm-member-platform',
method: 'post',
data: data
})
}
// 修改TmMemberPlatform
export function updateTmMemberPlatform(data) {
return request({
url: '/api/v1/tm-member-platform/' + data.id,
method: 'put',
data: data
})
}
// 删除TmMemberPlatform
export function delTmMemberPlatform(data) {
return request({
url: '/api/v1/tm-member-platform',
method: 'delete',
data: data
})
}

View File

@ -0,0 +1,78 @@
import request from '@/utils/request'
// 查询TmMember列表
export function listTmMember(query) {
return request({
url: '/api/v1/tm-member',
method: 'get',
params: query
})
}
// 查询TmMember详细
export function getTmMember(id) {
return request({
url: '/api/v1/tm-member/' + id,
method: 'get'
})
}
// 新增TmMember
export function addTmMember(data) {
return request({
url: '/api/v1/tm-member',
method: 'post',
data: data
})
}
// 修改TmMember
export function updateTmMember(data) {
return request({
url: '/api/v1/tm-member/' + data.id,
method: 'put',
data: data
})
}
// 删除TmMember
export function delTmMember(data) {
return request({
url: '/api/v1/tm-member',
method: 'delete',
data: data
})
}
// 获取API Key
export function getMyKey() {
return request({
url: '/api/v1/tm-member/api-key',
method: 'get'
})
}
// 获取使用量统计
export function getTranslateDataStatistic() {
return request({
url: '/api/v1/translate/datastatistics',
method: 'get'
})
}
// 字符充值
export function tmMemberRecharge(data) {
return request({
url: '/api/v1/tm-member/recharge',
method: 'post',
data: data
})
}
export function changeTmMemberStatus(data) {
return request({
url: '/api/v1/tm-member/status',
method: 'put',
data: data
})
}

View File

@ -0,0 +1,46 @@
import request from '@/utils/request'
// 查询TmPlatformAccount列表
export function listTmPlatformAccount(query) {
return request({
url: '/api/v1/tm-platform-account',
method: 'get',
params: query
})
}
// 查询TmPlatformAccount详细
export function getTmPlatformAccount(id) {
return request({
url: '/api/v1/tm-platform-account/' + id,
method: 'get'
})
}
// 新增TmPlatformAccount
export function addTmPlatformAccount(data) {
return request({
url: '/api/v1/tm-platform-account',
method: 'post',
data: data
})
}
// 修改TmPlatformAccount
export function updateTmPlatformAccount(data) {
return request({
url: '/api/v1/tm-platform-account/' + data.id,
method: 'put',
data: data
})
}
// 删除TmPlatformAccount
export function delTmPlatformAccount(data) {
return request({
url: '/api/v1/tm-platform-account',
method: 'delete',
data: data
})
}

View File

@ -0,0 +1,46 @@
import request from '@/utils/request'
// 查询TmPlatform列表
export function listTmPlatform(query) {
return request({
url: '/api/v1/tm-platform',
method: 'get',
params: query
})
}
// 查询TmPlatform详细
export function getTmPlatform(id) {
return request({
url: '/api/v1/tm-platform/' + id,
method: 'get'
})
}
// 新增TmPlatform
export function addTmPlatform(data) {
return request({
url: '/api/v1/tm-platform',
method: 'post',
data: data
})
}
// 修改TmPlatform
export function updateTmPlatform(data) {
return request({
url: '/api/v1/tm-platform/' + data.id,
method: 'put',
data: data
})
}
// 删除TmPlatform
export function delTmPlatform(data) {
return request({
url: '/api/v1/tm-platform',
method: 'delete',
data: data
})
}

62
src/api/job/sys-job.js Normal file
View File

@ -0,0 +1,62 @@
import request from '@/utils/request'
// 查询SysJob列表
export function listSysJob(query) {
return request({
url: '/api/v1/sysjob',
method: 'get',
params: query
})
}
// 查询SysJob详细
export function getSysJob(jobId) {
return request({
url: '/api/v1/sysjob/' + jobId,
method: 'get'
})
}
// 新增SysJob
export function addSysJob(data) {
return request({
url: '/api/v1/sysjob',
method: 'post',
data: data
})
}
// 修改SysJob
export function updateSysJob(data) {
return request({
url: '/api/v1/sysjob',
method: 'put',
data: data
})
}
// 删除SysJob
export function delSysJob(data) {
return request({
url: '/api/v1/sysjob',
method: 'delete',
data: data
})
}
// 移除SysJob
export function removeJob(jobId) {
return request({
url: '/api/v1/job/remove/' + jobId,
method: 'get'
})
}
// 启动SysJob
export function startJob(jobId) {
return request({
url: '/api/v1/job/start/' + jobId,
method: 'get'
})
}

17
src/api/login.js Normal file
View File

@ -0,0 +1,17 @@
import request from '@/utils/request'
// 获取验证码
export function getCodeImg() {
return request({
url: '/api/v1/captcha',
method: 'get'
})
}
// 查询 此接口不在验证数据权限
export function getSetting() {
return request({
url: '/api/v1/app-config',
method: 'get'
})
}

View File

@ -0,0 +1,9 @@
import request from '@/utils/request'
// 查询服务器详细
export function getServer() {
return request({
url: '/api/v1/server-monitor',
method: 'get'
})
}

17
src/api/remote-search.js Normal file
View File

@ -0,0 +1,17 @@
import request from '@/utils/request'
export function searchUser(name) {
return request({
url: '/search/user',
method: 'get',
params: { name }
})
}
export function transactionList(query) {
return request({
url: '/transaction/list',
method: 'get',
params: query
})
}

43
src/api/schedule.js Normal file
View File

@ -0,0 +1,43 @@
import request from '@/utils/request'
export function list(data) {
return request({
url: 'api/v1/schedule/list',
method: 'get',
params: data
})
}
export function add(data) {
return request({
url: 'api/v1/schedule/add',
method: 'post',
data
})
}
export function edit(data) {
return request({
url: 'api/v1/schedule/update',
method: 'put',
data
})
}
export function getSchedule(id) {
return request({
url: 'api/v1/schedule/query',
method: 'get',
params: {
id
}
})
}
export function deleteSchedule(data) {
return request({
url: 'api/v1/schedule/delete',
method: 'delete',
data
})
}

20
src/api/table.js Normal file
View File

@ -0,0 +1,20 @@
// 查询列表
export function getItems(f, query) {
query = query || { pageSize: 10000 }
return f(query)
}
export function setItems(response, k, v) {
const data = []
k = k || 'id'
v = v || 'name'
if (response.data && response.data.list && response.data.list.length > 0) {
response.data.list.forEach(e => {
data.push({
key: e[k].toString(),
value: e[v].toString()
})
})
return data
}
}

103
src/api/tools/gen.js Normal file
View File

@ -0,0 +1,103 @@
import request from '@/utils/request'
// 查询生成表数据
export function listTable(query) {
return request({
url: '/api/v1/sys/tables/page',
method: 'get',
params: query
})
}
// 查询db数据库列表
export function listDbTable(query) {
return request({
url: '/api/v1/db/tables/page',
method: 'get',
params: query
})
}
// 查询表详细信息
export function getGenTable(tableId) {
return request({
url: '/api/v1/sys/tables/info/' + tableId,
method: 'get'
})
}
export function getGenTableInfo(tablename) {
return request({
url: '/api/v1/sys/tables?tableName=' + tablename,
method: 'get'
})
}
// 修改代码生成信息
export function updateGenTable(data) {
return request({
url: '/api/v1/sys/tables/info',
method: 'put',
data: data
})
}
// 导入表
export function importTable(data) {
return request({
url: '/api/v1/sys/tables/info',
method: 'post',
params: data
})
}
// 预览生成代码
export function previewTable(tableId) {
return request({
url: '/api/v1/gen/preview/' + tableId,
method: 'get'
})
}
// 删除表数据
export function delTable(tableId) {
return request({
url: '/api/v1/sys/tables/info/' + tableId,
method: 'delete'
})
}
// 生成代码到项目
export function toProjectTable(tableId) {
return request({
url: '/api/v1/gen/toproject/' + tableId,
method: 'get'
})
}
// 生成接口数据到迁移脚本
export function apiToFile(tableId) {
return request({
url: '/api/v1/gen/apitofile/' + tableId,
method: 'get'
})
}
export function toProjectTableCheckRole(tableId, ischeckrole) {
return request({
url: '/api/v1/gen/toproject/' + tableId + '?ischeckrole=' + ischeckrole,
method: 'get'
})
}
// 生成菜单到数据库
export function toDBTable(tableId) {
return request({
url: '/api/v1/gen/todb/' + tableId,
method: 'get'
})
}
export function getTableTree() {
return request({
url: '/api/v1/gen/tabletree',
method: 'get'
})
}

36
src/api/user.js Normal file
View File

@ -0,0 +1,36 @@
import request from '@/utils/request'
// login 登陆
export function login(data) {
return request({
url: '/api/v1/login',
method: 'post',
data
})
}
// logout 退出
export function logout() {
return request({
url: '/api/v1/logout',
method: 'post'
})
}
// refreshtoken 刷新token
export function refreshtoken(data) {
return request({
url: '/refreshtoken',
method: 'post',
data
})
}
// getInfo 获取用户基本信息
export function getInfo() {
return request({
url: '/api/v1/getinfo',
method: 'get'
})
}

9
src/api/ws.js Normal file
View File

@ -0,0 +1,9 @@
import request from '@/utils/request'
// 查询SysJob列表
export function unWsLogout(id, group) {
return request({
url: '/wslogout/' + id + '/' + group,
method: 'get'
})
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

39
src/assets/dark.svg Normal file
View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="52px" height="45px" viewBox="0 0 52 45" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter x="-9.4%" y="-6.2%" width="118.8%" height="122.5%" filterUnits="objectBoundingBox" id="filter-1">
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<rect id="path-2" x="0" y="0" width="48" height="40" rx="4"></rect>
<filter x="-4.2%" y="-2.5%" width="108.3%" height="110.0%" filterUnits="objectBoundingBox" id="filter-4">
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
</filter>
</defs>
<g id="配置面板" width="48" height="40" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="setting-copy-2" width="48" height="40" transform="translate(-1190.000000, -136.000000)">
<g id="Group-8" width="48" height="40" transform="translate(1167.000000, 0.000000)">
<g id="Group-5-Copy-5" filter="url(#filter-1)" transform="translate(25.000000, 137.000000)">
<mask id="mask-3" fill="white">
<use xlink:href="#path-2"></use>
</mask>
<g id="Rectangle-18">
<use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-2"></use>
<use fill="#F0F2F5" fill-rule="evenodd" xlink:href="#path-2"></use>
</g>
<rect id="Rectangle-11" fill="#FFFFFF" mask="url(#mask-3)" x="0" y="0" width="48" height="10"></rect>
<rect id="Rectangle-18" fill="#303648" mask="url(#mask-3)" x="0" y="0" width="16" height="40"></rect>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
src/assets/icons/12-01.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

BIN
src/assets/icons/AU-01.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
src/assets/icons/Access.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
src/assets/icons/Excel.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

BIN
src/assets/icons/Ic-01.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
src/assets/icons/Idea.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
src/assets/icons/Link.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

BIN
src/assets/icons/Pl-01.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

BIN
src/assets/icons/Pn-01.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
src/assets/icons/Typora.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
src/assets/icons/UTools.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
src/assets/icons/Unknow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
src/assets/icons/Visio.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
src/assets/icons/Web.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

BIN
src/assets/icons/Word.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

BIN
src/assets/icons/Zip.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

BIN
src/assets/icons/daiyue.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
src/assets/icons/nasa.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
src/assets/icons/pf-01.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
src/assets/icons/rar.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

BIN
src/assets/icons/video.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
src/assets/icons/video2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

BIN
src/assets/icons/voice.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

39
src/assets/light.svg Normal file
View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="52px" height="45px" viewBox="0 0 52 45" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter x="-9.4%" y="-6.2%" width="118.8%" height="122.5%" filterUnits="objectBoundingBox" id="filter-1">
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<rect id="path-2" x="0" y="0" width="48" height="40" rx="4"></rect>
<filter x="-4.2%" y="-2.5%" width="108.3%" height="110.0%" filterUnits="objectBoundingBox" id="filter-4">
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
</filter>
</defs>
<g id="配置面板" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="setting-copy-2" transform="translate(-1254.000000, -136.000000)">
<g id="Group-8" transform="translate(1167.000000, 0.000000)">
<g id="Group-5" filter="url(#filter-1)" transform="translate(89.000000, 137.000000)">
<mask id="mask-3" fill="white">
<use xlink:href="#path-2"></use>
</mask>
<g id="Rectangle-18">
<use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-2"></use>
<use fill="#F0F2F5" fill-rule="evenodd" xlink:href="#path-2"></use>
</g>
<rect id="Rectangle-18" fill="#FFFFFF" mask="url(#mask-3)" x="0" y="0" width="16" height="40"></rect>
<rect id="Rectangle-11" fill="#FFFFFF" mask="url(#mask-3)" x="0" y="0" width="48" height="10"></rect>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
src/assets/login.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Some files were not shown because too many files have changed in this diff Show More