Commit 12341c13 by 唐玉峰

..

parent 61ee128c
......@@ -13,6 +13,7 @@ import outseeQualityControl from "@/views/outseeQualityControl.vue";
import outpatientDetails from "@/views/outpatientDetails.vue";
import outHistorygrouping from "@/views/outHistorygrouping.vue";
import outHistorygrouping_yubei from "@/views/outHistorygrouping_yubei.vue";
import outHistorygrouping_pingguo from "@/views/outHistorygrouping_pingguo.vue";
Vue.use(Router);
// const baseUrl = '/his/'
......@@ -48,6 +49,12 @@ const router = new Router({
name: "outHistorygrouping_yubei",
component: outHistorygrouping_yubei,
},
// 智能分组 pingguo
{
path: "/outHistorygrouping_pingguo",
name: "outHistorygrouping_pingguo",
component: outHistorygrouping_pingguo,
},
//临床路径外放页面
{
path: "/medicalRecordImport",
......
......@@ -177,8 +177,8 @@
</div>
<div class="diagList_fenqu_di_bb_div2" style="height: 100%">
<span class="diagList_fenqu_di_bb_div2_span1" :style="{ width: item.lowwidth + '%' }"
><span class="diagList_fenqu_di_bb_div2_span1_t1" :title="'低倍率区域:&lt;=' + Math.round(item.lowMagnification)"
>低倍率区域&lt;={{ Math.round(item.lowMagnification) }}</span
><span class="diagList_fenqu_di_bb_div2_span1_t1" :title="lowtitle + ':&lt;=' + Math.round(item.lowMagnification)"
>{{ lowtitle }}&lt;={{ Math.round(item.lowMagnification) }}</span
></span
>
<span class="diagList_fenqu_di_bb_div2_span2" :style="{ width: item.contentwidth + '%' }"
......@@ -190,8 +190,8 @@
>
<span class="diagList_fenqu_di_bb_div2_span3" :style="{ width: item.heightwidth + '%' }"
><span class="diagList_fenqu_di_bb_div2_span3_t3" :title="'高倍率区域:>=' + Math.round(item.highMagnification)"
>高倍率区域:>={{ Math.round(item.highMagnification) }}</span
><span class="diagList_fenqu_di_bb_div2_span3_t3" :title="higtitle + ':>=' + Math.round(item.highMagnification)"
>{{ higtitle }}:>={{ Math.round(item.highMagnification) }}</span
></span
>
</div>
......@@ -249,7 +249,24 @@ import { Loading } from "element-ui";
export default {
name: "diagList",
components: {},
props: ["code", "isshow"],
props: {
code: {
type: Object,
default: {},
},
isshow: {
type: Boolean,
default: false,
},
lowtitle: {
type: String,
default: "低倍率区域",
},
higtitle: {
type: String,
default: "高倍率区域",
},
},
data() {
return {
zdoptions: [], //诊断
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment