pengjun 3 weeks ago
parent
commit
c5019f080f
  1. 2
      src/components/commonTable/CommonTableEdit.vue
  2. 36
      src/views/Home.vue

2
src/components/commonTable/CommonTableEdit.vue

@ -20,7 +20,7 @@
</el-row>
<el-row>
<el-col :span="24">
<el-form-item prop="simpleCode" label="体检系统编码">
<el-form-item prop="simpleCode" label="体检系统名称">
<el-input v-model="form.simpleCode" size="small" />
</el-form-item>
</el-col>

36
src/views/Home.vue

@ -125,7 +125,21 @@
</div>
</div>
</el-header>
<el-container v-if="localConfig.normal.displayTab">
<common-tab></common-tab>
<el-main style="margin-top: 84px;">
<keep-alive>
<router-view :key="$route.fullPath"></router-view>
</keep-alive>
</el-main>
</el-container>
<el-container v-else>
<el-main style="margin-top: 50px;">
<router-view></router-view>
</el-main>
</el-container>
</el-container>
</div>
<!-- 修改密码弹框 -->
<el-dialog title="修改密码" :visible.sync="dialogVisible" width="30%" :close-on-click-modal="false">
<el-form :model="form" :rules="rules" ref="ruleForm" label-width="100px">
@ -146,26 +160,10 @@
</el-dialog>
<!--通用本地参数设置-->
<el-dialog title="本地参数设置" :visible.sync="dialogWin.LocalConfig" :close-on-click-modal="false"
:append-to-body="true" fullscreen>
<el-dialog title="本地参数设置" :visible.sync="dialogWin.LocalConfig" :close-on-click-modal="false" :append-to-body="true"
fullscreen>
<LocalConfig />
</el-dialog>
<el-container v-if="localConfig.normal.displayTab">
<common-tab></common-tab>
<el-main style="margin-top: 84px;">
<keep-alive>
<router-view :key="$route.fullPath"></router-view>
</keep-alive>
</el-main>
</el-container>
<el-container v-else>
<el-main style="margin-top: 50px;">
<router-view></router-view>
</el-main>
</el-container>
</el-container>
</div>
</div>
</template>
<script>

Loading…
Cancel
Save