diff --git a/src/layouts/BasicLayout.vue b/src/layouts/BasicLayout.vue index b50e90d..b4505e8 100644 --- a/src/layouts/BasicLayout.vue +++ b/src/layouts/BasicLayout.vue @@ -62,8 +62,8 @@ @@ -103,6 +103,10 @@ {{ userInfoStore.userInfo.nickname }} + + 修改密码 + + 注销登录 @@ -110,17 +114,17 @@ - - - + @@ -129,6 +133,21 @@ + + + + + + + + + + + + + + + @@ -235,7 +254,34 @@ export default { flag.value = !flag.value } + const model = ref({ + old_password: '', + new_password: '', + confirm_password: '' + }) + const showPassword = ref(false) + function changePassword() { + showPassword.value = true; + } + const addButton = ref([ + { + text: "确认", + callback: async () => { + console.log(123) + } + }, + { + text: "取消", + callback: () => { + showPassword.value = false; + } + } + ]) return { + model, + addButton, + showPassword, + changePassword, sideWidth, mainSelectedKey, fullscreenRef, diff --git a/src/views/complaint/index.vue b/src/views/complaint/index.vue index aa4a5f9..fb2696d 100644 --- a/src/views/complaint/index.vue +++ b/src/views/complaint/index.vue @@ -150,9 +150,9 @@ const addData = reactive({ id: 0, politics_images: '', }) +// 回访表导出 const upPdf = (row: any) => { - console.log(row) - + window.open(baseURL + '/api/backend/pdf/exportPdf?id=' + row.id, '_blank') } // 添加详情弹窗相关变量和方法 const detailShow = ref(false) diff --git a/src/views/configuration/foundation.vue b/src/views/configuration/foundation.vue index 8e72ed2..d1d5be0 100644 --- a/src/views/configuration/foundation.vue +++ b/src/views/configuration/foundation.vue @@ -114,13 +114,14 @@ const delShowMsd = async (data) => { const columns6 = [ { title: "项目名称", - width: "100px", + width: "200px", key: "project_name" }, { title: "基础分值", - width: "200px", - key: "base_score" + width: "50px", + key: "base_score", + align: 'center' }, // { // title: "项目代码", @@ -135,7 +136,7 @@ const columns6 = [ // }, { title: '操作', - width: '180px', + width: '100px', customSlot: 'operator', key: 'operator', align: 'center', diff --git a/src/views/login/index.vue b/src/views/login/index.vue index c7529b3..f95142e 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -9,7 +9,7 @@ - X X 医 院 + 信 阳 市 传 染 病 医 院 医 德 医 风 管 理 系 统 @@ -17,8 +17,8 @@ - - 登陆 + + 管理后台登陆 diff --git a/src/views/year_evaluation/branch.vue b/src/views/year_evaluation/branch.vue index ae3ccb5..357a6c2 100644 --- a/src/views/year_evaluation/branch.vue +++ b/src/views/year_evaluation/branch.vue @@ -34,12 +34,13 @@ - + 查询 重置 + 考评优秀等次人员复审表下载 @@ -199,6 +200,7 @@ import dayjs from "dayjs"; import { useUserStore } from '@/store/user'; import { useRoute } from 'vue-router' + import { baseURL } from '@/api/http'; const route = useRoute() const userStore = useUserStore() const userId = ref(); @@ -815,7 +817,9 @@ ]; } const dataSource6 = ref([]) - + const openDownload = () => { + window.open(baseURL + '/uploads/信阳市传染病医院医德医风考评优秀等次人员复审表.xls', '_blank') + }