界面标题等logo修改

master
anthonywj 2 years ago
parent 5e4d13c9de
commit 4068e7fbd7

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

@ -75,3 +75,16 @@ export function getCodeSms() {
timeout: 20000
})
}
export function getTitleConfig() {
return request({
url: '/spms/getTitleConfig',
headers: {
isToken: false
},
method: 'get',
timeout: 20000
})
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 19 KiB

@ -60,7 +60,7 @@ export default {
.sidebar-logo-container {
position: relative;
width: 100%;
height: 100px;
height: 110px;
line-height: 50px;
background: #2b2f3a;
text-align: center;
@ -72,7 +72,7 @@ export default {
& .sidebar-logo {
width: 100px;
height: 73px;
height: 100px;
margin-top: 12px;
vertical-align: middle;
margin-right: 12px;
@ -94,7 +94,7 @@ export default {
&.collapse {
.sidebar-logo {
width: 44px;
height: 32px;
height: 44px;
margin-right: 0px;
}
}

@ -2123,7 +2123,6 @@ export default {
type: "warning",
})
.then(() => {
debugger;
this.updateLoading = true;
let query = {
uuid: this.editQuery.uuid,

@ -405,7 +405,6 @@ export default {
},
initBusType() {
debugger
let query = {
code: this.orderFormData.invCode,
};

@ -564,7 +564,6 @@ export default {
uploadHandleError() {
},
uploadHandleSuccess(response, file, fileList) {
debugger;
if (response.code === 20000) {
this.inputQuery.licenseUrl = response.data.name;
// this.onSubmit();

@ -2,7 +2,9 @@
<div class="login-container">
<div>
<el-row>
<h3 class="toptitle">平潭协和医院</h3>
<!-- <h3 class="toptitle">漳州市中医院</h3>-->
<h3 class="toptitle">{{ title }}</h3>
</el-row>
<el-row>
<h3 class="topSubtitle">医院UDI管理系统</h3>
@ -121,6 +123,7 @@ import Verify from "vue2-verify";
import axios from "axios";
import Cookies from "js-cookie";
import {decrypt, encrypt} from "@/utils/jsencrypt";
import {getTitleConfig} from "@/api/login";
export default {
data() {
@ -157,6 +160,7 @@ export default {
showDialog: false, // dialog
redirect: null, //
hospName: "",
title: "福建省XXX医院"
};
},
methods: {
@ -266,6 +270,11 @@ export default {
}
});
},
getTitleConfig() {
getTitleConfig().then(res => {
this.title = res.data.title;
});
},
},
components: {
Verify,
@ -281,7 +290,7 @@ export default {
axios.get("./config.json").then((res) => {
this.hospName = res.data.hosp_name;
});
this.getTitleConfig();
this.getCookie();
},
};

@ -1100,7 +1100,6 @@ export default {
type: "warning",
})
.then(() => {
debugger
this.updateLoading = true;
let query = {uuid: this.editQuery.uuid, originUuid: this.editQuery.originUuid};
syncOnline(query)

@ -534,7 +534,6 @@ export default {
},
onResetintent() {
debugger;
this.$router.push({
path: "",
});

@ -438,7 +438,6 @@ export default {
previewPdf(row) {
debugger
let query = {id: row.id,module:row.module};
demoPrint(query).then((response) => {
//pdfurl

Loading…
Cancel
Save