修改系统名称

This commit is contained in:
jiangzhe 2024-07-25 09:53:10 +08:00
parent 320d1daec6
commit 196946d5e9
12 changed files with 30 additions and 24 deletions

View File

@ -1,5 +1,5 @@
# 页面标题
VITE_APP_TITLE = 云舒_心理健康平台
VITE_APP_TITLE = 云舒心理成长平台
# 开发环境配置
VITE_APP_ENV = 'development'

View File

@ -1,5 +1,5 @@
# 页面标题
VITE_APP_TITLE = 云舒_心理健康平台
VITE_APP_TITLE = 云舒心理成长平台
# 生产环境配置
VITE_APP_ENV = 'production'

1
.gitignore vendored
View File

@ -27,3 +27,4 @@ yarn.lock
auto-imports.d.ts
components.d.ts
manage/
/manage.zip

View File

@ -6,7 +6,7 @@
<meta name="renderer" content="webkit" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<link rel="icon" href="/favicon.ico" />
<title>云舒_心理健康平台</title>
<title>云舒心理成长平台</title>
<!--[if lt IE 11
]><script>
window.location.href='/html/ie.html';

View File

@ -1,7 +1,7 @@
{
"name": "云舒_心理健康平台",
"name": "mental-health-web",
"version": "5.1.2",
"description": "云舒_心理健康平台",
"description": "云舒心理成长平台",
"author": "LionLi",
"license": "MIT",
"scripts": {

View File

@ -175,7 +175,7 @@ export const dynamicRoutes: RouteOption[] = [
permissions: ['publish:evaluation:pageList'],
children: [
{
path: 'index/:batchNo/:sessionName',
path: 'index/:type/:batchNo/:sessionName',
component: () => import('@/views/activity/index.vue'),
name: 'ActivityStatistics',
meta: { title: '活动', activeMenu: '/activity/index', icon: '' }

View File

@ -26,15 +26,24 @@ import schedule from '@/views/activity/component/schedule/index.vue'
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const route = useRoute()
const type = route.params.type
const batchNo = route.params.batchNo
const sessionName = route.params.sessionName
const activeName = ref('schedule')
const handleBack = () => {
console.log("handleBack");
if (type == '1') {
const obj = { path: "/scale/SysScalePublish" };
proxy?.$tab.closeOpenPage(obj);
}
if(type == '2') {
const obj = { path: "/evaluate/evaluateList" };
proxy?.$tab.closeOpenPage(obj);
}
}
</script>

View File

@ -1,7 +1,7 @@
<template>
<div class="big-screen">
<header class="item item1">
<h1>云舒心理健康云平台</h1>
<h1>云舒心理成长平台</h1>
<div class="showTime">{{ showTime }}</div>
</header>

View File

@ -56,7 +56,7 @@
<el-tooltip content="查看测评结果" placement="top">
<el-button link type="primary" icon="View" @click="handleUpdate(scope.row)"
v-hasPermi="['publish:evaluation:pageList']">
<router-link :to="'/activity/index/' + scope.row.batchNo + '/' + scope.row.sessionName"
<router-link :to="`/activity/index/2/${scope.row.batchNo}/${scope.row.sessionName}`"
class="link-type">
<span>查看测评结果</span>
</router-link>

View File

@ -3,7 +3,7 @@
<el-form ref="loginRef" :model="loginForm" :rules="loginRules" class="login-form">
<div class="header">
<img class="logo" src="@/assets/logo/logo.png" />
<h1 class="title">云舒心理健康平台</h1>
<h1 class="title">云舒心理成长平台</h1>
</div>
<el-form-item prop="username">

View File

@ -1,31 +1,27 @@
<template>
<div class="register">
<el-form ref="registerRef" :model="registerForm" :rules="registerRules" class="register-form">
<h3 class="title">云舒_心理健康平台</h3>
<h3 class="title">云舒心理成长平台</h3>
<el-form-item prop="username">
<el-input v-model="registerForm.username" type="text" size="large" auto-complete="off" placeholder="账号">
<template #prefix><svg-icon icon-class="user" class="el-input__icon input-icon" /></template>
</el-input>
</el-form-item>
<el-form-item prop="password">
<el-input v-model="registerForm.password" type="password" size="large" auto-complete="off" placeholder="密码" @keyup.enter="handleRegister">
<el-input v-model="registerForm.password" type="password" size="large" auto-complete="off" placeholder="密码"
@keyup.enter="handleRegister">
<template #prefix><svg-icon icon-class="password" class="el-input__icon input-icon" /></template>
</el-input>
</el-form-item>
<el-form-item prop="confirmPassword">
<el-input
v-model="registerForm.confirmPassword"
type="password"
size="large"
auto-complete="off"
placeholder="确认密码"
@keyup.enter="handleRegister"
>
<el-input v-model="registerForm.confirmPassword" type="password" size="large" auto-complete="off"
placeholder="确认密码" @keyup.enter="handleRegister">
<template #prefix><svg-icon icon-class="password" class="el-input__icon input-icon" /></template>
</el-input>
</el-form-item>
<el-form-item prop="code" v-if="captchaEnabled">
<el-input size="large" v-model="registerForm.code" auto-complete="off" placeholder="验证码" style="width: 63%" @keyup.enter="handleRegister">
<el-input size="large" v-model="registerForm.code" auto-complete="off" placeholder="验证码" style="width: 63%"
@keyup.enter="handleRegister">
<template #prefix><svg-icon icon-class="validCode" class="el-input__icon input-icon" /></template>
</el-input>
<div class="register-code">

View File

@ -78,7 +78,7 @@
<el-tooltip content="查看测评结果" placement="top">
<el-button link type="primary" icon="View" @click="handleUpdate(scope.row)"
v-hasPermi="['scale:publish:query']">
<router-link :to="'/activity/index/' + scope.row.batchNo + '/' + scope.row.sessionName"
<router-link :to="`/activity/index/1/${scope.row.batchNo}/${scope.row.sessionName}`"
class="link-type">
<span>查看测评结果</span>
</router-link>