mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2026-02-13 17:30:27 +08:00
Compare commits
29 Commits
1fcbe4e404
...
pages
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4fe5ddec9e | ||
|
|
ebe1826492 | ||
|
|
7b2dcdddca | ||
|
|
3c5e7ca126 | ||
|
|
c376b7b2fc | ||
|
|
07f03a016d | ||
|
|
efb9211faa | ||
|
|
986e6e5104 | ||
|
|
653d3228d1 | ||
|
|
3ce26d614d | ||
|
|
495456efd7 | ||
|
|
a6a07e340f | ||
|
|
a91d244e96 | ||
|
|
815f161b17 | ||
|
|
1077430167 | ||
|
|
8167597475 | ||
|
|
e2f36e5915 | ||
|
|
ff007fbc03 | ||
|
|
e5c55c4d9f | ||
|
|
593739cf77 | ||
|
|
dc4fdde8b2 | ||
|
|
d7c049d821 | ||
|
|
4c3ad7acce | ||
|
|
efe92be10c | ||
|
|
f3756089fd | ||
|
|
42076a2247 | ||
|
|
f2616fdfaf | ||
|
|
5c5729a56d | ||
|
|
ebc92ba61c |
@@ -19,6 +19,8 @@ buttons:
|
|||||||
pureBackTop: BackTop
|
pureBackTop: BackTop
|
||||||
pureOpenText: Open
|
pureOpenText: Open
|
||||||
pureCloseText: Close
|
pureCloseText: Close
|
||||||
|
pureWatchMore: Watch More
|
||||||
|
pureMarkAsRead: Mark As Read
|
||||||
search:
|
search:
|
||||||
pureTotal: Total
|
pureTotal: Total
|
||||||
pureHistory: History
|
pureHistory: History
|
||||||
@@ -239,6 +241,7 @@ login:
|
|||||||
purePassWordSureReg: Please enter confirm password
|
purePassWordSureReg: Please enter confirm password
|
||||||
purePassWordDifferentReg: The two passwords do not match!
|
purePassWordDifferentReg: The two passwords do not match!
|
||||||
purePassWordUpdateReg: Password has been updated
|
purePassWordUpdateReg: Password has been updated
|
||||||
|
pureLoginExpired: Login expired, please login again
|
||||||
tableBar:
|
tableBar:
|
||||||
pureList: List
|
pureList: List
|
||||||
pureLarge: Large
|
pureLarge: Large
|
||||||
|
|||||||
@@ -19,6 +19,8 @@ buttons:
|
|||||||
pureBackTop: 回到顶部
|
pureBackTop: 回到顶部
|
||||||
pureOpenText: 开
|
pureOpenText: 开
|
||||||
pureCloseText: 关
|
pureCloseText: 关
|
||||||
|
pureWatchMore: 查看更多
|
||||||
|
pureMarkAsRead: 标为已读
|
||||||
search:
|
search:
|
||||||
pureTotal: 共
|
pureTotal: 共
|
||||||
pureHistory: 搜索历史
|
pureHistory: 搜索历史
|
||||||
@@ -239,6 +241,7 @@ login:
|
|||||||
purePassWordSureReg: 请输入确认密码
|
purePassWordSureReg: 请输入确认密码
|
||||||
purePassWordDifferentReg: 两次密码不一致!
|
purePassWordDifferentReg: 两次密码不一致!
|
||||||
purePassWordUpdateReg: 修改密码成功
|
purePassWordUpdateReg: 修改密码成功
|
||||||
|
pureLoginExpired: 登录已过期,请重新登录
|
||||||
tableBar:
|
tableBar:
|
||||||
pureList: 列表
|
pureList: 列表
|
||||||
pureLarge: 宽松
|
pureLarge: 宽松
|
||||||
|
|||||||
@@ -326,7 +326,8 @@ export default defineFakeRoute([
|
|||||||
method: "get",
|
method: "get",
|
||||||
response: () => {
|
response: () => {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: [
|
data: [
|
||||||
systemManagementRouter,
|
systemManagementRouter,
|
||||||
systemMonitorRouter,
|
systemMonitorRouter,
|
||||||
|
|||||||
@@ -6,7 +6,8 @@ export default defineFakeRoute([
|
|||||||
method: "post",
|
method: "post",
|
||||||
response: () => {
|
response: () => {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: {
|
data: {
|
||||||
list: [
|
list: [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -8,7 +8,8 @@ export default defineFakeRoute([
|
|||||||
response: ({ body }) => {
|
response: ({ body }) => {
|
||||||
if (body.username === "admin") {
|
if (body.username === "admin") {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: {
|
data: {
|
||||||
avatar: "https://avatars.githubusercontent.com/u/44761321",
|
avatar: "https://avatars.githubusercontent.com/u/44761321",
|
||||||
username: "admin",
|
username: "admin",
|
||||||
@@ -24,7 +25,8 @@ export default defineFakeRoute([
|
|||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: {
|
data: {
|
||||||
avatar: "https://avatars.githubusercontent.com/u/52823142",
|
avatar: "https://avatars.githubusercontent.com/u/52823142",
|
||||||
username: "common",
|
username: "common",
|
||||||
|
|||||||
@@ -33,7 +33,8 @@ export default defineFakeRoute([
|
|||||||
method: "get",
|
method: "get",
|
||||||
response: () => {
|
response: () => {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: mapList()
|
data: mapList()
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,8 @@ export default defineFakeRoute([
|
|||||||
method: "get",
|
method: "get",
|
||||||
response: () => {
|
response: () => {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: {
|
data: {
|
||||||
avatar: "https://avatars.githubusercontent.com/u/44761321",
|
avatar: "https://avatars.githubusercontent.com/u/44761321",
|
||||||
username: "admin",
|
username: "admin",
|
||||||
@@ -46,7 +47,8 @@ export default defineFakeRoute([
|
|||||||
}
|
}
|
||||||
];
|
];
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: {
|
data: {
|
||||||
list,
|
list,
|
||||||
total: list.length, // 总条目数
|
total: list.length, // 总条目数
|
||||||
|
|||||||
@@ -8,7 +8,8 @@ export default defineFakeRoute([
|
|||||||
response: ({ body }) => {
|
response: ({ body }) => {
|
||||||
if (body.refreshToken) {
|
if (body.refreshToken) {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: {
|
data: {
|
||||||
accessToken: "eyJhbGciOiJIUzUxMiJ9.newAdmin",
|
accessToken: "eyJhbGciOiJIUzUxMiJ9.newAdmin",
|
||||||
refreshToken: "eyJhbGciOiJIUzUxMiJ9.newAdminRefresh",
|
refreshToken: "eyJhbGciOiJIUzUxMiJ9.newAdminRefresh",
|
||||||
@@ -18,7 +19,8 @@ export default defineFakeRoute([
|
|||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {
|
||||||
success: false,
|
code: 10001,
|
||||||
|
message: "请求参数缺失或格式不正确",
|
||||||
data: {}
|
data: {}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,7 +50,8 @@ export default defineFakeRoute([
|
|||||||
if (body.phone) list = list.filter(item => item.phone === body.phone);
|
if (body.phone) list = list.filter(item => item.phone === body.phone);
|
||||||
if (body.deptId) list = list.filter(item => item.dept.id === body.deptId);
|
if (body.deptId) list = list.filter(item => item.dept.id === body.deptId);
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: {
|
data: {
|
||||||
list,
|
list,
|
||||||
total: list.length, // 总条目数
|
total: list.length, // 总条目数
|
||||||
@@ -66,7 +67,8 @@ export default defineFakeRoute([
|
|||||||
method: "get",
|
method: "get",
|
||||||
response: () => {
|
response: () => {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: [
|
data: [
|
||||||
{ id: 1, name: "超级管理员" },
|
{ id: 1, name: "超级管理员" },
|
||||||
{ id: 2, name: "普通角色" }
|
{ id: 2, name: "普通角色" }
|
||||||
@@ -82,18 +84,21 @@ export default defineFakeRoute([
|
|||||||
if (body.userId) {
|
if (body.userId) {
|
||||||
if (body.userId == 1) {
|
if (body.userId == 1) {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: [1]
|
data: [1]
|
||||||
};
|
};
|
||||||
} else if (body.userId == 2) {
|
} else if (body.userId == 2) {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: [2]
|
data: [2]
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {
|
||||||
success: false,
|
code: 10001,
|
||||||
|
message: "请求参数缺失或格式不正确",
|
||||||
data: []
|
data: []
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -130,7 +135,8 @@ export default defineFakeRoute([
|
|||||||
);
|
);
|
||||||
if (body.code) list = list.filter(item => item.code === body.code);
|
if (body.code) list = list.filter(item => item.code === body.code);
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: {
|
data: {
|
||||||
list,
|
list,
|
||||||
total: list.length, // 总条目数
|
total: list.length, // 总条目数
|
||||||
@@ -146,7 +152,8 @@ export default defineFakeRoute([
|
|||||||
method: "post",
|
method: "post",
|
||||||
response: () => {
|
response: () => {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: [
|
data: [
|
||||||
// 外部页面
|
// 外部页面
|
||||||
{
|
{
|
||||||
@@ -350,7 +357,8 @@ export default defineFakeRoute([
|
|||||||
response: ({ body }) => {
|
response: ({ body }) => {
|
||||||
if (body.id == 1) {
|
if (body.id == 1) {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: [
|
data: [
|
||||||
100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 200, 201,
|
100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 200, 201,
|
||||||
202, 203, 204, 205, 300, 301, 302, 303, 304, 400, 401, 402, 403,
|
202, 203, 204, 205, 300, 301, 302, 303, 304, 400, 401, 402, 403,
|
||||||
@@ -359,7 +367,8 @@ export default defineFakeRoute([
|
|||||||
};
|
};
|
||||||
} else if (body.id == 2) {
|
} else if (body.id == 2) {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: [
|
data: [
|
||||||
100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 404, 500,
|
100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 404, 500,
|
||||||
501, 502, 503
|
501, 502, 503
|
||||||
@@ -374,7 +383,8 @@ export default defineFakeRoute([
|
|||||||
method: "post",
|
method: "post",
|
||||||
response: () => {
|
response: () => {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: [
|
data: [
|
||||||
// 外部页面
|
// 外部页面
|
||||||
{
|
{
|
||||||
@@ -1255,7 +1265,8 @@ export default defineFakeRoute([
|
|||||||
method: "post",
|
method: "post",
|
||||||
response: () => {
|
response: () => {
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: [
|
data: [
|
||||||
{
|
{
|
||||||
name: "杭州总公司",
|
name: "杭州总公司",
|
||||||
@@ -1418,7 +1429,8 @@ export default defineFakeRoute([
|
|||||||
];
|
];
|
||||||
list = list.filter(item => item.username.includes(body?.username));
|
list = list.filter(item => item.username.includes(body?.username));
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: {
|
data: {
|
||||||
list,
|
list,
|
||||||
total: list.length, // 总条目数
|
total: list.length, // 总条目数
|
||||||
@@ -1462,7 +1474,8 @@ export default defineFakeRoute([
|
|||||||
String(item.status).includes(String(body?.status))
|
String(item.status).includes(String(body?.status))
|
||||||
);
|
);
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: {
|
data: {
|
||||||
list,
|
list,
|
||||||
total: list.length, // 总条目数
|
total: list.length, // 总条目数
|
||||||
@@ -1508,7 +1521,8 @@ export default defineFakeRoute([
|
|||||||
String(item.status).includes(String(body?.status))
|
String(item.status).includes(String(body?.status))
|
||||||
);
|
);
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: {
|
data: {
|
||||||
list,
|
list,
|
||||||
total: list.length, // 总条目数
|
total: list.length, // 总条目数
|
||||||
@@ -1566,7 +1580,8 @@ export default defineFakeRoute([
|
|||||||
];
|
];
|
||||||
list = list.filter(item => item.module.includes(body?.module));
|
list = list.filter(item => item.module.includes(body?.module));
|
||||||
return {
|
return {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: {
|
data: {
|
||||||
list,
|
list,
|
||||||
total: list.length, // 总条目数
|
total: list.length, // 总条目数
|
||||||
@@ -1601,7 +1616,8 @@ export default defineFakeRoute([
|
|||||||
"Content-Length": 17019
|
"Content-Length": 17019
|
||||||
},
|
},
|
||||||
responseBody: {
|
responseBody: {
|
||||||
success: true,
|
code: 0,
|
||||||
|
message: "操作成功",
|
||||||
data: [
|
data: [
|
||||||
{
|
{
|
||||||
parentId: 0,
|
parentId: 0,
|
||||||
|
|||||||
70
package.json
70
package.json
@@ -54,29 +54,29 @@
|
|||||||
"@logicflow/extension": "^1.2.28",
|
"@logicflow/extension": "^1.2.28",
|
||||||
"@pureadmin/descriptions": "^1.2.1",
|
"@pureadmin/descriptions": "^1.2.1",
|
||||||
"@pureadmin/table": "^3.3.0",
|
"@pureadmin/table": "^3.3.0",
|
||||||
"@pureadmin/utils": "^2.6.3",
|
"@pureadmin/utils": "^2.6.4",
|
||||||
"@vue-flow/background": "^1.3.2",
|
"@vue-flow/background": "^1.3.2",
|
||||||
"@vue-flow/core": "^1.48.1",
|
"@vue-flow/core": "^1.48.2",
|
||||||
"@vueuse/core": "^14.1.0",
|
"@vueuse/core": "^14.2.0",
|
||||||
"@vueuse/motion": "^3.0.3",
|
"@vueuse/motion": "^3.0.3",
|
||||||
"@wangeditor/editor": "^5.1.23",
|
"@wangeditor/editor": "^5.1.23",
|
||||||
"@wangeditor/editor-for-vue": "^5.1.12",
|
"@wangeditor/editor-for-vue": "^5.1.12",
|
||||||
"@zxcvbn-ts/core": "^3.0.4",
|
"@zxcvbn-ts/core": "^3.0.4",
|
||||||
"animate.css": "^4.1.1",
|
"animate.css": "^4.1.1",
|
||||||
"axios": "^1.13.2",
|
"axios": "^1.13.4",
|
||||||
"china-area-data": "^5.0.1",
|
"china-area-data": "^5.0.1",
|
||||||
"codemirror": "^5.65.20",
|
"codemirror": "^5.65.20",
|
||||||
"codemirror-editor-vue3": "^2.8.0",
|
"codemirror-editor-vue3": "^2.8.0",
|
||||||
"cropperjs": "^1.6.2",
|
"cropperjs": "^1.6.2",
|
||||||
"dayjs": "^1.11.19",
|
"dayjs": "^1.11.19",
|
||||||
"deep-chat": "^2.3.0",
|
"deep-chat": "^2.4.2",
|
||||||
"echarts": "^6.0.0",
|
"echarts": "^6.0.0",
|
||||||
"el-table-infinite-scroll": "^3.0.8",
|
"el-table-infinite-scroll": "^3.0.8",
|
||||||
"element-plus": "^2.13.0",
|
"element-plus": "^2.13.2",
|
||||||
"highlight.js": "^11.11.1",
|
"highlight.js": "^11.11.1",
|
||||||
"intro.js": "^7.2.0",
|
"intro.js": "^7.2.0",
|
||||||
"js-cookie": "^3.0.5",
|
"js-cookie": "^3.0.5",
|
||||||
"jsbarcode": "^3.12.1",
|
"jsbarcode": "^3.12.3",
|
||||||
"localforage": "^1.10.0",
|
"localforage": "^1.10.0",
|
||||||
"mint-filter": "^4.0.3",
|
"mint-filter": "^4.0.3",
|
||||||
"mitt": "^3.0.1",
|
"mitt": "^3.0.1",
|
||||||
@@ -84,28 +84,28 @@
|
|||||||
"nprogress": "^0.2.0",
|
"nprogress": "^0.2.0",
|
||||||
"path-browserify": "^1.0.1",
|
"path-browserify": "^1.0.1",
|
||||||
"pinia": "^3.0.4",
|
"pinia": "^3.0.4",
|
||||||
"pinyin-pro": "^3.27.0",
|
"pinyin-pro": "^3.28.0",
|
||||||
"plus-pro-components": "^0.1.30",
|
"plus-pro-components": "^0.1.30",
|
||||||
"qrcode": "^1.5.4",
|
"qrcode": "^1.5.4",
|
||||||
"qs": "^6.14.0",
|
"qs": "^6.14.1",
|
||||||
"responsive-storage": "^2.2.0",
|
"responsive-storage": "^2.2.0",
|
||||||
"sortablejs": "^1.15.6",
|
"sortablejs": "^1.15.6",
|
||||||
"swiper": "^12.0.3",
|
"swiper": "^12.1.0",
|
||||||
"typeit": "^8.8.7",
|
"typeit": "^8.8.7",
|
||||||
"v-contextmenu": "^3.2.0",
|
"v-contextmenu": "^3.2.0",
|
||||||
"v3-infinite-loading": "^1.3.2",
|
"v3-infinite-loading": "^1.3.2",
|
||||||
"vditor": "^3.11.2",
|
"vditor": "^3.11.2",
|
||||||
"version-rocket": "^1.7.4",
|
"version-rocket": "^1.7.4",
|
||||||
"vue": "^3.5.26",
|
"vue": "^3.5.27",
|
||||||
"vue-i18n": "^11.2.7",
|
"vue-i18n": "^11.2.8",
|
||||||
"vue-json-pretty": "^2.6.0",
|
"vue-json-pretty": "^2.6.0",
|
||||||
"vue-pdf-embed": "^2.1.3",
|
"vue-pdf-embed": "^2.1.3",
|
||||||
"vue-router": "^4.6.4",
|
"vue-router": "^5.0.2",
|
||||||
"vue-tippy": "^6.7.1",
|
"vue-tippy": "^6.7.1",
|
||||||
"vue-types": "^6.0.0",
|
"vue-types": "^6.0.0",
|
||||||
"vue-virtual-scroller": "2.0.0-beta.8",
|
"vue-virtual-scroller": "2.0.0-beta.8",
|
||||||
"vue-waterfall-plugin-next": "^2.6.9",
|
"vue-waterfall-plugin-next": "^2.6.9",
|
||||||
"vue3-danmaku": "^1.6.6",
|
"vue3-danmaku": "^1.6.7",
|
||||||
"vue3-puzzle-vcode": "^1.1.7",
|
"vue3-puzzle-vcode": "^1.1.7",
|
||||||
"vuedraggable": "^4.1.0",
|
"vuedraggable": "^4.1.0",
|
||||||
"vxe-table": "4.6.25",
|
"vxe-table": "4.6.25",
|
||||||
@@ -114,12 +114,12 @@
|
|||||||
"xlsx": "^0.18.5"
|
"xlsx": "^0.18.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@commitlint/cli": "^20.2.0",
|
"@commitlint/cli": "^20.4.1",
|
||||||
"@commitlint/config-conventional": "^20.2.0",
|
"@commitlint/config-conventional": "^20.4.1",
|
||||||
"@commitlint/types": "^20.2.0",
|
"@commitlint/types": "^20.4.0",
|
||||||
"@eslint/js": "^9.39.2",
|
"@eslint/js": "^9.39.2",
|
||||||
"@faker-js/faker": "^10.1.0",
|
"@faker-js/faker": "^10.2.0",
|
||||||
"@iconify/json": "^2.2.417",
|
"@iconify/json": "^2.2.435",
|
||||||
"@iconify/vue": "4.2.0",
|
"@iconify/vue": "4.2.0",
|
||||||
"@intlify/unplugin-vue-i18n": "^11.0.3",
|
"@intlify/unplugin-vue-i18n": "^11.0.3",
|
||||||
"@tailwindcss/vite": "^4.1.18",
|
"@tailwindcss/vite": "^4.1.18",
|
||||||
@@ -127,44 +127,44 @@
|
|||||||
"@types/dagre": "^0.7.53",
|
"@types/dagre": "^0.7.53",
|
||||||
"@types/intro.js": "^5.1.5",
|
"@types/intro.js": "^5.1.5",
|
||||||
"@types/js-cookie": "^3.0.6",
|
"@types/js-cookie": "^3.0.6",
|
||||||
"@types/node": "^20.19.27",
|
"@types/node": "^20.19.31",
|
||||||
"@types/nprogress": "^0.2.3",
|
"@types/nprogress": "^0.2.3",
|
||||||
"@types/path-browserify": "^1.0.3",
|
"@types/path-browserify": "^1.0.3",
|
||||||
"@types/qrcode": "^1.5.6",
|
"@types/qrcode": "^1.5.6",
|
||||||
"@types/qs": "^6.14.0",
|
"@types/qs": "^6.14.0",
|
||||||
"@types/sortablejs": "^1.15.9",
|
"@types/sortablejs": "^1.15.9",
|
||||||
"@vitejs/plugin-vue": "^6.0.3",
|
"@vitejs/plugin-vue": "^6.0.4",
|
||||||
"@vitejs/plugin-vue-jsx": "^5.1.2",
|
"@vitejs/plugin-vue-jsx": "^5.1.4",
|
||||||
"boxen": "^8.0.1",
|
"boxen": "^8.0.1",
|
||||||
"code-inspector-plugin": "^1.3.3",
|
"code-inspector-plugin": "^1.4.1",
|
||||||
"cssnano": "^7.1.2",
|
"cssnano": "^7.1.2",
|
||||||
"dagre": "^0.8.5",
|
"dagre": "^0.8.5",
|
||||||
"eslint": "^9.39.2",
|
"eslint": "^9.39.2",
|
||||||
"eslint-config-prettier": "^10.1.8",
|
"eslint-config-prettier": "^10.1.8",
|
||||||
"eslint-plugin-prettier": "^5.5.4",
|
"eslint-plugin-prettier": "^5.5.5",
|
||||||
"eslint-plugin-vue": "^10.6.2",
|
"eslint-plugin-vue": "^10.7.0",
|
||||||
"gradient-string": "^3.0.0",
|
"gradient-string": "^3.0.0",
|
||||||
"husky": "^9.1.7",
|
"husky": "^9.1.7",
|
||||||
"lint-staged": "^16.2.7",
|
"lint-staged": "^16.2.7",
|
||||||
"postcss": "^8.5.6",
|
"postcss": "^8.5.6",
|
||||||
"postcss-html": "^1.8.0",
|
"postcss-html": "^1.8.1",
|
||||||
"postcss-load-config": "^6.0.1",
|
"postcss-load-config": "^6.0.1",
|
||||||
"postcss-scss": "^4.0.9",
|
"postcss-scss": "^4.0.9",
|
||||||
"prettier": "^3.7.4",
|
"prettier": "^3.8.1",
|
||||||
"rimraf": "^6.1.2",
|
"rimraf": "^6.1.2",
|
||||||
"rollup-plugin-visualizer": "^6.0.5",
|
"rollup-plugin-visualizer": "^6.0.5",
|
||||||
"sass": "^1.97.1",
|
"sass": "^1.97.3",
|
||||||
"stylelint": "^16.26.1",
|
"stylelint": "^17.1.1",
|
||||||
"stylelint-config-recess-order": "^7.4.0",
|
"stylelint-config-recess-order": "^7.6.0",
|
||||||
"stylelint-config-recommended-vue": "^1.6.1",
|
"stylelint-config-recommended-vue": "^1.6.1",
|
||||||
"stylelint-config-standard-scss": "^14.0.0",
|
"stylelint-config-standard-scss": "^17.0.0",
|
||||||
"stylelint-prettier": "^5.0.3",
|
"stylelint-prettier": "^5.0.3",
|
||||||
"svgo": "^4.0.0",
|
"svgo": "^4.0.0",
|
||||||
"tailwindcss": "^4.1.18",
|
"tailwindcss": "^4.1.18",
|
||||||
"typescript": "^5.9.3",
|
"typescript": "^5.9.3",
|
||||||
"typescript-eslint": "^8.50.0",
|
"typescript-eslint": "^8.54.0",
|
||||||
"unplugin-icons": "^22.5.0",
|
"unplugin-icons": "^23.0.1",
|
||||||
"vite": "^7.3.0",
|
"vite": "^7.3.1",
|
||||||
"vite-plugin-cdn-import": "^1.0.1",
|
"vite-plugin-cdn-import": "^1.0.1",
|
||||||
"vite-plugin-compression": "^0.5.1",
|
"vite-plugin-compression": "^0.5.1",
|
||||||
"vite-plugin-fake-server": "^2.2.2",
|
"vite-plugin-fake-server": "^2.2.2",
|
||||||
@@ -172,7 +172,7 @@
|
|||||||
"vite-plugin-router-warn": "^2.0.0",
|
"vite-plugin-router-warn": "^2.0.0",
|
||||||
"vite-svg-loader": "^5.1.0",
|
"vite-svg-loader": "^5.1.0",
|
||||||
"vue-eslint-parser": "^10.2.0",
|
"vue-eslint-parser": "^10.2.0",
|
||||||
"vue-tsc": "^3.2.1"
|
"vue-tsc": "^3.2.4"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^20.19.0 || >=22.13.0",
|
"node": "^20.19.0 || >=22.13.0",
|
||||||
|
|||||||
3171
pnpm-lock.yaml
generated
3171
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
61
src/App.vue
61
src/App.vue
@@ -7,16 +7,18 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent } from "vue";
|
import { useRouter } from "vue-router";
|
||||||
|
import { useGlobal } from "@pureadmin/utils";
|
||||||
import { checkVersion } from "version-rocket";
|
import { checkVersion } from "version-rocket";
|
||||||
|
import { defineComponent, computed } from "vue";
|
||||||
import { ElConfigProvider } from "element-plus";
|
import { ElConfigProvider } from "element-plus";
|
||||||
import { ReDialog } from "@/components/ReDialog";
|
import { ReDialog, closeAllDialog } from "@/components/ReDialog";
|
||||||
import { ReDrawer } from "@/components/ReDrawer";
|
import { ReDrawer, closeAllDrawer } from "@/components/ReDrawer";
|
||||||
import en from "element-plus/es/locale/lang/en";
|
import en from "element-plus/es/locale/lang/en";
|
||||||
import zhCn from "element-plus/es/locale/lang/zh-cn";
|
import zhCn from "element-plus/es/locale/lang/zh-cn";
|
||||||
import plusEn from "plus-pro-components/es/locale/lang/en";
|
import plusEn from "plus-pro-components/es/locale/lang/en";
|
||||||
import plusZhCn from "plus-pro-components/es/locale/lang/zh-cn";
|
import plusZhCn from "plus-pro-components/es/locale/lang/zh-cn";
|
||||||
import { ElNotification } from "element-plus";
|
// import { ElNotification } from "element-plus";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: "app",
|
name: "app",
|
||||||
@@ -25,12 +27,23 @@ export default defineComponent({
|
|||||||
ReDialog,
|
ReDialog,
|
||||||
ReDrawer
|
ReDrawer
|
||||||
},
|
},
|
||||||
computed: {
|
setup() {
|
||||||
currentLocale() {
|
const router = useRouter();
|
||||||
return this.$storage.locale?.locale === "zh"
|
const { $storage } = useGlobal<GlobalPropertiesApi>();
|
||||||
|
const currentLocale = computed(() => {
|
||||||
|
return $storage.locale?.locale === "zh"
|
||||||
? { ...zhCn, ...plusZhCn }
|
? { ...zhCn, ...plusZhCn }
|
||||||
: { ...en, ...plusEn };
|
: { ...en, ...plusEn };
|
||||||
}
|
});
|
||||||
|
|
||||||
|
router.beforeEach(() => {
|
||||||
|
closeAllDialog();
|
||||||
|
closeAllDrawer();
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
currentLocale
|
||||||
|
};
|
||||||
},
|
},
|
||||||
beforeCreate() {
|
beforeCreate() {
|
||||||
const { version, name: title } = __APP_INFO__.pkg;
|
const { version, name: title } = __APP_INFO__.pkg;
|
||||||
@@ -54,23 +67,23 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
ElNotification({
|
|
||||||
title: "高级服务",
|
|
||||||
duration: 0,
|
|
||||||
customClass: "fullpage-notification",
|
|
||||||
// @ts-expect-error
|
|
||||||
style: { width: "260px" },
|
|
||||||
position: "bottom-right",
|
|
||||||
dangerouslyUseHTMLString: true,
|
|
||||||
message: `
|
|
||||||
<a target='_blank' class='block text-base text-center border mt-4 rounded hover:text-[red]!' href='https://pure-admin.cn/pages/service/'>
|
|
||||||
新功能更新,点我查看
|
|
||||||
</a>
|
|
||||||
`
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
// mounted() {
|
||||||
|
// ElNotification({
|
||||||
|
// title: "高级服务",
|
||||||
|
// duration: 0,
|
||||||
|
// customClass: "fullpage-notification",
|
||||||
|
// // @ts-expect-error
|
||||||
|
// style: { width: "260px" },
|
||||||
|
// position: "bottom-right",
|
||||||
|
// dangerouslyUseHTMLString: true,
|
||||||
|
// message: `
|
||||||
|
// <a target='_blank' class='block text-base text-center border mt-4 rounded hover:text-[red]!' href='https://pure-admin.cn/pages/service'>
|
||||||
|
// 补差价活动即将结束!
|
||||||
|
// </a>
|
||||||
|
// `
|
||||||
|
// });
|
||||||
|
// }
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import { http } from "@/utils/http";
|
import { http } from "@/utils/http";
|
||||||
|
|
||||||
type Result = {
|
type Result = {
|
||||||
success: boolean;
|
code: number;
|
||||||
|
message: string;
|
||||||
data?: {
|
data?: {
|
||||||
/** 列表数据 */
|
/** 列表数据 */
|
||||||
list: Array<any>;
|
list: Array<any>;
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import { http } from "@/utils/http";
|
import { http } from "@/utils/http";
|
||||||
|
|
||||||
type Result = {
|
type Result = {
|
||||||
success: boolean;
|
code: number;
|
||||||
|
message: string;
|
||||||
data: Array<any>;
|
data: Array<any>;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -14,7 +15,7 @@ export const mapJson = (params?: object) => {
|
|||||||
export const formUpload = data => {
|
export const formUpload = data => {
|
||||||
return http.request<Result>(
|
return http.request<Result>(
|
||||||
"post",
|
"post",
|
||||||
"https://run.mocky.io/v3/3aa761d7-b0b3-4a03-96b3-6168d4f7467b",
|
"https://pureadmin.free.beeceptor.com/images",
|
||||||
{ data },
|
{ data },
|
||||||
{
|
{
|
||||||
headers: {
|
headers: {
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import { http } from "@/utils/http";
|
import { http } from "@/utils/http";
|
||||||
|
|
||||||
type Result = {
|
type Result = {
|
||||||
success: boolean;
|
code: number;
|
||||||
|
message: string;
|
||||||
data: Array<any>;
|
data: Array<any>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,14 @@
|
|||||||
import { http } from "@/utils/http";
|
import { http } from "@/utils/http";
|
||||||
|
|
||||||
type Result = {
|
type Result = {
|
||||||
success: boolean;
|
code: number;
|
||||||
|
message: string;
|
||||||
data?: Array<any>;
|
data?: Array<any>;
|
||||||
};
|
};
|
||||||
|
|
||||||
type ResultTable = {
|
type ResultTable = {
|
||||||
success: boolean;
|
code: number;
|
||||||
|
message: string;
|
||||||
data?: {
|
data?: {
|
||||||
/** 列表数据 */
|
/** 列表数据 */
|
||||||
list: Array<any>;
|
list: Array<any>;
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import { http } from "@/utils/http";
|
import { http } from "@/utils/http";
|
||||||
|
|
||||||
export type UserResult = {
|
export type UserResult = {
|
||||||
success: boolean;
|
code: number;
|
||||||
|
message: string;
|
||||||
data: {
|
data: {
|
||||||
/** 头像 */
|
/** 头像 */
|
||||||
avatar: string;
|
avatar: string;
|
||||||
@@ -23,7 +24,8 @@ export type UserResult = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type RefreshTokenResult = {
|
export type RefreshTokenResult = {
|
||||||
success: boolean;
|
code: number;
|
||||||
|
message: string;
|
||||||
data: {
|
data: {
|
||||||
/** `token` */
|
/** `token` */
|
||||||
accessToken: string;
|
accessToken: string;
|
||||||
@@ -50,12 +52,14 @@ export type UserInfo = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type UserInfoResult = {
|
export type UserInfoResult = {
|
||||||
success: boolean;
|
code: number;
|
||||||
|
message: string;
|
||||||
data: UserInfo;
|
data: UserInfo;
|
||||||
};
|
};
|
||||||
|
|
||||||
type ResultTable = {
|
type ResultTable = {
|
||||||
success: boolean;
|
code: number;
|
||||||
|
message: string;
|
||||||
data?: {
|
data?: {
|
||||||
/** 列表数据 */
|
/** 列表数据 */
|
||||||
list: Array<any>;
|
list: Array<any>;
|
||||||
|
|||||||
@@ -92,14 +92,16 @@ onBeforeMount(() => {
|
|||||||
|
|
||||||
// 获取模拟车辆信息
|
// 获取模拟车辆信息
|
||||||
mapJson()
|
mapJson()
|
||||||
.then(({ data }) => {
|
.then(({ code, data }) => {
|
||||||
const points: object = data.map(v => {
|
if (code === 0) {
|
||||||
return {
|
const points: object = data.map(v => {
|
||||||
lnglat: [v.lng, v.lat],
|
return {
|
||||||
...v
|
lnglat: [v.lng, v.lat],
|
||||||
};
|
...v
|
||||||
});
|
};
|
||||||
if (MarkerCluster) MarkerCluster.setData(points);
|
});
|
||||||
|
if (MarkerCluster) MarkerCluster.setData(points);
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
console.log("err:", err);
|
console.log("err:", err);
|
||||||
|
|||||||
@@ -5,14 +5,10 @@ import {
|
|||||||
ref,
|
ref,
|
||||||
unref,
|
unref,
|
||||||
nextTick,
|
nextTick,
|
||||||
computed
|
computed,
|
||||||
|
useTemplateRef
|
||||||
} from "vue";
|
} from "vue";
|
||||||
import {
|
import { tryOnMounted, tryOnUnmounted, useDebounceFn } from "@vueuse/core";
|
||||||
tryOnMounted,
|
|
||||||
tryOnUnmounted,
|
|
||||||
templateRef,
|
|
||||||
useDebounceFn
|
|
||||||
} from "@vueuse/core";
|
|
||||||
import * as utilsMethods from "./utils";
|
import * as utilsMethods from "./utils";
|
||||||
const { animationFrame, copyObj } = utilsMethods;
|
const { animationFrame, copyObj } = utilsMethods;
|
||||||
animationFrame();
|
animationFrame();
|
||||||
@@ -62,17 +58,14 @@ if (props.classOption["key"] === undefined) {
|
|||||||
props.classOption["key"] = 0;
|
props.classOption["key"] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
const wrap = templateRef<HTMLElement | null>(
|
const wrap = useTemplateRef<HTMLElement | null>(
|
||||||
`wrap${props.classOption["key"]}`,
|
`wrap${props.classOption["key"]}`
|
||||||
null
|
|
||||||
);
|
);
|
||||||
const slotList = templateRef<HTMLElement | null>(
|
const slotList = useTemplateRef<HTMLElement | null>(
|
||||||
`slotList${props.classOption["key"]}`,
|
`slotList${props.classOption["key"]}`
|
||||||
null
|
|
||||||
);
|
);
|
||||||
const realBox = templateRef<HTMLElement | null>(
|
const realBox = useTemplateRef<HTMLElement | null>(
|
||||||
`realBox${props.classOption["key"]}`,
|
`realBox${props.classOption["key"]}`
|
||||||
null
|
|
||||||
);
|
);
|
||||||
|
|
||||||
const leftSwitchState = computed(() => {
|
const leftSwitchState = computed(() => {
|
||||||
|
|||||||
@@ -174,7 +174,7 @@ const { t, locale, translationCh, translationEn } = useTranslationLang();
|
|||||||
}
|
}
|
||||||
|
|
||||||
.translation {
|
.translation {
|
||||||
::v-deep(.el-dropdown-menu__item) {
|
:deep(.el-dropdown-menu__item) {
|
||||||
padding: 5px 40px;
|
padding: 5px 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -192,7 +192,7 @@ const { t, locale, translationCh, translationEn } = useTranslationLang();
|
|||||||
.logout {
|
.logout {
|
||||||
width: 120px;
|
width: 120px;
|
||||||
|
|
||||||
::v-deep(.el-dropdown-menu__item) {
|
:deep(.el-dropdown-menu__item) {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
|
|||||||
@@ -8,6 +8,10 @@ defineProps({
|
|||||||
noticeItem: {
|
noticeItem: {
|
||||||
type: Object as PropType<ListItem>,
|
type: Object as PropType<ListItem>,
|
||||||
default: () => {}
|
default: () => {}
|
||||||
|
},
|
||||||
|
isLast: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -49,7 +53,11 @@ function hoverDescription(event, description) {
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="notice-container border-0 border-b-[1px] border-solid border-[#f0f0f0] dark:border-[#303030]"
|
:class="[
|
||||||
|
'notice-container',
|
||||||
|
'border-0 border-solid border-[#f0f0f0] dark:border-[#303030]',
|
||||||
|
{ 'border-b': !isLast }
|
||||||
|
]"
|
||||||
>
|
>
|
||||||
<el-avatar
|
<el-avatar
|
||||||
v-if="noticeItem.avatar"
|
v-if="noticeItem.avatar"
|
||||||
@@ -119,8 +127,6 @@ function hoverDescription(event, description) {
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 12px 0;
|
padding: 12px 0;
|
||||||
|
|
||||||
// border-bottom: 1px solid #f0f0f0;
|
|
||||||
|
|
||||||
.notice-container-avatar {
|
.notice-container-avatar {
|
||||||
margin-right: 16px;
|
margin-right: 16px;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
|
|||||||
@@ -18,7 +18,12 @@ defineProps({
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div v-if="list.length">
|
<div v-if="list.length">
|
||||||
<NoticeItem v-for="(item, index) in list" :key="index" :noticeItem="item" />
|
<NoticeItem
|
||||||
|
v-for="(item, index) in list"
|
||||||
|
:key="index"
|
||||||
|
:noticeItem="item"
|
||||||
|
:isLast="index === list.length - 1"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<el-empty v-else :description="transformI18n(emptyText)" />
|
<el-empty v-else :description="transformI18n(emptyText)" />
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -3,9 +3,12 @@ import { useI18n } from "vue-i18n";
|
|||||||
import { ref, computed } from "vue";
|
import { ref, computed } from "vue";
|
||||||
import { noticesData } from "./data";
|
import { noticesData } from "./data";
|
||||||
import NoticeList from "./components/NoticeList.vue";
|
import NoticeList from "./components/NoticeList.vue";
|
||||||
|
|
||||||
import BellIcon from "~icons/lucide/bell";
|
import BellIcon from "~icons/lucide/bell";
|
||||||
|
import ArrowRightIcon from "~icons/ri/arrow-right-s-line";
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
const dropdownRef = ref();
|
||||||
const notices = ref(noticesData);
|
const notices = ref(noticesData);
|
||||||
const activeKey = ref(noticesData[0]?.key);
|
const activeKey = ref(noticesData[0]?.key);
|
||||||
|
|
||||||
@@ -13,14 +16,40 @@ const getLabel = computed(
|
|||||||
() => item =>
|
() => item =>
|
||||||
t(item.name) + (item.list.length > 0 ? `(${item.list.length})` : "")
|
t(item.name) + (item.list.length > 0 ? `(${item.list.length})` : "")
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const currentNoticeHasData = computed(() => {
|
||||||
|
const currentNotice = notices.value.find(
|
||||||
|
item => item.key === activeKey.value
|
||||||
|
);
|
||||||
|
return currentNotice && currentNotice.list.length > 0;
|
||||||
|
});
|
||||||
|
|
||||||
|
const hasAnyNoticeData = computed(() => {
|
||||||
|
return notices.value.some(
|
||||||
|
item => Array.isArray(item.list) && item.list.length > 0
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
const onWatchMore = () => {
|
||||||
|
dropdownRef.value.handleClose();
|
||||||
|
};
|
||||||
|
|
||||||
|
const onMarkAsRead = () => {
|
||||||
|
const currentNotice = notices.value.find(
|
||||||
|
item => item.key === activeKey.value
|
||||||
|
);
|
||||||
|
if (currentNotice) {
|
||||||
|
currentNotice.list = [];
|
||||||
|
}
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<el-dropdown trigger="click" placement="bottom-end">
|
<el-dropdown ref="dropdownRef" trigger="click" placement="bottom-end">
|
||||||
<span
|
<span
|
||||||
:class="['dropdown-badge', 'navbar-bg-hover', 'select-none', 'mr-[7px]']"
|
:class="['dropdown-badge', 'navbar-bg-hover', 'select-none', 'mr-[7px]']"
|
||||||
>
|
>
|
||||||
<el-badge is-dot>
|
<el-badge is-dot :hidden="!hasAnyNoticeData">
|
||||||
<span class="header-notice-icon">
|
<span class="header-notice-icon">
|
||||||
<IconifyIconOffline :icon="BellIcon" />
|
<IconifyIconOffline :icon="BellIcon" />
|
||||||
</span>
|
</span>
|
||||||
@@ -42,7 +71,7 @@ const getLabel = computed(
|
|||||||
<span v-else>
|
<span v-else>
|
||||||
<template v-for="item in notices" :key="item.key">
|
<template v-for="item in notices" :key="item.key">
|
||||||
<el-tab-pane :label="getLabel(item)" :name="`${item.key}`">
|
<el-tab-pane :label="getLabel(item)" :name="`${item.key}`">
|
||||||
<el-scrollbar max-height="330px">
|
<el-scrollbar max-height="345px">
|
||||||
<div class="noticeList-container">
|
<div class="noticeList-container">
|
||||||
<NoticeList :list="item.list" :emptyText="item.emptyText" />
|
<NoticeList :list="item.list" :emptyText="item.emptyText" />
|
||||||
</div>
|
</div>
|
||||||
@@ -51,6 +80,20 @@ const getLabel = computed(
|
|||||||
</template>
|
</template>
|
||||||
</span>
|
</span>
|
||||||
</el-tabs>
|
</el-tabs>
|
||||||
|
<div
|
||||||
|
v-if="currentNoticeHasData"
|
||||||
|
class="border-t border-t-(--el-border-color-light) text-sm"
|
||||||
|
>
|
||||||
|
<div class="flex-bc m-1">
|
||||||
|
<el-button type="primary" size="small" text @click="onWatchMore">
|
||||||
|
{{ t("buttons.pureWatchMore") }}
|
||||||
|
<IconifyIconOffline :icon="ArrowRightIcon" />
|
||||||
|
</el-button>
|
||||||
|
<el-button type="primary" size="small" text @click="onMarkAsRead">
|
||||||
|
{{ t("buttons.pureMarkAsRead") }}
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</el-dropdown-menu>
|
</el-dropdown-menu>
|
||||||
</template>
|
</template>
|
||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
|
|||||||
@@ -159,7 +159,7 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.translation {
|
.translation {
|
||||||
::v-deep(.el-dropdown-menu__item) {
|
:deep(.el-dropdown-menu__item) {
|
||||||
padding: 5px 40px;
|
padding: 5px 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -177,7 +177,7 @@ onMounted(() => {
|
|||||||
.logout {
|
.logout {
|
||||||
width: 120px;
|
width: 120px;
|
||||||
|
|
||||||
::v-deep(.el-dropdown-menu__item) {
|
:deep(.el-dropdown-menu__item) {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
|
|||||||
@@ -180,7 +180,7 @@ watch(
|
|||||||
}
|
}
|
||||||
|
|
||||||
.translation {
|
.translation {
|
||||||
::v-deep(.el-dropdown-menu__item) {
|
:deep(.el-dropdown-menu__item) {
|
||||||
padding: 5px 40px;
|
padding: 5px 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -198,7 +198,7 @@ watch(
|
|||||||
.logout {
|
.logout {
|
||||||
width: 120px;
|
width: 120px;
|
||||||
|
|
||||||
::v-deep(.el-dropdown-menu__item) {
|
:deep(.el-dropdown-menu__item) {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
|
|||||||
@@ -209,18 +209,26 @@ function initRouter() {
|
|||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
return new Promise(resolve => {
|
return new Promise(resolve => {
|
||||||
getAsyncRoutes().then(({ data }) => {
|
getAsyncRoutes().then(({ code, data }) => {
|
||||||
handleAsyncRoutes(cloneDeep(data));
|
if (code === 0) {
|
||||||
storageLocal().setItem(key, data);
|
handleAsyncRoutes(cloneDeep(data));
|
||||||
resolve(router);
|
storageLocal().setItem(key, data);
|
||||||
|
resolve(router);
|
||||||
|
} else {
|
||||||
|
resolve(router);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return new Promise(resolve => {
|
return new Promise(resolve => {
|
||||||
getAsyncRoutes().then(({ data }) => {
|
getAsyncRoutes().then(({ code, data }) => {
|
||||||
handleAsyncRoutes(cloneDeep(data));
|
if (code === 0) {
|
||||||
resolve(router);
|
handleAsyncRoutes(cloneDeep(data));
|
||||||
|
resolve(router);
|
||||||
|
} else {
|
||||||
|
resolve(router);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -80,8 +80,12 @@ export const useUserStore = defineStore("pure-user", {
|
|||||||
return new Promise<UserResult>((resolve, reject) => {
|
return new Promise<UserResult>((resolve, reject) => {
|
||||||
getLogin(data)
|
getLogin(data)
|
||||||
.then(data => {
|
.then(data => {
|
||||||
if (data?.success) setToken(data.data);
|
if (data.code === 0) {
|
||||||
resolve(data);
|
setToken(data.data);
|
||||||
|
resolve(data);
|
||||||
|
} else {
|
||||||
|
reject(data.message);
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
reject(error);
|
reject(error);
|
||||||
@@ -103,9 +107,11 @@ export const useUserStore = defineStore("pure-user", {
|
|||||||
return new Promise<RefreshTokenResult>((resolve, reject) => {
|
return new Promise<RefreshTokenResult>((resolve, reject) => {
|
||||||
refreshTokenApi(data)
|
refreshTokenApi(data)
|
||||||
.then(data => {
|
.then(data => {
|
||||||
if (data) {
|
if (data.code === 0) {
|
||||||
setToken(data.data);
|
setToken(data.data);
|
||||||
resolve(data);
|
resolve(data);
|
||||||
|
} else {
|
||||||
|
reject(data.message);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
|
|||||||
@@ -471,6 +471,11 @@
|
|||||||
color: var(--pure-theme-sub-menu-active-text);
|
color: var(--pure-theme-sub-menu-active-text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.globalization-icon {
|
||||||
|
color: var(--pure-theme-sub-menu-active-text);
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
.el-dropdown-link {
|
.el-dropdown-link {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
@@ -42,7 +42,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@utility navbar-bg-hover {
|
@utility navbar-bg-hover {
|
||||||
@apply dark:text-white dark:hover:bg-[#242424]!;
|
@apply select-none dark:text-white dark:hover:bg-[#242424]!;
|
||||||
}
|
}
|
||||||
|
|
||||||
@utility animate-scale-bounce {
|
@utility animate-scale-bounce {
|
||||||
|
|||||||
@@ -10,6 +10,8 @@ import type {
|
|||||||
PureHttpRequestConfig
|
PureHttpRequestConfig
|
||||||
} from "./types.d";
|
} from "./types.d";
|
||||||
import { stringify } from "qs";
|
import { stringify } from "qs";
|
||||||
|
import { message } from "@/utils/message";
|
||||||
|
import { $t, transformI18n } from "@/plugins/i18n";
|
||||||
import { getToken, formatToken } from "@/utils/auth";
|
import { getToken, formatToken } from "@/utils/auth";
|
||||||
import { useUserStoreHook } from "@/store/modules/user";
|
import { useUserStoreHook } from "@/store/modules/user";
|
||||||
|
|
||||||
@@ -90,6 +92,13 @@ class PureHttp {
|
|||||||
PureHttp.requests.forEach(cb => cb(token));
|
PureHttp.requests.forEach(cb => cb(token));
|
||||||
PureHttp.requests = [];
|
PureHttp.requests = [];
|
||||||
})
|
})
|
||||||
|
.catch(_err => {
|
||||||
|
PureHttp.requests = [];
|
||||||
|
useUserStoreHook().logOut();
|
||||||
|
message(transformI18n($t("login.pureLoginExpired")), {
|
||||||
|
type: "warning"
|
||||||
|
});
|
||||||
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
PureHttp.isRefreshing = false;
|
PureHttp.isRefreshing = false;
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -171,7 +171,7 @@ onBeforeUnmount(() => {
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
::v-deep(.el-upload-dragger) {
|
:deep(.el-upload-dragger) {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 180px;
|
height: 180px;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive, ref } from "vue";
|
|
||||||
import { formUpload } from "@/api/mock";
|
import { formUpload } from "@/api/mock";
|
||||||
import { message } from "@/utils/message";
|
import { message } from "@/utils/message";
|
||||||
|
import { onMounted, reactive, ref } from "vue";
|
||||||
import { type UserInfo, getMine } from "@/api/user";
|
import { type UserInfo, getMine } from "@/api/user";
|
||||||
import type { FormInstance, FormRules } from "element-plus";
|
import type { FormInstance, FormRules } from "element-plus";
|
||||||
import ReCropperPreview from "@/components/ReCropperPreview";
|
import ReCropperPreview from "@/components/ReCropperPreview";
|
||||||
@@ -73,8 +73,8 @@ const handleSubmitImage = () => {
|
|||||||
files: new File([cropperBlob.value], "avatar")
|
files: new File([cropperBlob.value], "avatar")
|
||||||
});
|
});
|
||||||
formUpload(formData)
|
formUpload(formData)
|
||||||
.then(({ success, data }) => {
|
.then(({ code }) => {
|
||||||
if (success) {
|
if (code === 0) {
|
||||||
message("更新头像成功", { type: "success" });
|
message("更新头像成功", { type: "success" });
|
||||||
handleClose();
|
handleClose();
|
||||||
} else {
|
} else {
|
||||||
@@ -98,8 +98,11 @@ const onSubmit = async (formEl: FormInstance) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
getMine().then(res => {
|
onMounted(async () => {
|
||||||
Object.assign(userInfos, res.data);
|
const { code, data } = await getMine();
|
||||||
|
if (code === 0) {
|
||||||
|
Object.assign(userInfos, data);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -55,11 +55,13 @@ const columns: TableColumnList = [
|
|||||||
|
|
||||||
async function onSearch() {
|
async function onSearch() {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
const { data } = await getMineLogs();
|
const { code, data } = await getMineLogs();
|
||||||
dataList.value = data.list;
|
if (code === 0) {
|
||||||
pagination.total = data.total;
|
dataList.value = data.list;
|
||||||
pagination.pageSize = data.pageSize;
|
pagination.total = data.total;
|
||||||
pagination.currentPage = data.currentPage;
|
pagination.pageSize = data.pageSize;
|
||||||
|
pagination.currentPage = data.currentPage;
|
||||||
|
}
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { getMine } from "@/api/user";
|
import { getMine } from "@/api/user";
|
||||||
import { useRouter } from "vue-router";
|
import { useRouter } from "vue-router";
|
||||||
import { ref, onBeforeMount } from "vue";
|
|
||||||
import { ReText } from "@/components/ReText";
|
import { ReText } from "@/components/ReText";
|
||||||
import Profile from "./components/Profile.vue";
|
import Profile from "./components/Profile.vue";
|
||||||
|
import { ref, onMounted, onBeforeMount } from "vue";
|
||||||
import Preferences from "./components/Preferences.vue";
|
import Preferences from "./components/Preferences.vue";
|
||||||
import SecurityLog from "./components/SecurityLog.vue";
|
import SecurityLog from "./components/SecurityLog.vue";
|
||||||
import { useGlobal, deviceDetection } from "@pureadmin/utils";
|
import { useGlobal, deviceDetection } from "@pureadmin/utils";
|
||||||
@@ -61,8 +61,11 @@ const panes = [
|
|||||||
];
|
];
|
||||||
const witchPane = ref("profile");
|
const witchPane = ref("profile");
|
||||||
|
|
||||||
getMine().then(res => {
|
onMounted(async () => {
|
||||||
userInfo.value = res.data;
|
const { code, data } = await getMine();
|
||||||
|
if (code === 0) {
|
||||||
|
userInfo.value = data;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -56,13 +56,13 @@ onMounted(() => {
|
|||||||
:avatars="{
|
:avatars="{
|
||||||
default: {
|
default: {
|
||||||
styles: {
|
styles: {
|
||||||
position: 'left',
|
position: 'start',
|
||||||
container: { marginLeft: '12px', marginRight: '5px' }
|
container: { marginLeft: '12px', marginRight: '5px' }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
ai: {
|
ai: {
|
||||||
src: 'https://xiaoxian521.github.io/hyperlink/img/vue-pure-admin/chatai/gemini.png',
|
src: 'https://xiaoxian521.github.io/hyperlink/img/vue-pure-admin/chatai/gemini.png',
|
||||||
styles: { position: 'left', avatar: { paddingTop: '6px' } }
|
styles: { position: 'start', avatar: { paddingTop: '6px' } }
|
||||||
}
|
}
|
||||||
}"
|
}"
|
||||||
:speechToText="{
|
:speechToText="{
|
||||||
@@ -80,11 +80,11 @@ onMounted(() => {
|
|||||||
},
|
},
|
||||||
svg: { styles: { default: { bottom: '0.35em', left: '0.35em' } } }
|
svg: { styles: { default: { bottom: '0.35em', left: '0.35em' } } }
|
||||||
},
|
},
|
||||||
position: 'inside-right'
|
position: 'inside-end'
|
||||||
}
|
}
|
||||||
}"
|
}"
|
||||||
:submitButtonStyles="{
|
:submitButtonStyles="{
|
||||||
position: 'outside-right',
|
position: 'outside-end',
|
||||||
submit: {
|
submit: {
|
||||||
container: {
|
container: {
|
||||||
default: {
|
default: {
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
}"
|
}"
|
||||||
:submitButtonStyles="{
|
:submitButtonStyles="{
|
||||||
position: 'outside-right',
|
position: 'outside-end',
|
||||||
submit: {
|
submit: {
|
||||||
container: {
|
container: {
|
||||||
default: {
|
default: {
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
}"
|
}"
|
||||||
:avatars="{
|
:avatars="{
|
||||||
default: { styles: { position: 'left' } },
|
default: { styles: { position: 'start' } },
|
||||||
ai: { src: 'https://xiaoxian521.github.io/hyperlink/svg/openai.svg' }
|
ai: { src: 'https://xiaoxian521.github.io/hyperlink/svg/openai.svg' }
|
||||||
}"
|
}"
|
||||||
:submitButtonStyles="{
|
:submitButtonStyles="{
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ onMounted(() => {
|
|||||||
style="border-radius: 8px"
|
style="border-radius: 8px"
|
||||||
:speechToText="{
|
:speechToText="{
|
||||||
webSpeech: { language: 'zh-CN' },
|
webSpeech: { language: 'zh-CN' },
|
||||||
button: { position: 'outside-left' }
|
button: { position: 'outside-start' }
|
||||||
}"
|
}"
|
||||||
:textInput="{
|
:textInput="{
|
||||||
placeholder: { text: '发送消息' }
|
placeholder: { text: '发送消息' }
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ const shortcuts1 = [
|
|||||||
|
|
||||||
const value3 = ref("");
|
const value3 = ref("");
|
||||||
const datePickerRef = ref();
|
const datePickerRef = ref();
|
||||||
const placement = ref("auto");
|
const placement = ref("auto") as any;
|
||||||
const checkTag = ref([
|
const checkTag = ref([
|
||||||
{
|
{
|
||||||
title: "auto", // https://popper.js.org/docs/v2/constructors/#options
|
title: "auto", // https://popper.js.org/docs/v2/constructors/#options
|
||||||
|
|||||||
@@ -71,17 +71,17 @@ const settingTB: ContextProps = reactive({
|
|||||||
|
|
||||||
.dv-a {
|
.dv-a {
|
||||||
padding-top: 30vh;
|
padding-top: 30vh;
|
||||||
color: rgba($color: dodgerblue, $alpha: 80%);
|
color: rgb(30 144 255 / 80%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.dv-b {
|
.dv-b {
|
||||||
padding-top: 10vh;
|
padding-top: 10vh;
|
||||||
color: rgba($color: #000, $alpha: 80%);
|
color: rgb(0 0 0 / 80%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.dv-c {
|
.dv-c {
|
||||||
padding-top: 18vh;
|
padding-top: 18vh;
|
||||||
color: rgba($color: #ce272d, $alpha: 80%);
|
color: rgb(206 39 45 / 80%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -23,8 +23,8 @@ const submitForm = formEl => {
|
|||||||
date: validateForm.date // 别的字段
|
date: validateForm.date // 别的字段
|
||||||
});
|
});
|
||||||
formUpload(formData)
|
formUpload(formData)
|
||||||
.then(({ success }) => {
|
.then(({ code }) => {
|
||||||
if (success) {
|
if (code === 0) {
|
||||||
message("提交成功", { type: "success" });
|
message("提交成功", { type: "success" });
|
||||||
} else {
|
} else {
|
||||||
message("提交失败");
|
message("提交失败");
|
||||||
|
|||||||
@@ -143,7 +143,7 @@ const onDownload = () => {
|
|||||||
class="pure-upload"
|
class="pure-upload"
|
||||||
list-type="picture-card"
|
list-type="picture-card"
|
||||||
accept="image/jpeg,image/png,image/gif"
|
accept="image/jpeg,image/png,image/gif"
|
||||||
action="https://run.mocky.io/v3/3aa761d7-b0b3-4a03-96b3-6168d4f7467b"
|
action="https://pureadmin.free.beeceptor.com/images"
|
||||||
:limit="3"
|
:limit="3"
|
||||||
:headers="{ Authorization: 'eyJhbGciOiJIUzUxMiJ9.admin' }"
|
:headers="{ Authorization: 'eyJhbGciOiJIUzUxMiJ9.admin' }"
|
||||||
:on-exceed="onExceed"
|
:on-exceed="onExceed"
|
||||||
@@ -264,13 +264,13 @@ const onDownload = () => {
|
|||||||
表格操作栏中的上传头像功能
|
表格操作栏中的上传头像功能
|
||||||
</p>
|
</p>
|
||||||
<p class="text-[red] text-[12px] flex flex-auto items-center justify-end">
|
<p class="text-[red] text-[12px] flex flex-auto items-center justify-end">
|
||||||
免责声明:上传接口使用免费开源的
|
免责声明:上传接口使用
|
||||||
<el-link
|
<el-link
|
||||||
href="https://designer.mocky.io/"
|
href="https://beeceptor.com/"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
style="font-size: 16px; font-weight: 800"
|
style="font-size: 16px; font-weight: 800"
|
||||||
>
|
>
|
||||||
Mocky
|
Beeceptor
|
||||||
</el-link>
|
</el-link>
|
||||||
<span class="font-bold text-[18x]"> 请不要上传重要信息 </span
|
<span class="font-bold text-[18x]"> 请不要上传重要信息 </span
|
||||||
>,如果造成任何损失,我们概不负责
|
>,如果造成任何损失,我们概不负责
|
||||||
|
|||||||
@@ -38,12 +38,14 @@ const dataLoading = ref(true);
|
|||||||
|
|
||||||
const getCardListData = async () => {
|
const getCardListData = async () => {
|
||||||
try {
|
try {
|
||||||
const { data } = await getCardList();
|
const { code, data } = await getCardList();
|
||||||
productList.value = data.list;
|
if (code === 0) {
|
||||||
pagination.value = {
|
productList.value = data.list;
|
||||||
...pagination.value,
|
pagination.value = {
|
||||||
total: data.list.length
|
...pagination.value,
|
||||||
};
|
total: data.list.length
|
||||||
|
};
|
||||||
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(e);
|
console.log(e);
|
||||||
} finally {
|
} finally {
|
||||||
|
|||||||
@@ -73,23 +73,21 @@ const onLogin = async (formEl: FormInstance | undefined) => {
|
|||||||
username: ruleForm.username,
|
username: ruleForm.username,
|
||||||
password: ruleForm.password
|
password: ruleForm.password
|
||||||
})
|
})
|
||||||
.then(res => {
|
.then(async () => {
|
||||||
if (res.success) {
|
// 获取后端路由
|
||||||
// 获取后端路由
|
await initRouter();
|
||||||
return initRouter().then(() => {
|
disabled.value = true;
|
||||||
disabled.value = true;
|
router.push(getTopMenu(true).path).then(() => {
|
||||||
router
|
message(t("login.pureLoginSuccess"), { type: "success" });
|
||||||
.push(getTopMenu(true).path)
|
});
|
||||||
.then(() => {
|
|
||||||
message(t("login.pureLoginSuccess"), { type: "success" });
|
|
||||||
})
|
|
||||||
.finally(() => (disabled.value = false));
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
message(t("login.pureLoginFail"), { type: "error" });
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
.finally(() => (loading.value = false));
|
.catch(_err => {
|
||||||
|
message(t("login.pureLoginFail"), { type: "error" });
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
disabled.value = false;
|
||||||
|
loading.value = false;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
@@ -370,7 +368,7 @@ watch(loginDay, value => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.translation {
|
.translation {
|
||||||
::v-deep(.el-dropdown-menu__item) {
|
:deep(.el-dropdown-menu__item) {
|
||||||
padding: 5px 40px;
|
padding: 5px 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -129,11 +129,13 @@ export function useRole(tableRef: Ref) {
|
|||||||
|
|
||||||
async function onSearch() {
|
async function onSearch() {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
const { data } = await getLoginLogsList(toRaw(form));
|
const { code, data } = await getLoginLogsList(toRaw(form));
|
||||||
dataList.value = data.list;
|
if (code === 0) {
|
||||||
pagination.total = data.total;
|
dataList.value = data.list;
|
||||||
pagination.pageSize = data.pageSize;
|
pagination.total = data.total;
|
||||||
pagination.currentPage = data.currentPage;
|
pagination.pageSize = data.pageSize;
|
||||||
|
pagination.currentPage = data.currentPage;
|
||||||
|
}
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
|
|||||||
@@ -134,11 +134,13 @@ export function useRole(tableRef: Ref) {
|
|||||||
|
|
||||||
async function onSearch() {
|
async function onSearch() {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
const { data } = await getOperationLogsList(toRaw(form));
|
const { code, data } = await getOperationLogsList(toRaw(form));
|
||||||
dataList.value = data.list;
|
if (code === 0) {
|
||||||
pagination.total = data.total;
|
dataList.value = data.list;
|
||||||
pagination.pageSize = data.pageSize;
|
pagination.total = data.total;
|
||||||
pagination.currentPage = data.currentPage;
|
pagination.pageSize = data.pageSize;
|
||||||
|
pagination.currentPage = data.currentPage;
|
||||||
|
}
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
|
|||||||
@@ -204,11 +204,13 @@ export function useRole(tableRef: Ref) {
|
|||||||
|
|
||||||
async function onSearch() {
|
async function onSearch() {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
const { data } = await getSystemLogsList(toRaw(form));
|
const { code, data } = await getSystemLogsList(toRaw(form));
|
||||||
dataList.value = data.list;
|
if (code === 0) {
|
||||||
pagination.total = data.total;
|
dataList.value = data.list;
|
||||||
pagination.pageSize = data.pageSize;
|
pagination.total = data.total;
|
||||||
pagination.currentPage = data.currentPage;
|
pagination.pageSize = data.pageSize;
|
||||||
|
pagination.currentPage = data.currentPage;
|
||||||
|
}
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
|
|||||||
@@ -80,11 +80,13 @@ export function useRole() {
|
|||||||
|
|
||||||
async function onSearch() {
|
async function onSearch() {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
const { data } = await getOnlineLogsList(toRaw(form));
|
const { code, data } = await getOnlineLogsList(toRaw(form));
|
||||||
dataList.value = data.list;
|
if (code === 0) {
|
||||||
pagination.total = data.total;
|
dataList.value = data.list;
|
||||||
pagination.pageSize = data.pageSize;
|
pagination.total = data.total;
|
||||||
pagination.currentPage = data.currentPage;
|
pagination.pageSize = data.pageSize;
|
||||||
|
pagination.currentPage = data.currentPage;
|
||||||
|
}
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import { message } from "@/utils/message";
|
||||||
import { initRouter } from "@/router/utils";
|
import { initRouter } from "@/router/utils";
|
||||||
import { storageLocal } from "@pureadmin/utils";
|
import { storageLocal } from "@pureadmin/utils";
|
||||||
import { type CSSProperties, ref, computed } from "vue";
|
import { type CSSProperties, ref, computed } from "vue";
|
||||||
@@ -32,12 +33,13 @@ const options = [
|
|||||||
function onChange() {
|
function onChange() {
|
||||||
useUserStoreHook()
|
useUserStoreHook()
|
||||||
.loginByUsername({ username: username.value, password: "admin123" })
|
.loginByUsername({ username: username.value, password: "admin123" })
|
||||||
.then(res => {
|
.then(() => {
|
||||||
if (res.success) {
|
storageLocal().removeItem("async-routes");
|
||||||
storageLocal().removeItem("async-routes");
|
usePermissionStoreHook().clearAllCachePage();
|
||||||
usePermissionStoreHook().clearAllCachePage();
|
initRouter();
|
||||||
initRouter();
|
})
|
||||||
}
|
.catch(err => {
|
||||||
|
message(err, { type: "error" });
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -74,17 +74,20 @@ export function useDept() {
|
|||||||
|
|
||||||
async function onSearch() {
|
async function onSearch() {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
const { data } = await getDeptList(); // 这里是返回一维数组结构,前端自行处理成树结构,返回格式要求:唯一id加父节点parentId,parentId取父节点id
|
const { code, data } = await getDeptList(); // 这里是返回一维数组结构,前端自行处理成树结构,返回格式要求:唯一id加父节点parentId,parentId取父节点id
|
||||||
let newData = data;
|
if (code === 0) {
|
||||||
if (!isAllEmpty(form.name)) {
|
let newData = data;
|
||||||
// 前端搜索部门名称
|
if (!isAllEmpty(form.name)) {
|
||||||
newData = newData.filter(item => item.name.includes(form.name));
|
// 前端搜索部门名称
|
||||||
|
newData = newData.filter(item => item.name.includes(form.name));
|
||||||
|
}
|
||||||
|
if (!isAllEmpty(form.status)) {
|
||||||
|
// 前端搜索状态
|
||||||
|
newData = newData.filter(item => item.status === form.status);
|
||||||
|
}
|
||||||
|
dataList.value = handleTree(newData); // 处理成树结构
|
||||||
}
|
}
|
||||||
if (!isAllEmpty(form.status)) {
|
|
||||||
// 前端搜索状态
|
|
||||||
newData = newData.filter(item => item.status === form.status);
|
|
||||||
}
|
|
||||||
dataList.value = handleTree(newData); // 处理成树结构
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
}, 500);
|
}, 500);
|
||||||
|
|||||||
@@ -106,15 +106,18 @@ export function useMenu() {
|
|||||||
|
|
||||||
async function onSearch() {
|
async function onSearch() {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
const { data } = await getMenuList(); // 这里是返回一维数组结构,前端自行处理成树结构,返回格式要求:唯一id加父节点parentId,parentId取父节点id
|
const { code, data } = await getMenuList(); // 这里是返回一维数组结构,前端自行处理成树结构,返回格式要求:唯一id加父节点parentId,parentId取父节点id
|
||||||
let newData = data;
|
if (code === 0) {
|
||||||
if (!isAllEmpty(form.title)) {
|
let newData = data;
|
||||||
// 前端搜索菜单名称
|
if (!isAllEmpty(form.title)) {
|
||||||
newData = newData.filter(item =>
|
// 前端搜索菜单名称
|
||||||
transformI18n(item.title).includes(form.title)
|
newData = newData.filter(item =>
|
||||||
);
|
transformI18n(item.title).includes(form.title)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
dataList.value = handleTree(newData); // 处理成树结构
|
||||||
}
|
}
|
||||||
dataList.value = handleTree(newData); // 处理成树结构
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
}, 500);
|
}, 500);
|
||||||
|
|||||||
@@ -163,11 +163,13 @@ export function useRole(treeRef: Ref) {
|
|||||||
|
|
||||||
async function onSearch() {
|
async function onSearch() {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
const { data } = await getRoleList(toRaw(form));
|
const { code, data } = await getRoleList(toRaw(form));
|
||||||
dataList.value = data.list;
|
if (code === 0) {
|
||||||
pagination.total = data.total;
|
dataList.value = data.list;
|
||||||
pagination.pageSize = data.pageSize;
|
pagination.total = data.total;
|
||||||
pagination.currentPage = data.currentPage;
|
pagination.pageSize = data.pageSize;
|
||||||
|
pagination.currentPage = data.currentPage;
|
||||||
|
}
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
@@ -229,8 +231,10 @@ export function useRole(treeRef: Ref) {
|
|||||||
if (id) {
|
if (id) {
|
||||||
curRow.value = row;
|
curRow.value = row;
|
||||||
isShow.value = true;
|
isShow.value = true;
|
||||||
const { data } = await getRoleMenuIds({ id });
|
const { code, data } = await getRoleMenuIds({ id });
|
||||||
treeRef.value.setCheckedKeys(data);
|
if (code === 0) {
|
||||||
|
treeRef.value.setCheckedKeys(data);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
curRow.value = null;
|
curRow.value = null;
|
||||||
isShow.value = false;
|
isShow.value = false;
|
||||||
@@ -268,9 +272,11 @@ export function useRole(treeRef: Ref) {
|
|||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
onSearch();
|
onSearch();
|
||||||
const { data } = await getRoleMenu();
|
const { code, data } = await getRoleMenu();
|
||||||
treeIds.value = getKeyList(data, "id");
|
if (code === 0) {
|
||||||
treeData.value = handleTree(data);
|
treeIds.value = getKeyList(data, "id");
|
||||||
|
treeData.value = handleTree(data);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
watch(isExpandAll, val => {
|
watch(isExpandAll, val => {
|
||||||
|
|||||||
@@ -272,11 +272,13 @@ export function useUser(tableRef: Ref, treeRef: Ref) {
|
|||||||
|
|
||||||
async function onSearch() {
|
async function onSearch() {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
const { data } = await getUserList(toRaw(form));
|
const { code, data } = await getUserList(toRaw(form));
|
||||||
dataList.value = data.list;
|
if (code === 0) {
|
||||||
pagination.total = data.total;
|
dataList.value = data.list;
|
||||||
pagination.pageSize = data.pageSize;
|
pagination.total = data.total;
|
||||||
pagination.currentPage = data.currentPage;
|
pagination.pageSize = data.pageSize;
|
||||||
|
pagination.currentPage = data.currentPage;
|
||||||
|
}
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
@@ -497,13 +499,16 @@ export function useUser(tableRef: Ref, treeRef: Ref) {
|
|||||||
onSearch();
|
onSearch();
|
||||||
|
|
||||||
// 归属部门
|
// 归属部门
|
||||||
const { data } = await getDeptList();
|
const { code, data } = await getDeptList();
|
||||||
higherDeptOptions.value = handleTree(data);
|
if (code === 0) {
|
||||||
treeData.value = handleTree(data);
|
higherDeptOptions.value = handleTree(data);
|
||||||
|
treeData.value = handleTree(data);
|
||||||
|
}
|
||||||
|
|
||||||
treeLoading.value = false;
|
treeLoading.value = false;
|
||||||
|
|
||||||
// 角色列表
|
// 角色列表
|
||||||
roleOptions.value = (await getAllRoleList()).data;
|
roleOptions.value = (await getAllRoleList()).data ?? [];
|
||||||
});
|
});
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import { ref, computed } from "vue";
|
|
||||||
import { tableDataDrag } from "../data";
|
import { tableDataDrag } from "../data";
|
||||||
import { message } from "@/utils/message";
|
import { message } from "@/utils/message";
|
||||||
import { templateRef } from "@vueuse/core";
|
import { ref, computed, useTemplateRef } from "vue";
|
||||||
import { clone, useDark, useECharts } from "@pureadmin/utils";
|
import { clone, useDark, useECharts } from "@pureadmin/utils";
|
||||||
|
|
||||||
export function useColumns() {
|
export function useColumns() {
|
||||||
@@ -31,7 +30,7 @@ export function useColumns() {
|
|||||||
const theme = computed(() => (isDark.value ? "dark" : "light"));
|
const theme = computed(() => (isDark.value ? "dark" : "light"));
|
||||||
|
|
||||||
dataList.value.forEach((_, i) => {
|
dataList.value.forEach((_, i) => {
|
||||||
const { setOptions } = useECharts(templateRef(`PieChartRef${i}`), {
|
const { setOptions } = useECharts(useTemplateRef(`PieChartRef${i}`), {
|
||||||
theme
|
theme
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import {
|
|||||||
getNodeByUniqueId,
|
getNodeByUniqueId,
|
||||||
appendFieldByUniqueId
|
appendFieldByUniqueId
|
||||||
} from "@/utils/tree";
|
} from "@/utils/tree";
|
||||||
|
import { useI18n } from "vue-i18n";
|
||||||
import { useDetail } from "./hooks";
|
import { useDetail } from "./hooks";
|
||||||
import { ref, computed } from "vue";
|
import { ref, computed } from "vue";
|
||||||
import { clone } from "@pureadmin/utils";
|
import { clone } from "@pureadmin/utils";
|
||||||
@@ -15,6 +16,7 @@ defineOptions({
|
|||||||
name: "Tabs"
|
name: "Tabs"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const { locale } = useI18n();
|
||||||
const { toDetail, router } = useDetail();
|
const { toDetail, router } = useDetail();
|
||||||
const menusTree = clone(usePermissionStoreHook().wholeMenus, true);
|
const menusTree = clone(usePermissionStoreHook().wholeMenus, true);
|
||||||
|
|
||||||
@@ -30,6 +32,12 @@ const multiTags = computed(() => {
|
|||||||
return useMultiTagsStoreHook()?.multiTags;
|
return useMultiTagsStoreHook()?.multiTags;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const treeSelectProps = {
|
||||||
|
label: (data: any) => transformI18n(data.meta.title),
|
||||||
|
children: "children",
|
||||||
|
disabled: "disabled"
|
||||||
|
};
|
||||||
|
|
||||||
function onCloseTags() {
|
function onCloseTags() {
|
||||||
if (currentValues.value.length === 0) return;
|
if (currentValues.value.length === 0) return;
|
||||||
currentValues.value.forEach(uniqueId => {
|
currentValues.value.forEach(uniqueId => {
|
||||||
@@ -92,6 +100,7 @@ function onCloseTags() {
|
|||||||
|
|
||||||
<el-divider />
|
<el-divider />
|
||||||
<el-tree-select
|
<el-tree-select
|
||||||
|
:key="locale"
|
||||||
v-model="currentValues"
|
v-model="currentValues"
|
||||||
class="w-[300px]!"
|
class="w-[300px]!"
|
||||||
node-key="uniqueId"
|
node-key="uniqueId"
|
||||||
@@ -100,11 +109,7 @@ function onCloseTags() {
|
|||||||
multiple
|
multiple
|
||||||
filterable
|
filterable
|
||||||
default-expand-all
|
default-expand-all
|
||||||
:props="{
|
:props="treeSelectProps"
|
||||||
label: data => transformI18n(data.meta.title),
|
|
||||||
children: 'children',
|
|
||||||
disabled: 'disabled'
|
|
||||||
}"
|
|
||||||
:data="treeData"
|
:data="treeData"
|
||||||
>
|
>
|
||||||
<template #default="{ data }">
|
<template #default="{ data }">
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, nextTick, ref, toRef, watch } from "vue";
|
import { computed, nextTick, ref, toRef, watch } from "vue";
|
||||||
import { TransitionPresets, executeTransition } from "@vueuse/core";
|
import { TransitionPresets, transition } from "@vueuse/core";
|
||||||
import {
|
import {
|
||||||
Position,
|
Position,
|
||||||
BaseEdge,
|
BaseEdge,
|
||||||
@@ -153,7 +153,7 @@ async function runAnimation() {
|
|||||||
currentLength.value = totalLength;
|
currentLength.value = totalLength;
|
||||||
}
|
}
|
||||||
|
|
||||||
await executeTransition(edgePoint, from, totalLength, {
|
await transition(edgePoint, from, totalLength, {
|
||||||
transition: TransitionPresets.easeInOutCubic,
|
transition: TransitionPresets.easeInOutCubic,
|
||||||
duration: Math.max(1500, totalLength / 2),
|
duration: Math.max(1500, totalLength / 2),
|
||||||
abort: () => !isAnimating.value
|
abort: () => !isAnimating.value
|
||||||
|
|||||||
@@ -185,11 +185,13 @@ const optionsBasis: Array<OptionsType> = [
|
|||||||
}
|
}
|
||||||
}"
|
}"
|
||||||
>
|
>
|
||||||
<el-card shadow="never" class="h-[580px]">
|
<el-card shadow="never">
|
||||||
<div class="flex justify-between">
|
<div class="flex justify-between">
|
||||||
<span class="text-md font-medium">数据统计</span>
|
<span class="text-md font-medium">数据统计</span>
|
||||||
</div>
|
</div>
|
||||||
<WelcomeTable class="mt-3" />
|
<el-scrollbar max-height="504" class="mt-3">
|
||||||
|
<WelcomeTable />
|
||||||
|
</el-scrollbar>
|
||||||
</el-card>
|
</el-card>
|
||||||
</re-col>
|
</re-col>
|
||||||
|
|
||||||
@@ -271,6 +273,10 @@ const optionsBasis: Array<OptionsType> = [
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:deep(.el-timeline.is-start) {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.main-content {
|
.main-content {
|
||||||
margin: 20px 20px 0 !important;
|
margin: 20px 20px 0 !important;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user