miaofuhao %!s(int64=7) %!d(string=před) měsíci
rodič
revize
c787221c7d

+ 1 - 1
.env.development

@@ -1,5 +1,5 @@
1 1
 # 页面标题
2
-VITE_APP_TITLE = 12356心理援助热线
2
+VITE_APP_TITLE = 智能客服系统
3 3
 
4 4
 # 开发环境配置
5 5
 VITE_APP_ENV = 'development'

+ 1 - 1
.env.production

@@ -1,5 +1,5 @@
1 1
 # 页面标题
2
-VITE_APP_TITLE = 12356心理援助热线
2
+VITE_APP_TITLE = 智能客服系统
3 3
 
4 4
 # 生产环境配置
5 5
 VITE_APP_ENV = 'production'

+ 1 - 1
.env.staging

@@ -1,5 +1,5 @@
1 1
 # 页面标题
2
-VITE_APP_TITLE = 12356心理援助热线
2
+VITE_APP_TITLE = 智能客服系统
3 3
 
4 4
 # 生产环境配置
5 5
 VITE_APP_ENV = 'staging'

+ 1 - 1
.env.zzprod

@@ -1,5 +1,5 @@
1 1
 # 页面标题
2
-VITE_APP_TITLE = 12356心理援助热线
2
+VITE_APP_TITLE = 智能客服系统
3 3
 
4 4
 # 生产环境配置
5 5
 VITE_APP_ENV = 'zzprod'

binární
src/assets/downLoad/随访计划患者导入模板.xlsx


+ 1 - 1
src/components/main/Sidebar/Logo.vue

@@ -62,7 +62,7 @@ defineProps({
62 62
   }
63 63
 })
64 64
 
65
-const title = ref('12356心理援助热线')
65
+const title = ref('智能客服系统')
66 66
 const settingsStore = useSettingsStore()
67 67
 const sideTheme = computed(() => settingsStore.sideTheme)
68 68
 </script>

+ 13 - 13
src/router/index.js

@@ -157,19 +157,19 @@ export const constantRoutes = [
157 157
   //   // hidden: true
158 158
 
159 159
   // },
160
-  // {
161
-  //   path: '/followUp',
162
-  //   component: Layout,
163
-  //   hidden: true,
164
-  //   children: [
165
-  //     {
166
-  //       path: 'taskDetails',
167
-  //       component: () => import('@/views/main/followUp/followUpTask/cpns/taskDetails.vue'),
168
-  //       name: 'taskDetails',
169
-  //       meta: { title: '任务详情', icon: 'user' }
170
-  //     }
171
-  //   ]
172
-  // },
160
+  {
161
+    path: '/followUp',
162
+    component: Layout,
163
+    hidden: true,
164
+    children: [
165
+      {
166
+        path: 'taskDetails',
167
+        component: () => import('@/views/main/followUp/followUpTask/cpns/taskDetails.vue'),
168
+        name: 'taskDetails',
169
+        meta: { title: '任务详情', icon: 'user' }
170
+      }
171
+    ]
172
+  },
173 173
   // {
174 174
   //   path: '/followUp',
175 175
   //   component: Layout,

+ 5 - 3
src/store/commonSelect/common.js

@@ -4,6 +4,8 @@ const useSelectStore = defineStore('common', {
4 4
     state: () => ({
5 5
         questionnaireData: [],
6 6
         // templateListData:[],
7
+		templateListData:[],
8
+        templateNameListData:[],
7 9
         userData: [],
8 10
         userListData: [],
9 11
         deptListData: [],
@@ -37,9 +39,9 @@ const useSelectStore = defineStore('common', {
37 39
 
38 40
             const questionnairResult = await getPageListData('/survey/survey/getGoingList') //  /common/user
39 41
             this.questionnaireData = getUserSelcet(questionnairResult.data, 'title', 'surveyId')
40
-                // const templateResult = await getPageListData('/sms/template')    //  /common/user
41
-                // this.templateListData = getUserSelcet(templateResult.data, 'templateCode', 'templateId')
42
-                // this.templateNameListData = getUserSelcet(templateResult.data, 'templateName', 'templateId', ['content'])
42
+                const templateResult = await getPageListData('/sms/template')    //  /common/user
43
+                this.templateListData = getUserSelcet(templateResult.data, 'templateCode', 'templateId')
44
+                this.templateNameListData = getUserSelcet(templateResult.data, 'templateName', 'templateId', ['content'])
43 45
             const deptResult = await getPageListData('/common/dept') // /common/dept
44 46
             this.deptListData = arrayToTree(deptResult.data, 0)
45 47
             const userResult = await getPageListData('/common/user') //  /common/user

+ 2 - 2
src/views/login/login.vue

@@ -8,7 +8,7 @@
8 8
         :src="loginImage" alt="背景图" />  
9 9
       <div class="relative z-10 flex flex-col h-full p-12 text-white">
10 10
         <div class="mb-12">
11
-          <h1 class="text-3xl font-bold mb-2">12356心理援助热线</h1>
11
+          <h1 class="text-3xl font-bold mb-2">智能客服系统</h1>
12 12
           <p class="text-lg opacity-80">全方位的客户服务解决方案</p>
13 13
         </div>
14 14
         <div class="mt-auto">
@@ -61,7 +61,7 @@
61 61
 
62 62
         <!-- 底部信息 -->
63 63
         <div class="mt-12 text-center text-gray-500 text-sm">
64
-          <p>12356心理援助热线 v2.0.1</p>
64
+          <p>智能客服系统 v2.0.1</p>
65 65
           <p class="mt-2">© 2024 All Rights Reserved</p>
66 66
         </div>
67 67
       </div>