From f6d813dff47fda10c1d5f6b8d8a97762f8740f52 Mon Sep 17 00:00:00 2001 From: "1378012178@qq.com" <1378012178@qq.com> Date: Thu, 19 Dec 2024 15:00:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BB=E6=95=99=E8=AF=BE=E7=A8=8B-=E5=AD=A6?= =?UTF-8?q?=E7=94=9F=E7=AB=AF-=E6=89=8B=E6=9C=BA=E7=AB=AF=E9=80=82?= =?UTF-8?q?=E9=85=8D=EF=BC=9A=E5=90=84=E5=8A=9F=E8=83=BD=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + src/views/kc/wjxCswj/WjxCswjStuList.vue | 25 +++++++ .../wjxWjxx/components/WjxWjxxTmlbDjForm.vue | 75 ++++++++++++++++++- .../components/WjxWjxxTmlbDjV2Form.vue | 20 ++++- src/views/site/studentWdkc/studentMain.vue | 7 +- src/views/zy/zyGonggao/StudentGonggaoList.vue | 14 +++- src/views/zy/zyInfo/StudentZyInfoList.vue | 23 ++++++ src/views/zy/zyInfo/StudentZyInfoQmksList.vue | 24 ++++++ .../zy/zyInfo/components/ZyInfoDetailForm.vue | 23 ++++-- 9 files changed, 196 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index cbf72a2..bf57885 100644 --- a/README.md +++ b/README.md @@ -382,4 +382,5 @@ Online表单&Online报表&代码生成 ## 判断是否小尺寸屏幕 import { useScreenSize } from '/src/utils/screenSize/useScreenSize' + const { isSmallScreen } = useScreenSize(); \ No newline at end of file diff --git a/src/views/kc/wjxCswj/WjxCswjStuList.vue b/src/views/kc/wjxCswj/WjxCswjStuList.vue index bb9b4a0..2caa74c 100644 --- a/src/views/kc/wjxCswj/WjxCswjStuList.vue +++ b/src/views/kc/wjxCswj/WjxCswjStuList.vue @@ -35,6 +35,9 @@
{{getStatus(item.flag)}}
+ +
{{ getStatus(item.flag) }}
+
{{item.title}}
@@ -191,6 +194,17 @@ return 'background: linear-gradient(180deg, #fb8c7f, #f56670)'; } } + +function classFun_sm(type) { + if (type == '-1') { + return 'color: rgb(215, 72, 82);'; // 深红色 +} else if (type == '0') { + return 'color: rgb(225, 95, 10);'; // 深橙色 +} else if (type == '1') { + return 'color: rgb(5, 136, 182);'; // 深天蓝色 +} +} + function getStatus(flag){ if(flag == '-1'){ return "待提交"; @@ -204,6 +218,17 @@