|
|
@ -4,6 +4,9 @@ |
|
|
|
<div class="left-logo"> |
|
|
|
<svg-icon icon-class="icon-hm-login1" style="font-size:130px;" /> |
|
|
|
</div> |
|
|
|
<div class="hospital_logo"> |
|
|
|
<img width="500" src="@/assets/img/xianganlogo.png"> |
|
|
|
</div> |
|
|
|
<!-- 中间背景 --> |
|
|
|
<div class="login-bgm" /> |
|
|
|
<!-- <img src="../../../assets/img/login_bgm.png" alt="" class="login-bgm"> --> |
|
|
@ -43,8 +46,7 @@ |
|
|
|
</el-form> |
|
|
|
<p class="tips">没有账号? 请联系管理员</p> |
|
|
|
</el-tab-pane> |
|
|
|
<el-tab-pane label="CA登录" name="second"> |
|
|
|
</el-tab-pane> |
|
|
|
<el-tab-pane label="CA登录" name="second" /> |
|
|
|
</el-tabs> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -56,8 +58,9 @@ |
|
|
|
:visible.sync="visible" |
|
|
|
width="40%" |
|
|
|
title="CA登录" |
|
|
|
@close="visible === false"> |
|
|
|
<iframe name="ifrmName" frameborder="0" width="100%" height="100%" :src=caUrl></iframe> |
|
|
|
@close="visible === false" |
|
|
|
> |
|
|
|
<iframe name="ifrmName" frameborder="0" width="100%" height="100%" :src="caUrl" /> |
|
|
|
</el-dialog> |
|
|
|
</div> |
|
|
|
</template> |
|
|
@ -103,7 +106,7 @@ export default { |
|
|
|
handleClick() { |
|
|
|
if (this.activeName === 'second') { |
|
|
|
this.visible = true |
|
|
|
this.$nextTick(()=>{ |
|
|
|
this.$nextTick(() => { |
|
|
|
document.getElementsByTagName('iframe')[0].src = this.caUrl |
|
|
|
}) |
|
|
|
} |
|
|
@ -149,6 +152,10 @@ export default { |
|
|
|
display: flex; |
|
|
|
justify-content: center; |
|
|
|
position: relative; |
|
|
|
.hospital_logo{ |
|
|
|
position: fixed; |
|
|
|
top: 100px; |
|
|
|
} |
|
|
|
.left-logo { |
|
|
|
position: fixed; |
|
|
|
left: 30px; |
|
|
|