eight
2025-04-15 49206ee0689d44367b9f5de3decf0c3ec02bfb51
src/views/ecg/room/index.vue
@@ -71,7 +71,7 @@
      <el-table-column label="检查类型" align="center" prop="checkTypes" width="180px">
        <template #default="scope">
          <div v-for="(checkType, subIndex) in scope.row.checkTypes" :key="subIndex">
            {{checkTypeStore.getCheckTypeName(checkType)}}
            {{getCheckTypeName(checkType)}}
          </div>
        </template>
      </el-table-column>
@@ -121,6 +121,7 @@
import { RoomApi, RoomVO } from '@/api/ecg/room'
import RoomForm from './RoomForm.vue'
import {useCheckTypeStore} from "@/store/modules/checkType";
import {getCheckTypeName} from "../../../utils/checkTypeFormatter";
/** 诊室和诊疗床 列表 */
defineOptions({ name: 'Room' })