fix homepage fixed problem
This commit is contained in:
parent
a985740915
commit
a142a9431b
Binary file not shown.
Before Width: | Height: | Size: 264 KiB After Width: | Height: | Size: 17 KiB |
@ -1,8 +1,8 @@
|
|||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
|
||||||
export const api = axios.create({
|
export const api = axios.create({
|
||||||
// baseURL: 'https://ccb.canary.moe/api/',
|
baseURL: 'https://ccb.canary.moe/api/',
|
||||||
baseURL: window.location.origin + '/api/',
|
// baseURL: window.location.origin + '/api/',
|
||||||
// baseURL: 'http://152.136.99.231:8001' + '/api/',
|
// baseURL: 'http://152.136.99.231:8001' + '/api/',
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/x-www-form-urlencoded',
|
'Content-Type': 'application/x-www-form-urlencoded',
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
</md-app-drawer>
|
</md-app-drawer>
|
||||||
|
|
||||||
<md-app-content>
|
<md-app-content>
|
||||||
<div :style="`height:${search_start? '102':'56'}px`"></div>
|
<div ref='list_placeholder' :style="`height:${search_start? '86':'40'}px`"></div>
|
||||||
<md-empty-state
|
<md-empty-state
|
||||||
md-icon="devices_other"
|
md-icon="devices_other"
|
||||||
md-label="Create your first code"
|
md-label="Create your first code"
|
||||||
@ -124,6 +124,7 @@ export default {
|
|||||||
//动态修改样式
|
//动态修改样式
|
||||||
// console.log(clientHeight);
|
// console.log(clientHeight);
|
||||||
this.$refs.home.children[0].style.minHeight = clientHeight + 'px';
|
this.$refs.home.children[0].style.minHeight = clientHeight + 'px';
|
||||||
|
this.$refs.list_placeholder.parentNode.style.maxHeight = clientHeight + 'px';
|
||||||
},
|
},
|
||||||
|
|
||||||
// 初始化
|
// 初始化
|
||||||
@ -383,10 +384,14 @@ export default {
|
|||||||
.md-speed-dial.md-bottom-right {
|
.md-speed-dial.md-bottom-right {
|
||||||
position: fixed !important;
|
position: fixed !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
// Demo purposes only
|
// Demo purposes only
|
||||||
.md-drawer {
|
.md-drawer {
|
||||||
width: 240px;
|
width: 240px;
|
||||||
max-width: calc(100vw - 125px);
|
max-width: calc(100vw - 125px);
|
||||||
}
|
}
|
||||||
|
.md-app-scroller > div {
|
||||||
|
overflow-y:scroll!important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user