12345678910111213141516171819202122232425262728 |
- <template>
- <div class="main-contain">
- <div class="position">
- <bread-crumb :crumbs="crumbs"></bread-crumb>
- </div>
- <div class="app-container"></div>
- </div>
- </template>
-
- <script>
- import BreadCrumb from "@/xt_pages/components/bread-crumb";
- import LineChart from "../qcd/components/LineChart";
- export default {
- components: {
- LineChart,
- BreadCrumb
- },
- data() {
- return {
- crumbs: [
- { path: false, name: "质控管理" },
- { path: false, name: "患者质控达标统计" }
- ]
- };
- }
- };
- </script>
|