Commit e5624eb4 by xiaowenfeng

1、初步完成学员列表

parent da5a2b4e
......@@ -155,6 +155,7 @@
cursor: pointer;
.ant-btn {
border: none;
box-shadow: none;
& > * {
display: inline-block;
vertical-align: middle;
......
......@@ -87,6 +87,7 @@ export default {
</script>
<style lang="less" scoped>
@import url('../css/common.less');
@import url('../css/iconfont/iconfont.css');
.left-nav-wrap {
width: 100%;
......@@ -131,7 +132,7 @@ export default {
background: #D2D2D2 100%;
}
::v-deep .ant-menu-sub{
background: #E3E3E3 100%;;
background: @e3-color;
}
::v-deep .ant-menu-submenu-selected {
.ant-menu-submenu-title {
......@@ -143,7 +144,7 @@ export default {
height: 54px;
line-height: 54px;
font-size: 16px;
background: #E3E3E3 100%;
background: @e3-color;
&::after {
content: "";
width: 100%;
......
@tree-menu-width: 297px;
@right-operate: calc(100% - @tree-menu-width);
@e3-color: #E3E3E3 100%;
@f9-color: #F9F9F9 100%;
.has-top-nav-page-wrap {
width: 100%;
height: 100%;
......@@ -17,4 +19,35 @@
height: 100%;
background: #FFFFFF 100%;
}
}
\ No newline at end of file
}
.flex-justify {
display: flex;
align-items: center;
justify-content: flex-start;
text-align: justify;
}
::v-deep .qd-btn {
width: 93px;
height: 30px;
border-radius: 90px;
font-size: 14px;
text-align: center;
font-family: PingFang SC;
padding: 0;
}
::v-deep .qd-btn-default-w {
min-width: 93px;/*no*/
}
::v-deep .qd-table {
.ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td {
background: @f9-color !important;
}
.ant-table-row {
td {
padding-top: 10px;
padding-bottom: 10px;
}
}
}
\ No newline at end of file
......@@ -3,7 +3,7 @@ import App from './App.vue'
import router from './router'
import store from './store'
import http from './service/http'
import { Button, Popover, Menu, Breadcrumb, Input, Tree } from 'ant-design-vue'
import { Button, Popover, Menu, Breadcrumb, Input, Tree, Table, Space } from 'ant-design-vue'
import './libs/flexible'
// console.log(process.env)
......@@ -26,4 +26,6 @@ app.use(Menu)
app.use(Breadcrumb)
app.use(Input)
app.use(Tree)
app.use(Table)
app.use(Space)
app.use(store).use(router).mount('#app')
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment