You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
849 B
39 lines
849 B
|
2 years ago
|
<template>
|
||
|
|
<div class="component-wrapper">
|
||
|
|
<el-table
|
||
|
|
ref="dataList"
|
||
|
|
v-loading="dataListLoading"
|
||
|
|
highlight-current-row
|
||
|
|
height="100%"
|
||
|
|
:data="dataList"
|
||
|
|
border
|
||
|
|
:row-class-name="'row-1'"
|
||
|
|
>
|
||
|
|
<el-table-column prop="EXAM_TIME" :label="'检查时间'" width="155px" />
|
||
|
|
<el-table-column prop="IOP_TYPE" :label="'检查类型'" width="155px" />
|
||
|
|
<el-table-column prop="S_OD_IOP" :label="'OD'" />
|
||
|
|
<el-table-column prop="S_OS_IOP" :label="'OS'" />
|
||
|
|
<el-table-column prop="EXAM_MEMO" :label="'备注'" />
|
||
|
|
</el-table>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import myMixin from './_mixin'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
mixins: [myMixin],
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
type: '眼压'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
// .component-wrapper{
|
||
|
|
// height: auto !important;
|
||
|
|
// }
|
||
|
|
</style>
|