|
|
|
@ -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> |
|
|
|
|