| | |
| | | <div class="Table"> |
| | | <div class="datatable"> |
| | | <el-table ref="multipleTable" :data="tableData" style="width: 100%" |
| | | :header-cell-style="{'font-size':'12px',color:'#4b9bb7','font-weight':'650','line-height':'45px'}" |
| | | :header-cell-style="{'font-size':'14px','font-weight':'650','line-height':'45px'}" |
| | | :row-class-name="tableRowClassName"> |
| | | <el-table-column v-for="item in option.group" :key="item.prop" :label="item.label" |
| | | :prop="item.prop" :min-width="item['min-width'] ? item['item.min-width']:'10'"> |
| | |
| | | width: 100%; |
| | | |
| | | .el-table { |
| | | color: #4b9bb7; |
| | | // color: #4b9bb7; |
| | | } |
| | | |
| | | .tools { |
| | |
| | | display: flex; |
| | | |
| | | .sp-item { |
| | | border: 1px solid #17324c; |
| | | // border: 1px solid #17324c; |
| | | } |
| | | |
| | | .funsItem { |
| | |
| | | } |
| | | |
| | | .el-main { |
| | | background-color: #e4e5e9; |
| | | background-color: #fff; |
| | | color: #333; |
| | | text-align: center; |
| | | line-height: 160px; |
| | |
| | | <template> |
| | | <div class="aside"> |
| | | <div class="title">组织机构</div> |
| | | <div class="input"> |
| | | <el-input placeholder="输入组织机构名称, 按下enter键搜索" v-model="searchArea" @change="filterTreeNode"></el-input> |
| | | </div> |
| | | <div class="menu"> |
| | | <el-tree ref="department" :filter-node-method="filterNode" :data="areaData" :props="defaultProps" @node-click="nodeClick"></el-tree> |
| | | </div> |
| | | <div class="aside"> |
| | | <div class="title">组织机构</div> |
| | | <div class="input"> |
| | | <el-input |
| | | placeholder="输入组织机构名称, 按下enter键搜索" |
| | | v-model="searchArea" |
| | | @change="filterTreeNode" |
| | | ></el-input> |
| | | </div> |
| | | <div class="menu"> |
| | | <el-tree |
| | | ref="department" |
| | | :filter-node-method="filterNode" |
| | | :data="areaData" |
| | | :props="defaultProps" |
| | | @node-click="nodeClick" |
| | | ></el-tree> |
| | | </div> |
| | | </div> |
| | | </template> |
| | | <script> |
| | | import department from "@/api/system/department"; |
| | | |
| | | export default { |
| | | name: 'departmentAside', |
| | | data() { |
| | | return { |
| | | searchArea: null, |
| | | areaData: [], |
| | | defaultProps: { |
| | | children: 'children', |
| | | label: 'regionName' |
| | | } |
| | | }; |
| | | }, |
| | | name: "departmentAside", |
| | | data() { |
| | | return { |
| | | searchArea: null, |
| | | areaData: [], |
| | | defaultProps: { |
| | | children: "children", |
| | | label: "regionName", |
| | | }, |
| | | }; |
| | | }, |
| | | |
| | | created() { |
| | | if (sessionStorage.getItem('area')) { |
| | | this.areaData = JSON.parse(sessionStorage.getItem('area')); |
| | | } else { |
| | | department.getDepartmentList() |
| | | .then(res => { |
| | | this.areaData = res; |
| | | sessionStorage.setItem('area', JSON.stringify(this.areaData)); |
| | | }) |
| | | .catch(err => this.$message.error(err)) |
| | | } |
| | | }, |
| | | created() { |
| | | if (sessionStorage.getItem("area")) { |
| | | this.areaData = JSON.parse(sessionStorage.getItem("area")); |
| | | } else { |
| | | department |
| | | .getDepartmentList() |
| | | .then((res) => { |
| | | this.areaData = res; |
| | | sessionStorage.setItem("area", JSON.stringify(this.areaData)); |
| | | }) |
| | | .catch((err) => this.$message.error(err)); |
| | | } |
| | | }, |
| | | |
| | | methods: { |
| | | filterTreeNode() { |
| | |
| | | }, |
| | | nodeClick(data, node, props) { |
| | | if (node.level > 1) { |
| | | this.$emit('selectedDepartment', data); |
| | | this.$emit("selectedDepartment", data); |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | }, |
| | | }; |
| | | </script> |
| | | <style lang="scss" scoped> |
| | | .aside { |
| | | width: 200px; |
| | | height: calc(103vh - 102px); |
| | | background-color: #ffffff; |
| | | padding: 10px; |
| | | display: flex; |
| | | flex-direction: column; |
| | | .title { |
| | | line-height: 60px; |
| | | } |
| | | width: 200px; |
| | | height: calc(103vh - 102px); |
| | | background-color: #ffffff; |
| | | padding: 10px; |
| | | display: flex; |
| | | flex-direction: column; |
| | | .title { |
| | | line-height: 60px; |
| | | color: #333; |
| | | } |
| | | |
| | | .input { |
| | | line-height: 30px; |
| | | .input { |
| | | line-height: 30px; |
| | | |
| | | &::v-deep .el-input__inner { |
| | | // background-color: #09152f; |
| | | border: 1px solid #17324c; |
| | | } |
| | | &::v-deep .el-input__inner { |
| | | // background-color: #09152f; |
| | | border: 1px solid #17324c; |
| | | } |
| | | } |
| | | |
| | | .menu { |
| | | margin-top: 20px; |
| | | flex: 1; |
| | | .el-tree{ |
| | | height: 100%; |
| | | // background-color: #09152f; |
| | | // &::v-deep .el-tree-node:focus>.el-tree-node__content{ |
| | | // background-color: #092c4a; |
| | | // } |
| | | // &::v-deep .el-tree-node__content:hover{ |
| | | // background-color: #092c4a; |
| | | // } |
| | | } |
| | | .menu { |
| | | margin-top: 20px; |
| | | flex: 1; |
| | | .el-tree { |
| | | height: 100%; |
| | | // background-color: #09152f; |
| | | // &::v-deep .el-tree-node:focus>.el-tree-node__content{ |
| | | // background-color: #092c4a; |
| | | // } |
| | | // &::v-deep .el-tree-node__content:hover{ |
| | | // background-color: #092c4a; |
| | | // } |
| | | } |
| | | } |
| | | } |
| | | </style> |
| | |
| | | <el-table |
| | | ref="multipleTable" |
| | | :header-cell-style="{ |
| | | background: '#06122c', |
| | | 'font-size': '12px', |
| | | color: '#4b9bb7', |
| | | 'font-size': '14px', |
| | | 'font-weight': '650', |
| | | 'line-height': '45px', |
| | | }" |
| | |
| | | .userList { |
| | | text-align: left; |
| | | margin: 10px 20px; |
| | | color: #4b9bb7; |
| | | // color: #4b9bb7; |
| | | |
| | | header { |
| | | background-color: white; |
| | | border: 1 pox solid #fff; |
| | | // background-color: white; |
| | | // border: 1 pox solid #fff; |
| | | |
| | | .headerContent { |
| | | padding: 0 40px; |
| | |
| | | |
| | | .el-input { |
| | | flex: 2; |
| | | color: #1d3f57; |
| | | // color: #1d3f57; |
| | | |
| | | &::v-deep .el-input__inner { |
| | | background-color: #09152f; |
| | | border: 1px solid #17324c; |
| | | } |
| | | // &::v-deep .el-input__inner { |
| | | // background-color: #09152f; |
| | | // border: 1px solid #17324c; |
| | | // } |
| | | } |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | main { |
| | | background-color: #09152f; |
| | | // background-color: #09152f; |
| | | margin-top: 20px; |
| | | padding-bottom: 50px; |
| | | border: 1 pox solid #fff; |
| | | // border: 1 pox solid #fff; |
| | | |
| | | .mainTitle { |
| | | line-height: 60px; |
| | |
| | | padding: 0 20px; |
| | | |
| | | .funs-sp { |
| | | border: 1px solid #17324c; |
| | | // border: 1px solid #17324c; |
| | | } |
| | | |
| | | .funs { |
| | |
| | | width: 120px; |
| | | } |
| | | |
| | | &::v-deep .el-input__inner { |
| | | border: none; |
| | | background-color: #09152f; |
| | | } |
| | | // &::v-deep .el-input__inner { |
| | | // border: none; |
| | | // background-color: #09152f; |
| | | // } |
| | | |
| | | &:hover { |
| | | border: 1px solid #4b9bb7; |
| | | } |
| | | // &:hover { |
| | | // border: 1px solid #4b9bb7; |
| | | // } |
| | | |
| | | &:hover .el-checkbox { |
| | | color: #4b9bb7; |
| | | } |
| | | // &:hover .el-checkbox { |
| | | // color: #4b9bb7; |
| | | // } |
| | | } |
| | | } |
| | | |
| | |
| | | justify-content: center; |
| | | |
| | | .el-pagination { |
| | | &::v-deep li, |
| | | &::v-deep .btn-prev, |
| | | &::v-deep .btn-next { |
| | | background-color: #071f39; |
| | | color: #4b9bb7; |
| | | } |
| | | // &::v-deep li, |
| | | // &::v-deep .btn-prev, |
| | | // &::v-deep .btn-next { |
| | | // background-color: #071f39; |
| | | // color: #4b9bb7; |
| | | // } |
| | | |
| | | &::v-deep .active { |
| | | background-color: #409eff; |
| | | color: #fff; |
| | | } |
| | | // &::v-deep .active { |
| | | // background-color: #409eff; |
| | | // color: #fff; |
| | | // } |
| | | } |
| | | } |
| | | } |
| | | |
| | | .el-table { |
| | | color: #4b9bb7; |
| | | font-size: 10px; |
| | | // color: #4b9bb7; |
| | | // font-size: 10px; |
| | | |
| | | .operation { |
| | | display: flex; |
| | |
| | | } |
| | | } |
| | | |
| | | // &::v-deep .switchStyle .el-switch__label { |
| | | // position: absolute; |
| | | // display: none; |
| | | // color: #fff; |
| | | // } |
| | | |
| | | // &::v-deep .el-switch__core { |
| | | // background-color: rgba(166, 166, 166, 1); |
| | | // } |
| | | |
| | | // &::v-deep .switchStyle .el-switch__label--left { |
| | | // z-index: 9; |
| | | // left: 20px; |
| | | // } |
| | | |
| | | // &::v-deep .switchStyle .el-switch__label--right { |
| | | // z-index: 9; |
| | | // left: 4px; |
| | | // } |
| | | |
| | | // &::v-deep .switchStyle .el-switch__label.is-active { |
| | | // display: block; |
| | | // } |
| | | |
| | | // &::v-deep .switchStyle.el-switch .el-switch__core, |
| | | // &::v-deep .el-switch .el-switch__label { |
| | | // width: 50px !important; |
| | | // } |
| | | } |
| | | } |
| | | </style> |
| | |
| | | <div class="mainContent"> |
| | | <!-- 数据展示 --> |
| | | <el-table ref="multipleTable" |
| | | :header-cell-style="{background:'#06122c','font-size':'12px',color:'#4b9bb7','font-weight':'650','line-height':'45px'}" |
| | | :header-cell-style="{'font-size':'14px','font-weight':'650','line-height':'45px'}" |
| | | :data="tableData" style="width: 100%" :row-class-name="tableRowClassName" |
| | | @selection-change="tableChange"> |
| | | <el-table-column type="selection" min-width="5"> |
| | |
| | | .userList { |
| | | text-align: left; |
| | | margin: 10px 20px; |
| | | color: #4b9bb7; |
| | | // color: #4b9bb7; |
| | | |
| | | header { |
| | | background-color: #09152f; |
| | | border: 1pox solid #fff; |
| | | // background-color: #09152f; |
| | | // border: 1pox solid #fff; |
| | | |
| | | .headerContent { |
| | | padding: 0 40px; |
| | |
| | | |
| | | .el-input { |
| | | flex: 2; |
| | | color: #1d3f57; |
| | | // color: #1d3f57; |
| | | |
| | | &::v-deep .el-input__inner { |
| | | background-color: #09152f; |
| | | border: 1px solid #17324c; |
| | | // background-color: #09152f; |
| | | // border: 1px solid #17324c; |
| | | } |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | main { |
| | | background-color: #09152f; |
| | | // background-color: #09152f; |
| | | margin-top: 20px; |
| | | padding-bottom: 50px; |
| | | border: 1pox solid #fff; |
| | | // border: 1pox solid #fff; |
| | | |
| | | .mainTitle { |
| | | line-height: 60px; |
| | |
| | | align-items: center; |
| | | padding: 0 20px; |
| | | .funs-sp{ |
| | | border: 1px solid #17324c; |
| | | // border: 1px solid #17324c; |
| | | } |
| | | .funs { |
| | | display: flex; |
| | |
| | | width: 120px; |
| | | } |
| | | |
| | | &::v-deep .el-input__inner { |
| | | border: none; |
| | | background-color: #09152f; |
| | | } |
| | | // &::v-deep .el-input__inner { |
| | | // border: none; |
| | | // background-color: #09152f; |
| | | // } |
| | | |
| | | &:hover { |
| | | border: 1px solid #4b9bb7; |
| | | } |
| | | // &:hover { |
| | | // border: 1px solid #4b9bb7; |
| | | // } |
| | | |
| | | &:hover .el-checkbox { |
| | | color: #4b9bb7; |
| | | } |
| | | // &:hover .el-checkbox { |
| | | // color: #4b9bb7; |
| | | // } |
| | | } |
| | | |
| | | } |
| | |
| | | |
| | | .el-pagination { |
| | | |
| | | &::v-deep li, |
| | | &::v-deep .btn-prev, |
| | | &::v-deep .btn-next { |
| | | background-color: #071f39; |
| | | color: #4b9bb7; |
| | | } |
| | | // &::v-deep li, |
| | | // &::v-deep .btn-prev, |
| | | // &::v-deep .btn-next { |
| | | // background-color: #071f39; |
| | | // color: #4b9bb7; |
| | | // } |
| | | |
| | | &::v-deep .active { |
| | | background-color: #409eff; |
| | | color: #fff; |
| | | } |
| | | // &::v-deep .active { |
| | | // background-color: #409eff; |
| | | // color: #fff; |
| | | // } |
| | | } |
| | | } |
| | | } |
| | | |
| | | .el-table { |
| | | color: #4b9bb7; |
| | | font-size: 10px; |
| | | // color: #4b9bb7; |
| | | // font-size: 10px; |
| | | |
| | | .operation { |
| | | display: flex; |
| | |
| | | } |
| | | } |
| | | |
| | | // &::v-deep .switchStyle .el-switch__label { |
| | | // position: absolute; |
| | | // display: none; |
| | | // color: #fff; |
| | | // } |
| | | |
| | | // &::v-deep .el-switch__core { |
| | | // background-color: rgba(166, 166, 166, 1); |
| | | // } |
| | | |
| | | // &::v-deep .switchStyle .el-switch__label--left { |
| | | // z-index: 9; |
| | | // left: 20px; |
| | | // } |
| | | |
| | | // &::v-deep .switchStyle .el-switch__label--right { |
| | | // z-index: 9; |
| | | // left: 4px; |
| | | // } |
| | | |
| | | // &::v-deep .switchStyle .el-switch__label.is-active { |
| | | // display: block; |
| | | // } |
| | | |
| | | // &::v-deep .switchStyle.el-switch .el-switch__core, |
| | | // &::v-deep .el-switch .el-switch__label { |
| | | // width: 50px !important; |
| | | // } |
| | | } |
| | | } |
| | | </style> |
| | |
| | | </script> |
| | | <style lang="scss" scoped> |
| | | header { |
| | | background-color: #09152f; |
| | | // background-color: #09152f; |
| | | border: 1pox solid #fff; |
| | | |
| | | .headerContent { |
| | |
| | | |
| | | .el-input { |
| | | flex: 2; |
| | | color: #1d3f57; |
| | | // color: #1d3f57; |
| | | |
| | | &::v-deep .el-input__inner { |
| | | background-color: #09152f; |
| | | border: 1px solid #17324c; |
| | | // background-color: #09152f; |
| | | // border: 1px solid #17324c; |
| | | } |
| | | } |
| | | |
| | |
| | | <el-table |
| | | ref="multipleTable" |
| | | :header-cell-style="{ |
| | | background: '#06122c', |
| | | 'font-size': '12px', |
| | | color: '#4b9bb7', |
| | | 'font-size': '14px', |
| | | 'font-weight': '650', |
| | | 'line-height': '45px', |
| | | }" |
| | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="status" label="启用" min-width="5"> |
| | | <template slot-scope="scope" > |
| | | <template slot-scope="scope"> |
| | | <!-- @change="handleChangeStatus(scope.row)" --> |
| | | <el-switch |
| | | class="switchStyle" |
| | |
| | | >修改部门</span |
| | | > |
| | | <span class="line">|</span> |
| | | <span @click="handleChangeStatus(scope.row)">{{scope.row.status === true ?'停用':'启用' }}</span> |
| | | |
| | | <span @click="handleChangeStatus(scope.row)">{{ |
| | | scope.row.status === true ? "停用" : "启用" |
| | | }}</span> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | </script> |
| | | <style lang="scss" scoped> |
| | | main { |
| | | background-color: #09152f; |
| | | // background-color: #09152f; |
| | | margin-top: 20px; |
| | | padding-bottom: 50px; |
| | | border: 1pox solid #fff; |
| | |
| | | .funs { |
| | | display: flex; |
| | | .funs-sp { |
| | | border: 1px solid #17324c; |
| | | // border: 1px solid #17324c; |
| | | } |
| | | .funsItem { |
| | | line-height: 28px; |
| | |
| | | width: 120px; |
| | | } |
| | | |
| | | &::v-deep .el-input__inner { |
| | | border: none; |
| | | background-color: #09152f; |
| | | } |
| | | |
| | | &:hover { |
| | | border: 1px solid #4b9bb7; |
| | | } |
| | | |
| | | &:hover .el-checkbox { |
| | | color: #4b9bb7; |
| | | } |
| | | |
| | | } |
| | | } |
| | | |
| | |
| | | &::v-deep li, |
| | | &::v-deep .btn-prev, |
| | | &::v-deep .btn-next { |
| | | background-color: #071f39; |
| | | color: #4b9bb7; |
| | | // background-color: #071f39; |
| | | // color: #4b9bb7; |
| | | } |
| | | |
| | | &::v-deep .active { |
| | |
| | | } |
| | | |
| | | .el-table { |
| | | color: #4b9bb7; |
| | | font-size: 10px; |
| | | // color: #4b9bb7; |
| | | // font-size: 10px; |
| | | .operation { |
| | | display: flex; |
| | | font-size: 10px; |
| | |
| | | } |
| | | } |
| | | } |
| | | // &::v-deep .switchStyle .el-switch__label { |
| | | // position: absolute; |
| | | // display: none; |
| | | // color: #fff; |
| | | // } |
| | | |
| | | // &::v-deep .el-switch__core { |
| | | // background-color: rgba(166, 166, 166, 1); |
| | | // } |
| | | |
| | | // &::v-deep .switchStyle .el-switch__label--left { |
| | | // z-index: 9; |
| | | // left: 20px; |
| | | // } |
| | | |
| | | // &::v-deep .switchStyle .el-switch__label--right { |
| | | // z-index: 9; |
| | | // left: 4px; |
| | | // } |
| | | |
| | | // &::v-deep .switchStyle .el-switch__label.is-active { |
| | | // display: block; |
| | | // } |
| | | |
| | | // &::v-deep .switchStyle.el-switch .el-switch__core, |
| | | // &::v-deep .el-switch .el-switch__label { |
| | | // width: 56px !important; |
| | | // } |
| | | } |
| | | </style> |
| | |
| | | .userList { |
| | | text-align: left; |
| | | margin: 10px 20px; |
| | | color: #4b9bb7; |
| | | // color: #4b9bb7; |
| | | |
| | | header { |
| | | background-color: white; |
| | |
| | | |
| | | .el-input { |
| | | flex: 2; |
| | | color: #1d3f57; |
| | | // color: #1d3f57; |
| | | |
| | | &::v-deep .el-input__inner { |
| | | background-color: #09152f; |
| | | border: 1px solid #17324c; |
| | | } |
| | | // &::v-deep .el-input__inner { |
| | | // background-color: #09152f; |
| | | // border: 1px solid #17324c; |
| | | // } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | main { |
| | | background-color: #09152f; |
| | | // background-color: #09152f; |
| | | margin-top: 20px; |
| | | padding-bottom: 50px; |
| | | |
| | |
| | | line-height: 28px; |
| | | display: flex; |
| | | align-items: center; |
| | | border: 1px solid #17324c; |
| | | // border: 1px solid #17324c; |
| | | border-radius: 4px; |
| | | font-size: 12px; |
| | | margin-left: 10px; |
| | |
| | | width: 120px; |
| | | } |
| | | |
| | | &::v-deep .el-input__inner { |
| | | border: none; |
| | | background-color: #09152f; |
| | | } |
| | | // &::v-deep .el-input__inner { |
| | | // border: none; |
| | | // background-color: #09152f; |
| | | // } |
| | | |
| | | &:hover { |
| | | border: 1px solid #4b9bb7; |
| | | } |
| | | // &:hover { |
| | | // border: 1px solid #4b9bb7; |
| | | // } |
| | | |
| | | &:hover .el-checkbox { |
| | | color: #4b9bb7; |
| | | } |
| | | // &:hover .el-checkbox { |
| | | // color: #4b9bb7; |
| | | // } |
| | | } |
| | | } |
| | | |
| | |
| | | justify-content: center; |
| | | |
| | | .el-pagination { |
| | | &::v-deep li, |
| | | &::v-deep .btn-prev, |
| | | &::v-deep .btn-next { |
| | | background-color: #071f39; |
| | | color: #4b9bb7; |
| | | } |
| | | // &::v-deep li, |
| | | // &::v-deep .btn-prev, |
| | | // &::v-deep .btn-next { |
| | | // background-color: #071f39; |
| | | // color: #4b9bb7; |
| | | // } |
| | | |
| | | &::v-deep .active { |
| | | background-color: #409eff; |
| | | color: #fff; |
| | | } |
| | | // &::v-deep .active { |
| | | // background-color: #409eff; |
| | | // color: #fff; |
| | | // } |
| | | } |
| | | } |
| | | } |
| | |
| | | <div class="grid-content"> |
| | | <!-- 数据展示 --> |
| | | <el-table ref="multipleTable" |
| | | :header-cell-style="{background:'#06122c','font-size':'12px',color:'#4b9bb7','font-weight':'650','line-height':'45px'}" |
| | | :header-cell-style="{'font-weight':'650','line-height':'45px'}" |
| | | :data="tableData" style="width: 100%" :row-class-name="tableRowClassName" |
| | | @selection-change="tableChange"> |
| | | <el-table-column type="selection" min-width="5"> |
| | |
| | | } |
| | | |
| | | .el-pagination { |
| | | &::v-deep li, |
| | | &::v-deep .btn-prev, |
| | | &::v-deep .btn-next { |
| | | background-color: #071f39; |
| | | color: #4b9bb7; |
| | | } |
| | | // &::v-deep li, |
| | | // &::v-deep .btn-prev, |
| | | // &::v-deep .btn-next { |
| | | // background-color: #071f39; |
| | | // color: #4b9bb7; |
| | | // } |
| | | |
| | | &::v-deep .active { |
| | | background-color: #409eff; |
| | | color: #fff; |
| | | } |
| | | // &::v-deep .active { |
| | | // background-color: #409eff; |
| | | // color: #fff; |
| | | // } |
| | | } |
| | | } |
| | | } |
| | |
| | | <el-table |
| | | ref="multipleTable" |
| | | :header-cell-style="{ |
| | | background: '#06122c', |
| | | 'font-size': '12px', |
| | | color: '#4b9bb7', |
| | | 'font-weight': '650', |
| | | 'line-height': '45px', |
| | | }" |
| | |
| | | .list { |
| | | text-align: left; |
| | | margin: 10px 20px; |
| | | color: #4b9bb7; |
| | | // color: #4b9bb7; |
| | | |
| | | header { |
| | | background-color: white; |
| | | border: 1pox solid #fff; |
| | | // border: 1pox solid #fff; |
| | | |
| | | .header-content { |
| | | padding: 0 40px; |
| | |
| | | |
| | | .el-input { |
| | | flex: 2; |
| | | color: #1d3f57; |
| | | // color: #1d3f57; |
| | | |
| | | &::v-deep .el-input__inner { |
| | | background-color: #09152f; |
| | | border: 1px solid #17324c; |
| | | } |
| | | // &::v-deep .el-input__inner { |
| | | // background-color: #09152f; |
| | | // border: 1px solid #17324c; |
| | | // } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | main { |
| | | background-color: #09152f; |
| | | // background-color: #09152f; |
| | | margin-top: 20px; |
| | | padding-bottom: 50px; |
| | | border: 1pox solid #fff; |
| | |
| | | line-height: 28px; |
| | | display: flex; |
| | | align-items: center; |
| | | border: 1px solid #17324c; |
| | | // border: 1px solid #17324c; |
| | | border-radius: 4px; |
| | | font-size: 12px; |
| | | margin-left: 10px; |
| | |
| | | width: 120px; |
| | | } |
| | | |
| | | &::v-deep .el-input__inner { |
| | | border: none; |
| | | background-color: #09152f; |
| | | } |
| | | // &::v-deep .el-input__inner { |
| | | // border: none; |
| | | // background-color: #09152f; |
| | | // } |
| | | |
| | | &:hover { |
| | | border: 1px solid #4b9bb7; |
| | | } |
| | | // &:hover { |
| | | // border: 1px solid #4b9bb7; |
| | | // } |
| | | |
| | | &:hover .el-checkbox { |
| | | color: #4b9bb7; |
| | | } |
| | | // &:hover .el-checkbox { |
| | | // color: #4b9bb7; |
| | | // } |
| | | } |
| | | } |
| | | |
| | |
| | | justify-content: center; |
| | | |
| | | .el-pagination { |
| | | &::v-deep li, |
| | | &::v-deep .btn-prev, |
| | | &::v-deep .btn-next { |
| | | background-color: #071f39; |
| | | color: #4b9bb7; |
| | | } |
| | | // &::v-deep li, |
| | | // &::v-deep .btn-prev, |
| | | // &::v-deep .btn-next { |
| | | // background-color: #071f39; |
| | | // color: #4b9bb7; |
| | | // } |
| | | |
| | | &::v-deep .active { |
| | | background-color: #409eff; |
| | | color: #fff; |
| | | } |
| | | // &::v-deep .active { |
| | | // background-color: #409eff; |
| | | // color: #fff; |
| | | // } |
| | | } |
| | | } |
| | | } |
| | | &::v-deep .warning-row { |
| | | background-color: #06122c; |
| | | } |
| | | // &::v-deep .warning-row { |
| | | // background-color: #06122c; |
| | | // } |
| | | |
| | | &::v-deep .success-row { |
| | | background-color: #071f39; |
| | | } |
| | | // &::v-deep .success-row { |
| | | // background-color: #071f39; |
| | | // } |
| | | |
| | | .operationBox { |
| | | display: flex; |
| | |
| | | background-color: #4b9bb7; |
| | | } |
| | | .el-table { |
| | | color: #4b9bb7; |
| | | font-size: 10px; |
| | | // color: #4b9bb7; |
| | | // font-size: 10px; |
| | | .operation { |
| | | display: flex; |
| | | |
| | |
| | | <el-table |
| | | ref="multipleTable" |
| | | :header-cell-style="{ |
| | | background: '#06122c', |
| | | 'font-size': '12px', |
| | | color: '#4b9bb7', |
| | | 'font-weight': '650', |
| | | 'line-height': '45px', |
| | | }" |
| | |
| | | .list { |
| | | text-align: left; |
| | | margin: 10px 20px; |
| | | color: #4b9bb7; |
| | | // color: #4b9bb7; |
| | | |
| | | header { |
| | | background-color: white; |
| | | border: 1pox solid #fff; |
| | | // border: 1pox solid #fff; |
| | | |
| | | .header-content { |
| | | padding: 0 40px; |
| | |
| | | |
| | | .el-input { |
| | | flex: 2; |
| | | color: #1d3f57; |
| | | // color: #1d3f57; |
| | | |
| | | &::v-deep .el-input__inner { |
| | | background-color: #09152f; |
| | | border: 1px solid #17324c; |
| | | } |
| | | // &::v-deep .el-input__inner { |
| | | // background-color: #09152f; |
| | | // border: 1px solid #17324c; |
| | | // } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | main { |
| | | background-color: #09152f; |
| | | // background-color: #09152f; |
| | | margin-top: 20px; |
| | | padding-bottom: 50px; |
| | | border: 1pox solid #fff; |
| | |
| | | line-height: 28px; |
| | | display: flex; |
| | | align-items: center; |
| | | border: 1px solid #17324c; |
| | | // border: 1px solid #17324c; |
| | | border-radius: 4px; |
| | | font-size: 12px; |
| | | margin-left: 10px; |
| | |
| | | width: 120px; |
| | | } |
| | | |
| | | &::v-deep .el-input__inner { |
| | | border: none; |
| | | background-color: #09152f; |
| | | } |
| | | // &::v-deep .el-input__inner { |
| | | // border: none; |
| | | // background-color: #09152f; |
| | | // } |
| | | |
| | | &:hover { |
| | | border: 1px solid #4b9bb7; |
| | | } |
| | | // &:hover { |
| | | // border: 1px solid #4b9bb7; |
| | | // } |
| | | |
| | | &:hover .el-checkbox { |
| | | color: #4b9bb7; |
| | | } |
| | | // &:hover .el-checkbox { |
| | | // color: #4b9bb7; |
| | | // } |
| | | } |
| | | } |
| | | |
| | |
| | | justify-content: center; |
| | | |
| | | .el-pagination { |
| | | &::v-deep li, |
| | | &::v-deep .btn-prev, |
| | | &::v-deep .btn-next { |
| | | background-color: #071f39; |
| | | color: #4b9bb7; |
| | | } |
| | | // &::v-deep li, |
| | | // &::v-deep .btn-prev, |
| | | // &::v-deep .btn-next { |
| | | // background-color: #071f39; |
| | | // color: #4b9bb7; |
| | | // } |
| | | |
| | | &::v-deep .active { |
| | | background-color: #409eff; |
| | | color: #fff; |
| | | } |
| | | // &::v-deep .active { |
| | | // background-color: #409eff; |
| | | // color: #fff; |
| | | // } |
| | | } |
| | | } |
| | | } |
| | | |
| | | .el-table { |
| | | color: #4b9bb7; |
| | | font-size: 10px; |
| | | // color: #4b9bb7; |
| | | // font-size: 10px; |
| | | |
| | | .operation { |
| | | display: flex; |
| | |
| | | width: 80px; |
| | | margin-left: 20px; |
| | | padding: 0; |
| | | background-color: #09152f; |
| | | // background-color: #09152f; |
| | | color: rgb(75, 155, 183); |
| | | border: 1px solid rgb(75, 155, 183); |
| | | } |
| | | |
| | | .title{ |
| | | color: #333; |
| | | } |
| | | .button-two { |
| | | height: 40px; |
| | | width: 80px; |
| | | padding: 0; |
| | | background-color: #09152f; |
| | | // background-color: #09152f; |
| | | color: rgb(75, 155, 183); |
| | | border: 1px solid rgb(75, 155, 183); |
| | | } |
| | |
| | | height: 40px; |
| | | width: 80px; |
| | | padding: 0; |
| | | background-color: #09152f; |
| | | // background-color: #09152f; |
| | | color: rgb(75, 155, 183); |
| | | border: 1px solid rgb(75, 155, 183); |
| | | } |
| | |
| | | } |
| | | |
| | | .el-pagination { |
| | | &::v-deep li, |
| | | &::v-deep .btn-prev, |
| | | &::v-deep .btn-next { |
| | | background-color: #071f39; |
| | | color: #4b9bb7; |
| | | } |
| | | // &::v-deep li, |
| | | // &::v-deep .btn-prev, |
| | | // &::v-deep .btn-next { |
| | | // background-color: #071f39; |
| | | // color: #4b9bb7; |
| | | // } |
| | | |
| | | &::v-deep .active { |
| | | background-color: #409eff; |
| | | color: #fff; |
| | | } |
| | | // &::v-deep .active { |
| | | // background-color: #409eff; |
| | | // color: #fff; |
| | | // } |
| | | } |
| | | |
| | | .bottonThird { |
| | |
| | | cursor: pointer; |
| | | } |
| | | |
| | | ::v-deep .el-header { |
| | | background-color: #09152f; |
| | | color: #000; |
| | | line-height: 60px; |
| | | } |
| | | // ::v-deep .el-header { |
| | | // background-color: #09152f; |
| | | // color: #000; |
| | | // line-height: 60px; |
| | | // } |
| | | |
| | | ::v-deep .el-aside { |
| | | background-color: #09152f; |
| | | } |
| | | // ::v-deep .el-aside { |
| | | // background-color: #09152f; |
| | | // } |
| | | |
| | | ::v-deep .el-menu { |
| | | background-color: #09152f; |
| | | } |
| | | // ::v-deep .el-menu { |
| | | // background-color: #09152f; |
| | | // } |
| | | |
| | | ::v-deep .el-main, |
| | | ::v-deep .el-footer { |
| | | background-color: #09152f; |
| | | } |
| | | // ::v-deep .el-main, |
| | | // ::v-deep .el-footer { |
| | | // background-color: #09152f; |
| | | // } |
| | | |
| | | ::v-deep .el-tree-node__label { |
| | | line-height: 30px; |
| | |
| | | </div> |
| | | <!-- 数据展示 --> |
| | | <el-table ref="multipleTable" |
| | | :header-cell-style="{ background: '#06122c', 'font-size': '12px', color: '#4b9bb7', 'font-weight': '650', 'line-height': '45px' }" |
| | | :header-cell-style="{ 'font-size': '14px', 'font-weight': '650', 'line-height': '45px' }" |
| | | :data="tableData" style="width: 100%" :row-class-name="tableRowClassName" |
| | | @selection-change="tableChange"> |
| | | <el-table-column prop="name" label="部门名称" min-width="8"> |
| | |
| | | .userList { |
| | | text-align: left; |
| | | margin: 10px 20px; |
| | | color: #4b9bb7; |
| | | // color: #4b9bb7; |
| | | |
| | | header { |
| | | background-color: #09152f; |
| | | // background-color: #09152f; |
| | | |
| | | .headerContent { |
| | | width: 100%; |
| | |
| | | |
| | | .el-input { |
| | | flex: 2; |
| | | color: #1d3f57; |
| | | // color: #1d3f57; |
| | | |
| | | &::v-deep .el-input__inner { |
| | | background-color: #09152f; |
| | | border: 1px solid #17324c; |
| | | } |
| | | // &::v-deep .el-input__inner { |
| | | // background-color: #09152f; |
| | | // border: 1px solid #17324c; |
| | | // } |
| | | } |
| | | |
| | | } |
| | |
| | | } |
| | | } |
| | | |
| | | &::v-deep .el-input__inner { |
| | | background-color: #09152f; |
| | | border: 1px solid #17324c; |
| | | } |
| | | // &::v-deep .el-input__inner { |
| | | // background-color: #09152f; |
| | | // border: 1px solid #17324c; |
| | | // } |
| | | |
| | | main { |
| | | background-color: #09152f; |
| | | // background-color: #09152f; |
| | | margin-top: 20px; |
| | | padding-bottom: 50px; |
| | | |
| | |
| | | padding: 0 20px; |
| | | |
| | | .funs-sp { |
| | | border: 1px solid #17324c; |
| | | // border: 1px solid #17324c; |
| | | } |
| | | |
| | | .funs { |
| | |
| | | width: 120px; |
| | | } |
| | | |
| | | &:hover { |
| | | border: 1px solid #4b9bb7; |
| | | } |
| | | // &:hover { |
| | | // border: 1px solid #4b9bb7; |
| | | // } |
| | | |
| | | &:hover .el-checkbox { |
| | | color: #4b9bb7; |
| | | } |
| | | // &:hover .el-checkbox { |
| | | // color: #4b9bb7; |
| | | // } |
| | | } |
| | | |
| | | } |
| | |
| | | |
| | | .el-pagination { |
| | | |
| | | &::v-deep li, |
| | | &::v-deep .btn-prev, |
| | | &::v-deep .btn-next { |
| | | background-color: #071f39; |
| | | color: #4b9bb7; |
| | | } |
| | | // &::v-deep li, |
| | | // &::v-deep .btn-prev, |
| | | // &::v-deep .btn-next { |
| | | // background-color: #071f39; |
| | | // color: #4b9bb7; |
| | | // } |
| | | |
| | | &::v-deep .active { |
| | | background-color: #409eff; |
| | | color: #fff; |
| | | } |
| | | // &::v-deep .active { |
| | | // background-color: #409eff; |
| | | // color: #fff; |
| | | // } |
| | | } |
| | | } |
| | | } |
| | | |
| | | .el-table { |
| | | color: #4b9bb7; |
| | | font-size: 10px; |
| | | // color: #4b9bb7; |
| | | // font-size: 10px; |
| | | |
| | | .operation { |
| | | display: flex; |
| | |
| | | } |
| | | |
| | | main { |
| | | background-color: #09152f; |
| | | // background-color: #09152f; |
| | | margin-top: 20px; |
| | | padding-bottom: 50px; |
| | | |
| | |
| | | padding: 0; |
| | | } |
| | | } |
| | | |
| | | .my-aside{ |
| | | border-right: 1px solid #d3d3d3 ; |
| | | } |
| | | </style> |
| | |
| | | </script> |
| | | <style lang="scss" scoped> |
| | | .log { |
| | | color: #4b9bb7; |
| | | // color: #4b9bb7; |
| | | text-align: left; |
| | | padding: 20px; |
| | | |
| | |
| | | |
| | | header { |
| | | line-height: 60px; |
| | | border-bottom: 1px solid #4b9bb7; |
| | | // border-bottom: 1px solid #4b9bb7; |
| | | } |
| | | |
| | | main { |
| | |
| | | width: 496px; |
| | | } |
| | | |
| | | &::v-deep .el-input__inner { |
| | | background-color: #09152f; |
| | | border: 1px solid #17324c; |
| | | ; |
| | | } |
| | | // &::v-deep .el-input__inner { |
| | | // background-color: #09152f; |
| | | // border: 1px solid #17324c; |
| | | // ; |
| | | // } |
| | | } |
| | | } |
| | | |