|
|
@@ -1,10 +1,11 @@
|
|
|
<template>
|
|
|
- <div class="tips-main">
|
|
|
- <div class="sidebar">
|
|
|
+
|
|
|
+ <div class="layout_container layout-horizontal">
|
|
|
+ <aside>
|
|
|
<xc-table :local-data="tipsData"
|
|
|
layout="total,prev, pager, next"
|
|
|
@rowClick="rowClick"
|
|
|
- :height="150">
|
|
|
+ final-height="100%">
|
|
|
<el-table-column label="关键词" prop="queryKey" width="100"/>
|
|
|
<el-table-column label="内容" prop="content" show-overflow-tooltip/>
|
|
|
<el-table-column label="类型" prop="typeName" width="40"/>
|
|
|
@@ -29,10 +30,9 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</xc-table>
|
|
|
- </div>
|
|
|
- <div class="main">
|
|
|
- <div style="height: 40px"/>
|
|
|
+ </aside>
|
|
|
|
|
|
+ <div class="layout_main" style="padding-top: 30px">
|
|
|
<el-form label-width="80px"
|
|
|
ref="formRef"
|
|
|
:rules="rules"
|
|
|
@@ -77,8 +77,6 @@
|
|
|
</el-form>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
-
|
|
|
</template>
|
|
|
|
|
|
<script setup name='MedicalHistoryPrompts'>
|