From 1734fc569598285d8866c0b490cbca6dda859d1a Mon Sep 17 00:00:00 2001 From: ap <951984189@qq.com> Date: Sat, 18 Dec 2021 10:27:23 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 803de77..699345f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ cool-admin Logo

-

cool-admin 一个很酷的后台权限管理系统,开源免费,模块化、插件化、极速开发 CRUD,方便快速构建迭代后台管理系统, 到论坛 进一步了解

+

cool-admin 一个很酷的后台权限管理系统,开源免费,模块化、插件化、极速开发 CRUD,方便快速构建迭代后台管理系统, 到文档 进一步了解

GitHub license From 5a9fbf2b86164087e1c7efe7713b1d6f73d8e822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=95=8A=E5=B9=B3?= <951984189@qq.com> Date: Sat, 19 Feb 2022 12:06:53 +0800 Subject: [PATCH 2/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=88=90LF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitattributes | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index b8b24d0..e41187f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ *.js text eol=lf *.json text eol=lf -*.ts text eol=lf \ No newline at end of file +*.ts text eol=lf +*.vue text eol=lf \ No newline at end of file From 55874b5378d934f78fdbcf4cf33b1095608e2d91 Mon Sep 17 00:00:00 2001 From: ap <951984189@qq.com> Date: Mon, 21 Feb 2022 17:57:08 +0800 Subject: [PATCH 3/4] =?UTF-8?q?=E6=97=A5=E5=BF=97=E5=AD=98=E5=82=A8?= =?UTF-8?q?=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cool/modules/base/views/log.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cool/modules/base/views/log.vue b/src/cool/modules/base/views/log.vue index 73b4ebe..4e66774 100644 --- a/src/cool/modules/base/views/log.vue +++ b/src/cool/modules/base/views/log.vue @@ -117,7 +117,7 @@ export default defineComponent({ // 保存天数 function saveDay() { - service.base.sys.log.setKeep(day.value).then(() => { + service.base.sys.log.setKeep({ value: day.value }).then(() => { ElMessage.success("保存成功"); }); } From d95b01e3ab094d53784feee9a0bd3cbe0dfca248 Mon Sep 17 00:00:00 2001 From: ap <951984189@qq.com> Date: Wed, 23 Feb 2022 18:40:58 +0800 Subject: [PATCH 4/4] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E4=B8=BA=E7=A9=BA=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cool/modules/task/views/task.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/cool/modules/task/views/task.vue b/src/cool/modules/task/views/task.vue index fd651a2..4a1fa83 100644 --- a/src/cool/modules/task/views/task.vue +++ b/src/cool/modules/task/views/task.vue @@ -315,6 +315,9 @@ export default defineComponent({ // 更多列表 function moreList(res: any, { list, pagination }: any) { + if (!res) { + return; + } const { page, size } = res.pagination; const len = res.list.length; const max = list.length; @@ -490,7 +493,7 @@ export default defineComponent({ component: { name: "el-input", props: { - placeholder: "sys.test.add(params)" + placeholder: "taskDemoService.test([1,2])" } } },