字体文件改为本地
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
b7c3ac6607
commit
667631be5d
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -8,9 +8,9 @@
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "iconfont"; /* Project id 3270795 */
|
font-family: "iconfont"; /* Project id 3270795 */
|
||||||
src: url('//at.alicdn.com/t/c/font_3270795_fcd739rubku.woff2?t=1673580130618') format('woff2'),
|
src: url('./font_3270795_fcd739rubku.woff2') format('woff2'),
|
||||||
url('//at.alicdn.com/t/c/font_3270795_fcd739rubku.woff?t=1673580130618') format('woff'),
|
url('./font_3270795_fcd739rubku.woff') format('woff'),
|
||||||
url('//at.alicdn.com/t/c/font_3270795_fcd739rubku.ttf?t=1673580130618') format('truetype');
|
url('./font_3270795_fcd739rubku.ttf') format('truetype');
|
||||||
}
|
}
|
||||||
|
|
||||||
.iconfont {
|
.iconfont {
|
||||||
|
|
|
@ -124,7 +124,6 @@ import { getHospital } from '@/api/hospital.js'
|
||||||
import { getHIRHospitalList, updateDefaultHospital } from '@/api/admin'
|
import { getHIRHospitalList, updateDefaultHospital } from '@/api/admin'
|
||||||
import { TJUserLoginInfo } from '@/api/user'
|
import { TJUserLoginInfo } from '@/api/user'
|
||||||
|
|
||||||
// import config from '/public/config.js'
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Login',
|
name: 'Login',
|
||||||
components: { TopLang, Vcode },
|
components: { TopLang, Vcode },
|
||||||
|
|
|
@ -72,7 +72,7 @@
|
||||||
}}</el-menu-item>
|
}}</el-menu-item>
|
||||||
</el-submenu>
|
</el-submenu>
|
||||||
</el-menu>
|
</el-menu>
|
||||||
<!-- <TopLang />-->
|
<TopLang v-if="isDev" />
|
||||||
<toggleRole v-if="toggleRoleVisible" :visible.sync="toggleRoleVisible" :loading="toggleRoleLoading" :roles="roles"
|
<toggleRole v-if="toggleRoleVisible" :visible.sync="toggleRoleVisible" :loading="toggleRoleLoading" :roles="roles"
|
||||||
@save="loginByRole" />
|
@save="loginByRole" />
|
||||||
</div>
|
</div>
|
||||||
|
@ -124,6 +124,9 @@ export default {
|
||||||
this.roles.filter((item) => !item.IsUserRoleDisabled).length > 1
|
this.roles.filter((item) => !item.IsUserRoleDisabled).length > 1
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
isDev() {
|
||||||
|
return process.env.VUE_APP_OSS_PATH === "/hir_test/dist"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
$route(v) {
|
$route(v) {
|
||||||
|
|
Loading…
Reference in New Issue