From b41212f64fc376b4c217c4218ad75c83f68c0454 Mon Sep 17 00:00:00 2001 From: yangjun <1173114630@qq.com> Date: Sat, 6 Jul 2024 15:29:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 5 +- .../kc/wjxWjxx/components/WjxWjxxTmlbForm.vue | 30 +- src/views/site/common/header.vue | 24 +- src/views/site/index.vue | 47 +- src/views/site/jrkclb/kclbList.vue | 9 +- src/views/site/jrkclb/kclbRkb.vue | 4 +- .../renKeJiaoCheng/checkKecheng/dqxqkc.vue | 118 +- src/views/site/renKeJiaoCheng/index.vue | 3 +- src/views/site/studentWdkc/studentDbtx.vue | 10 +- src/views/site/studentWdkc/studentWdkc.vue | 144 +- src/views/site/studentWdkc/teacherDbtx.vue | 83 + src/views/site/studentWdkc/teacherYulan.vue | 230 +++ src/views/zy/jiaoXueDanYuanNeiRong/index.vue | 1508 +++++++++-------- src/views/zy/zyGonggao/TeacherYulanList.vue | 275 +++ src/views/zy/zyGonggao/ZyGonggaoList.vue | 16 +- src/views/zy/zyInfo/StudentZyInfoList.vue | 36 +- src/views/zy/zyInfo/ZyInfoList.vue | 13 +- .../zy/zyInfo/components/ZyInfoDetailForm.vue | 242 +++ .../zyInfo/components/ZyInfoDetailModal.vue | 75 + .../zy/zyInfo/components/ZyInfoEditForm.vue | 290 ++++ .../zy/zyInfo/components/ZyInfoEditModal.vue | 75 + src/views/zy/zyInfo/components/ZyInfoForm.vue | 19 +- .../zy/zyInfoStudent/ZyInfoStudent.data.ts | 11 +- .../zy/zyInfoStudent/ZyInfoStudentList.vue | 26 +- .../components/ZyInfoStudentForm.vue | 31 +- .../components/ZyInfoStudentScoreForm.vue | 29 +- src/views/zyk/ZykInfo.data.ts | 3 +- src/views/zyk/ZykInfoYinyongList.vue | 367 ++++ src/views/zyk/ZykInfoYinyongModal.vue | 83 + 29 files changed, 2942 insertions(+), 864 deletions(-) create mode 100644 src/views/site/studentWdkc/teacherDbtx.vue create mode 100644 src/views/site/studentWdkc/teacherYulan.vue create mode 100644 src/views/zy/zyGonggao/TeacherYulanList.vue create mode 100644 src/views/zy/zyInfo/components/ZyInfoDetailForm.vue create mode 100644 src/views/zy/zyInfo/components/ZyInfoDetailModal.vue create mode 100644 src/views/zy/zyInfo/components/ZyInfoEditForm.vue create mode 100644 src/views/zy/zyInfo/components/ZyInfoEditModal.vue create mode 100644 src/views/zyk/ZykInfoYinyongList.vue create mode 100644 src/views/zyk/ZykInfoYinyongModal.vue diff --git a/.env.production b/.env.production index d40284e..bc405b0 100644 --- a/.env.production +++ b/.env.production @@ -19,7 +19,8 @@ VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE = false VITE_GLOB_API_URL=/jeecg-boot #后台接口全路径地址(必填) -VITE_GLOB_DOMAIN_URL=https://zxkccx.webvpn.nenu.edu.cn/jeecg-boot +# VITE_GLOB_DOMAIN_URL=https://zxkccx.webvpn.nenu.edu.cn/jeecg-boot +VITE_GLOB_DOMAIN_URL=https://kczxcs.nenu.edu.cn/jeecg-boot # VITE_GLOB_DOMAIN_URL=http://210.47.29.100/jeecg-boot #RTC服务器地址 @@ -38,5 +39,5 @@ VITE_USE_PWA = false VITE_LEGACY = false # 是否开启单点登录 -VITE_GLOB_APP_OPEN_SSO = true +VITE_GLOB_APP_OPEN_SSO = false diff --git a/src/views/kc/wjxWjxx/components/WjxWjxxTmlbForm.vue b/src/views/kc/wjxWjxx/components/WjxWjxxTmlbForm.vue index 6f174fd..72a9cff 100644 --- a/src/views/kc/wjxWjxx/components/WjxWjxxTmlbForm.vue +++ b/src/views/kc/wjxWjxx/components/WjxWjxxTmlbForm.vue @@ -16,10 +16,13 @@
{{ title }}
- -
- -
+ + + + \ No newline at end of file diff --git a/src/views/site/renKeJiaoCheng/index.vue b/src/views/site/renKeJiaoCheng/index.vue index 834cc88..99733d1 100644 --- a/src/views/site/renKeJiaoCheng/index.vue +++ b/src/views/site/renKeJiaoCheng/index.vue @@ -5,9 +5,10 @@ 修改课程提醒 全部课程 + + -
{{index2+1}}、{{item.content}}
-
发布时间:{{item.createTime}}
- - 查看 + 提醒时间:{{item.createTime}} + 查看 @@ -38,6 +37,9 @@ const dataSource = ref([]); //进入就加载 onMounted(() => { loaddata() + setInterval(() => { + loaddata() + }, 60*1000); }); function loaddata(){ defHttp.get({ url: '/zyDbtx/zyDbtx/list',params:{pageSize:10,pageNo:1,createBy:userStore.getUserInfo.username} }).then((res) => { diff --git a/src/views/site/studentWdkc/studentWdkc.vue b/src/views/site/studentWdkc/studentWdkc.vue index 35eaae5..d93dc15 100644 --- a/src/views/site/studentWdkc/studentWdkc.vue +++ b/src/views/site/studentWdkc/studentWdkc.vue @@ -1,79 +1,127 @@ diff --git a/src/views/site/studentWdkc/teacherYulan.vue b/src/views/site/studentWdkc/teacherYulan.vue new file mode 100644 index 0000000..85539ce --- /dev/null +++ b/src/views/site/studentWdkc/teacherYulan.vue @@ -0,0 +1,230 @@ + + + + diff --git a/src/views/zy/jiaoXueDanYuanNeiRong/index.vue b/src/views/zy/jiaoXueDanYuanNeiRong/index.vue index 183e434..95e66d7 100644 --- a/src/views/zy/jiaoXueDanYuanNeiRong/index.vue +++ b/src/views/zy/jiaoXueDanYuanNeiRong/index.vue @@ -1,690 +1,880 @@