From 49a435043b0b1a289a24606e35253365d7ab3956 Mon Sep 17 00:00:00 2001
From: QYF-GitLab1 <1940665526@qq.com>
Date: 星期一, 25 八月 2025 17:51:57 +0800
Subject: [PATCH] 首页、及教学出版样式修改

---
 src/views/classManage/talkingPoint.vue |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/views/classManage/talkingPoint.vue b/src/views/classManage/talkingPoint.vue
index a28c035..561f2a8 100644
--- a/src/views/classManage/talkingPoint.vue
+++ b/src/views/classManage/talkingPoint.vue
@@ -37,7 +37,7 @@
           <el-table-column prop="index" label="搴忓彿" width="70" />
           <el-table-column label="璇濋鍚嶇О" width="500">
             <template #default="scope">
-              <span style="color: #ff6c00" v-if="scope.row.name">{{ scope.row.name }}</span>
+              <span style="color: #019e58" v-if="scope.row.name">{{ scope.row.name }}</span>
             </template>
           </el-table-column>
           <el-table-column prop="createDate" label="鍙戣捣鏃ユ湡" />
@@ -145,7 +145,7 @@
 })
 
 onMounted(() => {
-  const userCache: any = localStorage.getItem('jesk-userInfo')
+  const userCache: any = localStorage.getItem(config.userInfoKey)
   if (userCache) {
     userInfo.value = JSON.parse(userCache)
   }
@@ -172,11 +172,11 @@
 const getTopicInfo = () => {
   const pramas = {
     classId: classInfo.id,
-    refCodes: [config.refCodes.talk]
+    refCodes: [config.refCode.talk]
   }
   MG.edu.getClassTopic(pramas).then((res: any) => {
     const list = res
-    talkTopicInfo.value = list.find((item: any) => item.refCode == config.refCodes.talk)
+    talkTopicInfo.value = list.find((item: any) => item.refCode == config.refCode.talk)
     if (talkTopicInfo.value.id) {
       getMessage()
     }
@@ -215,7 +215,7 @@
 }
 
 const newTalkMessage = () => {
-  const userCache: any = localStorage.getItem('jesk-userInfo')
+  const userCache: any = localStorage.getItem(config.userInfoKey)
   const userInfo = JSON.parse(userCache)
   const textObj = {
     content: talkContent.value,

--
Gitblit v1.9.1