Newer
Older
smartwell_front / src / views / zhangqiu / components / lineDepartment / lineDepartment.vue
liuyangyingjie on 16 Aug 2022 422 bytes feat(view): 新增章丘驾驶舱看板
<template>
  <show-item>
    {{ '管线权属单位' }}
    <template #container>
      <div>
        <Chart></Chart>
      </div>
    </template>
  </show-item>
</template>

<script>

import showItem from '@/views/zhangqiu/components/showItem.vue'
import Chart from '@/views/zhangqiu/components/chart.vue'
export default {
  name: "LineDepartment",
  components: {showItem, Chart },
}
</script>

<style scoped>

</style>