完成坐席工号查询接口。

This commit is contained in:
2023-04-26 20:19:49 +08:00
parent 1e33383d22
commit 2e72789a4f
8 changed files with 78 additions and 51 deletions

View File

@@ -42,42 +42,44 @@ export default {
};
</script>
<style lang="scss" scoped>
.layout-container {
height: 100vh;
width: 100vw;
max-height: 100vh;
max-width: 100vw;
.layout-header {
height: 50px;
@media screen {
.layout-container {
height: 100vh;
width: 100vw;
max-height: 50px;
max-height: 100vh;
max-width: 100vw;
padding: 0px;
}
.layout-header {
height: 50px;
width: 100vw;
max-height: 50px;
max-width: 100vw;
.layout-container-down {
height: calc(100vh - 50px);
max-height: calc(100vh - 50px);
width: 100vw;
max-width: 100vw;
.layout-aside {
height: calc(100vh - 50px);
max-height: calc(100vh - 50px);
min-height: calc(100vh - 50px);
width: 200px;
overflow-x: hidden;
background-color: #2f4156;
padding: 0px;
}
.layout-main {
padding: 0px;
.layout-container-down {
height: calc(100vh - 50px);
width: calc( 100vw - 200px );
max-height: calc(100vh - 50px);
width: 100vw;
max-width: 100vw;
.layout-aside {
height: calc(100vh - 50px);
max-height: calc(100vh - 50px);
min-height: calc(100vh - 50px);
width: 200px;
overflow-x: hidden;
background-color: #2f4156;
}
.layout-main {
padding: 0px;
height: calc(100vh - 50px);
width: calc(100vw - 200px);
}
}
}
}