|
|
@ -3,7 +3,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<h3 class="toptitle">诏安县总医院</h3>
|
|
|
|
<h3 class="toptitle">{{hospName}}</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<el-form
|
|
|
|
<el-form
|
|
|
@ -66,7 +66,8 @@
|
|
|
|
<!--<icon-svg icon-class="tongyong"/>-->
|
|
|
|
<!--<icon-svg icon-class="tongyong"/>-->
|
|
|
|
<!--</i>-->
|
|
|
|
<!--</i>-->
|
|
|
|
<!--</el-input>-->
|
|
|
|
<!--</el-input>-->
|
|
|
|
<Verify ref="checkV" :showButton="false" :barSize="{width:'305px',height:'37px'}" :vOffset="5" @success="verifyAlert('success')" @error="verifyAlert('error')" :type="3"></Verify>
|
|
|
|
<Verify ref="checkV" :showButton="false" :barSize="{width:'305px',height:'37px'}" :vOffset="5"
|
|
|
|
|
|
|
|
@success="verifyAlert('success')" @error="verifyAlert('error')" :type="3"></Verify>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
<div style="text-align: center; margin-top: 15px">
|
|
|
|
<div style="text-align: center; margin-top: 15px">
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
@ -88,16 +89,14 @@
|
|
|
|
</el-card>
|
|
|
|
</el-card>
|
|
|
|
</el-form>
|
|
|
|
</el-form>
|
|
|
|
<div style=" position: absolute; bottom: 0; left: 50%; transform: translate(-50%, -50%);">
|
|
|
|
<div style=" position: absolute; bottom: 0; left: 50%; transform: translate(-50%, -50%);">
|
|
|
|
<a href="http://www.beian.gov.cn/portal/registerSystemInfo" style="color: white; font-size: 12px" >
|
|
|
|
<a href="http://beian.miit.gov.cn" style="color: white; font-size: 10px">闽ICP备17019234号-4</a>
|
|
|
|
厦门高立新鹏软件科技有限公司 闽公网安备35020302034269号
|
|
|
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<a href="http://beian.miit.gov.cn" style="color: white; font-size: 10px" >闽ICP备17019234号</a>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import Verify from 'vue2-verify'
|
|
|
|
import Verify from 'vue2-verify'
|
|
|
|
|
|
|
|
import axios from "axios";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
@ -125,6 +124,7 @@
|
|
|
|
loading: false, // 登录loading
|
|
|
|
loading: false, // 登录loading
|
|
|
|
showDialog: false, // 显示dialog
|
|
|
|
showDialog: false, // 显示dialog
|
|
|
|
redirect: null, // 回调地址
|
|
|
|
redirect: null, // 回调地址
|
|
|
|
|
|
|
|
hospName: "",
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
@ -188,6 +188,13 @@
|
|
|
|
// URL Encode
|
|
|
|
// URL Encode
|
|
|
|
this.redirect = decodeURIComponent(query.redirect);
|
|
|
|
this.redirect = decodeURIComponent(query.redirect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
axios.get("./config.json").then(res => {
|
|
|
|
|
|
|
|
this.hospName = res.data.hosp_name;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
@ -270,6 +277,7 @@
|
|
|
|
text-align: center;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.login-form {
|
|
|
|
.login-form {
|
|
|
|
//@include fxied-center;
|
|
|
|
//@include fxied-center;
|
|
|
|
margin: 0px 100px auto auto;
|
|
|
|
margin: 0px 100px auto auto;
|
|
|
|