Browse Source

路由修改

master
mch 2 years ago
parent
commit
1a8c0ca946
  1. 42
      src/router/index.js
  2. 49
      src/views/Home.vue

42
src/router/index.js

@ -276,9 +276,51 @@ const routes = [
path: "/sumDoctorCheck",
name: "总检医生诊台",
component: () => import("../views/doctorCheck/sumDoctorCheck.vue"),
},
//---------------------- 体 检 end ----------------------
//---------------------- 体检查询 start ----------------------
{
path: "/report",
name: "体检报告",
component: () => import("../views/report/report.vue"),
},
{
path: "/checkStatus",
name: "组合项目检查状态",
component: () => import("../views/report/checkStatus.vue"),
},
{
path: "/chargeAsbitem",
name: "人员费用组合项目",
component: () => import("../views/report/chargeAsbitem.vue"),
},
{
path: "/unCheckAsbitem",
name: "人员未检组合项目",
component: () => import("../views/report/unCheckAsbitem.vue"),
},
//---------------------- 体检查询 end ----------------------
//---------------------- 体 检 end ----------------------
//---------------------- 疾病人数登记 ----------------------
{
path: "/diseaseStatistics",
name: "疾病人数统计",
component: () => import("../views/fee-settings/diseaseStatistics.vue"),
},
{
path: "/positiveresults",
name: "阳性结果清单",
component: () => import("../views/doctorCheck/positiveresults.vue"),
},
{
path: "/unitphysicalexamination",
name: "单位体检报表",
component: () => import("../views/doctorCheck/unitphysicalexamination.vue"),
},
],
},
];

49
src/views/Home.vue

@ -179,9 +179,58 @@
<el-dropdown @command="handleCommand">
<span class="el-dropdown-link">体检</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item command="doctorCheck">体检医生诊台</el-dropdown-item>
<el-dropdown-item command="sumDoctorCheck">总检医生诊台</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</div>
<!-- 体检查询 -->
<div style="margin-left: 10px">
<el-dropdown @command="handleCommand">
<span class="el-dropdown-link">体检查询</span>
<el-dropdown-menu slot="dropdown" style="width:170px;">
<el-dropdown-item command="report">体检报告</el-dropdown-item>
<el-dropdown-item command="checkStatus">组合项目检查状态</el-dropdown-item>
<el-dropdown-item command="chargeAsbitem">人员费用组合项目</el-dropdown-item>
<el-dropdown-item command="unCheckAsbitem">人员未检组合项目</el-dropdown-item>
<el-dropdown-item command="patientRegisterRecover">回收表格查询</el-dropdown-item>
<el-dropdown-item command="doctorCheck"
>体检医生诊台</el-dropdown-item
>
<el-dropdown-item command="sumDoctorCheck"
>总检医生诊台</el-dropdown-item
>
</el-dropdown-menu>
</el-dropdown>
</div>
<!-- 客户报表 -->
<div class="physicalexamination" style="margin-left: 15px">
<el-dropdown @command="handleCommand">
<span class="el-dropdown-link"> 客户报表 </span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item command="diseaseStatistics"
>疾病人数统计</el-dropdown-item
>
<el-dropdown-item command="positiveresults"
>阳性结果人员</el-dropdown-item
>
<el-dropdown-item command="unitphysicalexamination"
>单位体检报表</el-dropdown-item
>
</el-dropdown-menu>
</el-dropdown>
</div>
<!-- 工作量统计 -->
<div class="physicalexamination" style="margin-left: 15px">
<el-dropdown @command="handleCommand">
<span class="el-dropdown-link"> 工作量统计 </span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item command="diseaseStatistics"
>疾病人数统计</el-dropdown-item
>
</el-dropdown-menu>
</el-dropdown>
</div>

Loading…
Cancel
Save