feat(home): 添加首页仪表板功能

- 实现用户欢迎区域显示个性化问候语和角色标签
- 添加关键数据统计卡片展示患者、收入、预约等指标
- 集成快捷功能入口支持自定义常用操作
- 实现待办事项列表显示工作流任务和待写病历
- 集成今日日程展示医生排班和会议安排
- 添加统计数据API集成和实时更新功能
- 实现基于用户角色的差异化功能展示
- 集成本地存储配置同步和跨窗口监听机制
This commit is contained in:
2026-06-05 12:03:13 +08:00
parent a77d4e8b03
commit 04840fde0e
4 changed files with 2264 additions and 1 deletions

View File

@@ -267,6 +267,6 @@ public class LoginUser implements UserDetails {
@Override
public Collection<? extends GrantedAuthority> getAuthorities() {
return null;
return java.util.Collections.emptyList();
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,720 @@
<template>
<div class="login">
<!-- 顶部 -->
<el-form
ref="loginRef"
:model="loginForm"
:rules="loginRules"
class="login-form"
>
<div class="el-login-top">
<el-image :src="logoNew" />
</div>
<h1 class="title">
{{ currentTenantName || settings.systemName }}信息管理系统
</h1>
<p class="login-subtitle">
请使用您的账号密码安全登录系统
</p>
<el-form-item prop="username">
<p class="label">
用户名
</p>
<el-input
v-model="loginForm.username"
type="text"
size="large"
auto-complete="off"
placeholder="账号"
@input="handleUsernameChange"
>
<template #prefix>
<svg-icon
icon-class="user"
class="el-input__icon input-icon"
/>
</template>
</el-input>
</el-form-item>
<el-form-item prop="password">
<p class="label">
密码
</p>
<el-input
v-model="loginForm.password"
:type="passwordVisible ? 'text' : 'password'"
size="large"
auto-complete="off"
placeholder="密码"
@keyup.enter="handleLogin"
>
<template #prefix>
<svg-icon
icon-class="password"
class="el-input__icon input-icon"
/>
</template>
<template #suffix>
<span
class="password-toggle"
style="cursor: pointer; color: #606266; font-size: 14px; padding: 0 10px;"
@click="togglePasswordVisibility"
>
{{ passwordVisible ? '隐藏' : '显示' }}
</span>
</template>
</el-input>
</el-form-item>
<el-form-item prop="tenantId">
<p class="label">
医疗机构
</p>
<el-select
v-model="loginForm.tenantId"
size="large"
placeholder="请选择医疗机构"
clearable
filterable
>
<el-option
v-for="item in tenantOptions"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item prop="tenantId">
<span
class="descriptions-item-label"
style="margin: 0 10px 0 0"
>连接医保</span>
<el-switch
v-model="loginForm.invokeYb"
size="large"
@change="topNavChange"
/>
</el-form-item>
<!--<el-form-item prop="code" v-if="captchaEnabled">
<el-input
v-model="loginForm.code"
size="large"
auto-complete="off"
placeholder="验证码"
style="width: 63%"
@keyup.enter="handleLogin"
>
<template #prefix><svg-icon icon-class="validCode" class="el-input__icon input-icon" /></template>
</el-input>
<div class="login-code">
<img :src="codeUrl" @click="getCode" class="login-code-img"/>
</div>
</el-form-item>
<el-checkbox v-model="loginForm.rememberMe" style="margin:0px 0px 25px 0px;">记住密码</el-checkbox>-->
<el-form-item style="width: 100%">
<el-button
:loading="loading"
size="large"
type="primary"
style="width: 100%"
@click.prevent="handleLogin"
>
<span v-if="!loading"> </span>
<span v-else-if="!signIng"> 中...</span>
<span v-else>连接医保中...</span>
</el-button>
<div
v-if="register"
style="float: right"
>
<router-link
class="link-type"
:to="'/register'"
>
立即注册
</router-link>
</div>
</el-form-item>
<div class="footer">
© 2025 {{ currentTenantName || settings.systemName }}信息管理系统
| 前端版本 {{ formattedFrontendVersion }}
<span v-if="backendVersion">
| 后端版本 {{ formattedBackendVersion }}
</span>
<!-- 公司版权信息新增 -->
<div class="company-copyright">
技术支持上海经创贺联信息技术有限公司
</div>
</div>
</el-form>
<!-- 底部 -->
<div class="el-login-footer">
<span>
<el-link
:underline="false"
href="https://open.tntlinking.com/communityTreaty"
target="_blank"
>
Copyright © 2025 湖北天天数链技术有限公司 本系统软件源代码许可来源于
天天开源软件社区版许可协议 https://open.tntlinking.com/communityTreaty
</el-link>
</span>
</div>
</div>
</template>
<script setup>
import {computed, getCurrentInstance, onMounted, ref, watch, nextTick} from 'vue';
import settings from '@/settings';
import {getCodeImg, getUserBindTenantList, sign} from '@/api/login';
import {invokeYbPlugin5001} from '@/api/public';
import Cookies from 'js-cookie';
import {decrypt, encrypt} from '@/utils/jsencrypt';
import useUserStore from '@/store/modules/user';
import {ElMessage} from 'element-plus';
import {getSystemVersion} from '@/api/system/info';
import logoNew from '@/assets/logo/LOGO.jpg';
const userStore = useUserStore();
const route = useRoute();
const router = useRouter();
const { proxy } = getCurrentInstance();
const env = import.meta.env.MODE;
const loginVersion = import.meta.env.VITE_APP_BUILD_VERSION;
const backendVersion = ref('');
const formattedFrontendVersion = computed(() => {
if (!loginVersion) return '';
// 期望格式YYYYMMDDHHmmss -> 显示 YYYY-MM-DD
if (loginVersion.length >= 8) {
const y = loginVersion.substring(0, 4);
const m = loginVersion.substring(4, 6);
const d = loginVersion.substring(6, 8);
return `${y}-${m}-${d}`;
}
return loginVersion;
});
const formattedBackendVersion = computed(() => {
if (!backendVersion.value) return '';
if (backendVersion.value.length >= 8) {
const y = backendVersion.value.substring(0, 4);
const m = backendVersion.value.substring(4, 6);
const d = backendVersion.value.substring(6, 8);
return `${y}-${m}-${d}`;
}
return backendVersion.value;
});
const loginForm = ref({
username: '',
password: '',
rememberMe: false,
code: '',
uuid: '',
tenantId: '',
});
const tenantOptions = ref([]);
const currentTenantName = ref('');
const loginRules = {
username: [{ required: true, trigger: 'blur', message: '请输入您的账号' }],
password: [{ required: true, trigger: 'blur', message: '请输入您的密码' }],
code: [{ required: true, trigger: 'change', message: '请输入验证码' }],
};
const codeUrl = ref('');
const loading = ref(false);
const signIng = ref(false);
// 验证码开关
const captchaEnabled = ref(true);
// 注册开关
const register = ref(false);
const redirect = ref(undefined);
const passwordVisible = ref(false);
function togglePasswordVisibility() {
passwordVisible.value = !passwordVisible.value;
}
// 处理忘记密码功能
function handleForgotPassword() {
// 这里可以添加忘记密码的逻辑,例如跳转到忘记密码页面或显示忘记密码弹窗
// 目前先显示一个提示
ElMessage({
message: '忘记密码功能正在开发中',
type: 'info'
});
}
watch(
route,
(newRoute) => {
redirect.value = newRoute.query && newRoute.query.redirect;
},
{ immediate: true }
);
// 页面加载时从 localStorage 获取 invokeYb 的值和从 Cookies 获取记住的登录信息
onMounted(() => {
const storedInvokeYb = localStorage.getItem('invokeYb');
if (storedInvokeYb !== null) {
loginForm.value.invokeYb = storedInvokeYb === 'true';
} else {
// 如果 localStorage 中没有值,则设置默认值为关闭并保存
localStorage.setItem('invokeYb', 'false');
loginForm.value.invokeYb = false;
}
// 从 Cookies 中恢复记住的登录信息
const rememberMe = Cookies.get('rememberMe');
if (rememberMe && rememberMe === 'true') {
const username = Cookies.get('username');
const password = Cookies.get('password');
if (username) {
loginForm.value.username = username;
loginForm.value.rememberMe = true;
// 解密密码
if (password) {
try {
loginForm.value.password = decrypt(password);
} catch (e) {
console.error('密码解密失败:', e);
}
}
}
}
// 获取医疗机构列表
if (loginForm.value.username) {
getUserBindTenantList(loginForm.value.username).then((res) => {
tenantOptions.value = res.data.map(item => ({
label: item.tenantName,
value: item.id
}));
// 如果只有一个医疗机构,自动选中
if (tenantOptions.value.length === 1) {
loginForm.value.tenantId = tenantOptions.value[0].value;
currentTenantName.value = tenantOptions.value[0].label;
}
});
}
// 获取后端版本号
getSystemVersion().then((res) => {
if (res && res.backendVersion) {
backendVersion.value = res.backendVersion;
}
}).catch(() => {
backendVersion.value = '';
});
});
function handleLogin() {
proxy.$refs.loginRef.validate((valid) => {
if (valid) {
loading.value = true;
// 勾选了需要记住密码设置在 cookie 中设置记住用户名和密码
if (loginForm.value.rememberMe) {
Cookies.set('username', loginForm.value.username, { expires: 30 });
Cookies.set('password', encrypt(loginForm.value.password), {
expires: 30,
});
Cookies.set('rememberMe', loginForm.value.rememberMe, { expires: 30 });
} else {
// 否则移除
Cookies.remove('username');
Cookies.remove('password');
Cookies.remove('rememberMe');
}
// 调用action的登录方法
userStore
.login(loginForm.value)
.then(async () => {
const query = route.query;
const otherQueryParams = Object.keys(query).reduce((acc, cur) => {
if (cur !== 'redirect') {
acc[cur] = query[cur];
}
return acc;
}, {});
if (env === 'development' || !loginForm.value.invokeYb) {
router.push({ path: redirect.value || '/', query: otherQueryParams });
} else {
signIng.value = true;
userStore.getInfo();
GetMacString();
}
})
.catch(() => {
loading.value = false;
// 重新获取验证码
if (captchaEnabled.value) {
//getCode();
}
});
}
});
}
// 获取MAC 加密地址
async function GetMacString() {
// if (window.CefSharp === undefined) {
// } else {
try {
// 必须参数
const data = {
FunctionId: 5,
IP: 'ddjk.jlhs.gov.cn',
PORT: 20215,
TIMEOUT: 2000,
LOG_PATH: 'C:/neu_log/',
SFZ_DRIVER_TYPE: 0,
};
// 获取 mac 地址
// let result = await window.chrome.webview.hostObjects.CSharpAccessor.GetMacString(
// JSON.stringify(data)
// );
// 获取IP地址
// let ip = await window.chrome.webview.hostObjects.CSharpAccessor.GetIpString();
// 获取 mac 地址 兼容win7 start--------------------------------------
let result = undefined;
// await CefSharp.BindObjectAsync('boundAsync');
// console.log(boundAsync);
// await boundAsync.getMacString(JSON.stringify(data)).then((res) => {
// result = res
// });
await invokeYbPlugin5001(data).then((res) => {
result = res.data;
if (result === undefined || result === '' || result === ' ') {
throw new Error('获取 mac 地址失败');
}
});
// 获取ip地址
let ip = undefined;
// await boundAsync.getIpString().then((res) => {
// ip = res;
// });
await invokeYbPlugin5001({ FunctionId: 6 }).then((res) => {
ip = res.data;
if (ip === undefined || ip === '' || ip === ' ') {
throw new Error('获取 ip 地址失败');
}
});
// 医保签到
signIn(result, ip);
// end--------------------------------------
// 解析返回的结果
// let cardInfo = JSON.parse(jsonResult);
} catch (error) {
console.error('调用失败:', error);
}
// }
}
function getCode() {
getCodeImg().then((res) => {
captchaEnabled.value = res.captchaEnabled === undefined ? true : res.captchaEnabled;
if (captchaEnabled.value) {
codeUrl.value = 'data:image/gif;base64,' + res.img;
loginForm.value.uuid = res.uuid;
}
});
}
// 监听租户选择变化
watch(() => loginForm.value.tenantId, (newTenantId) => {
const selectedTenant = tenantOptions.value.find(item => item.value === newTenantId);
if (selectedTenant) {
currentTenantName.value = selectedTenant.label;
}
});
// 切换医保连接开关时更新 localStorage
function topNavChange(value) {
localStorage.setItem('invokeYb', value.toString());
}
//账号变化时
function handleUsernameChange(newVal) {
getTenantList(newVal);
}
//查询租户列表
function getTenantList(username) {
if (!username) {
return;
}
getUserBindTenantList(username).then((res) => {
loginForm.value.tenantId = '';
if (res.code == 200) {
if (res.data.length > 0) {
tenantOptions.value = res.data.map((item) => ({
value: item.id,
label: item.tenantName,
}));
loginForm.value.tenantId = tenantOptions.value[0].value; //默认选中第一个
currentTenantName.value = tenantOptions.value[0].label;
}
}
});
}
/**
* description: 签到方法
* @param practitionerId 参与者 id
* @param mac 用户 mac 地址
* @param ip 签到的 IP 地址
*/
async function signIn(mac, ip) {
// 用户 id
const practitionerId = userStore.practitionerId;
console.log('userStore', userStore);
// 签到的 IP 地址
try {
const response = await sign(practitionerId, mac, ip);
if (response.code !== 200) {
throw new Error('签到失败,错误信息:' + response.msg);
}
signIng.value = false;
loading.value = false;
const query = route.query;
const otherQueryParams = Object.keys(query).reduce((acc, cur) => {
if (cur !== 'redirect') {
acc[cur] = query[cur];
}
return acc;
}, {});
userStore.removeRoles();
router.push({ path: redirect.value || '/', query: otherQueryParams });
console.log('签到成功:', response);
} catch (error) {
userStore.logOut();
signIng.value = false;
loading.value = false;
proxy.$message.error('医保签到失败');
console.error('签到失败:', error);
}
}
function getCookie() {
const username = Cookies.get('username');
const password = Cookies.get('password');
const rememberMe = Cookies.get('rememberMe');
loginForm.value = {
username: username === undefined ? loginForm.value.username : username,
password: password === undefined ? loginForm.value.password : decrypt(password),
rememberMe: rememberMe === undefined ? false : Boolean(rememberMe),
};
}
function handleUserName(value) {
let user = {
admin: {
username: 'admin',
password: 'admin123',
},
doctor: {
username: 'gjlin',
password: 'wi123456',
},
drug: {
username: 'mqyk',
password: 'mqyk123',
},
nurse: {
username: 'nmhs',
password: 'nmhs123',
},
charge: {
username: 'admin',
password: 'admin123',
},
};
loginForm.value.username = user[value].username;
loginForm.value.password = user[value].password;
handleLogin();
}
//getCode();
getCookie();
// 只有当 username 存在时才获取租户列表
if (loginForm.value.username) {
getTenantList(loginForm.value.username);
}
</script>
<style>
html, body {
height: auto;
min-height: 100vh;
overflow-y: auto;
margin: 0;
padding: 0;
}
</style>
<style lang="scss" scoped>
.login {
display: flex;
justify-content: center;
background: #f8f9fa;
min-height: 100vh;
padding-bottom: 100px; /* 为底部固定footer留出空间 */
//background-image: url("../assets/images/login-background.jpg");
background-size: cover;
}
.title {
margin: 10px auto 15px auto;
text-align: center;
color: #000;
font-family: 'Microsoft Yahei,STHeiti,Simsun,STSong,Helvetica Neue,Helvetica,Arial,sans-serif';
}
.label{
display: block;
margin-bottom: 6px;
font-size: 14px;
font-weight: 500;
color: var(--text);
}
.login-options {
display: flex;
justify-content: space-between;
align-items: center;
margin: 8px 0 10px 0;
width: 100%; /* 确保容器占满宽度 */
}
.remember-me {
margin: 0;
color: var(--text);
}
.forgot-password {
font-size: 14px;
color: var(--primary);
cursor: pointer;
text-align: right; /* 确保文本右对齐 */
margin-left: auto; /* 确保元素右对齐 */
}
.footer {
margin-top: 32px;
font-size: 12px;
color: var(--text-secondary);
}
.login-subtitle {
font-size: 14px;
color: var(--text-secondary);
margin-bottom: 20px;
}
.login-form {
border-radius: 16px;
box-shadow: 0 4px 12px var(--shadow);
border: 1px solid var(--border);
background: #ffffff;
width: 100%;
max-width: 400px;
padding: 40px;
padding: 25px 25px 5px 25px;
text-align: center;
.el-input {
height: 50px; // 修改输入框高度
input {
height: 50px; // 修改输入框高度
font-size: 18px; // 修改输入框内文字大小
}
}
.input-icon {
height: 49px; // 调整图标高度以适应输入框高度
width: 14px;
margin-left: 0px;
}
}
.login-tip {
font-size: 13px;
text-align: center;
color: #bfbfbf;
}
.login-code {
width: 33%;
height: 50px; // 调整验证码区域高度以适应输入框高度
float: right;
img {
cursor: pointer;
vertical-align: middle;
}
}
.el-login-top {
text-align: center;
margin: 0 auto 10px;
.el-image {
max-width: 120px;
max-height: 120px;
}
}
.el-login-footer {
height: 40px;
line-height: 30px;
position: fixed;
bottom: 0;
left: 0;
right: 0;
width: 100%;
text-align: center;
color: #000;
font-family: Arial;
font-size: 12px;
letter-spacing: 1px;
background-color: #f1f1f1;
z-index: 100; /* 确保footer在最上层 */
span {
margin: 0 10px;
}
}
.login-code-img {
height: 50px; // 调整验证码图片高度以适应输入框高度
padding-left: 12px;
}
:deep(.el-input__wrapper) {
background-color: #f5f7fa !important;
border-color: #e4e7ed !important;
border-radius: 10px !important;
font-size: 18px !important;
height: 50px !important; // 修改输入框高度
}
:deep(.el-button--large) {
font-size: 20px !important; // 增加按钮内文字大小
height: 50px !important; // 增加按钮高度
padding: 10px 20px !important; // 调整按钮内边距
border-radius: 10px !important;
}
:deep(.el-input__suffix-inner .el-input__icon) {
width: 24px !important; // 调整图标的宽度
height: 24px !important; // 调整图标的高度
font-size: 24px !important; // 调整图标的字体大小
color: #606266 !important; // 确保图标颜色可见
cursor: pointer !important; // 确保鼠标悬停时显示指针
}
:deep(.password-toggle) {
line-height: 50px !important; // 确保文字垂直居中
user-select: none; // 禁止选中文字
}
:deep(.el-select__wrapper) {
background-color: #f5f7fa !important;
border-color: #e4e7ed !important;
border-radius: 10px !important;
font-size: 18px !important;
height: 50px !important; // 修改输入框高度
}
:deep(.el-form-item) {
margin-bottom: 15px !important; // 减小输入框之间的距离
}
</style>