123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364 |
- <template>
- <div class="side-catalog-wrap">
- <el-scrollbar class="side-catalog-box">
- <div
- class="side-catalog-all side-catalog-item"
- :class="{'active-catalog':isAll}"
- @click="clickAllCatalog()"
- >
- 全部
- </div>
- <div
- v-for="(catalog,index) in catalogList"
- :key="index"
- class="side-catalog-item"
- :class="{'active-catalog':activeCatalog.code === catalog.code && !isAll}"
- @mouseenter="mouseenter(catalog.code)"
- @mouseleave="mouseleave"
- @click="clickCatalog(catalog)"
- >
- <span class="catalog-name">{{ catalog.name }}</span>
- <el-dropdown
- :class="{'dropdown-show':(showDropdown && hoverItem === catalog.code) || activeCatalog.code === catalog.code}"
- class="page-list-dropdown"
- placement="bottom-start"
- node-key="id"
- trigger="click"
- >
- <span class="el-dropdown-link menu-dropdown-link">
- <i
- class="el-icon-more"
- :class="{'active-icon-more':activeCatalog.code === catalog.code && !isAll}"
- />
- <el-dropdown-menu
- slot="dropdown"
- class="dropdown-menu-box bs-el-dropdown-menu"
- >
- <el-dropdown-item @click.native="catalogEdit(catalog)">
- 编辑
- </el-dropdown-item>
- <el-dropdown-item
- class="delete-item"
- @click.native="catalogDel(catalog)"
- >
- 删除
- </el-dropdown-item>
- </el-dropdown-menu>
- </span>
- </el-dropdown>
- </div>
- </el-scrollbar>
- <div
- class="add-catalog-box"
- @click="catalogAdd"
- >
- <i class="el-icon-plus" />
- <div>新增分组</div>
- </div>
- <!-- 新增或编辑目录弹窗 -->
- <el-dialog
- :title="currentCatalog.code ? '编辑分组':'新增分组'"
- :visible.sync="catalogVisible"
- custom-class="bs-el-dialog"
- width="30%"
- class="bs-dialog-wrap bs-el-dialog"
- @close="handleClose"
- >
- <el-form
- ref="form"
- :model="currentCatalog"
- label-width="80px"
- :rules="formRules"
- class="bs-el-form"
- >
- <el-form-item
- label="分组名称"
- prop="name"
- >
- <el-input
- v-model.trim="currentCatalog.name"
- class="bs-el-input"
- clearable
- />
- </el-form-item>
- <el-form-item
- label="排序"
- >
- <el-input-number
- v-model="currentCatalog.orderNum"
- :min="0"
- :max="30000"
- controls-position="right"
- class="bs-el-input-number"
- />
- </el-form-item>
- </el-form>
- <span
- slot="footer"
- class="dialog-footer"
- >
- <el-button
- class="bs-el-button-default"
- @click="catalogVisible = false"
- >
- 取消
- </el-button>
- <el-button
- type="primary"
- @click="addOrEditCatalog"
- >
- 确定
- </el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import cloneDeep from 'lodash/cloneDeep'
- export default {
- components: { },
- props: {
- type: {
- type: String,
- default: 'bigScreenCatalog'
- }
- },
- data () {
- const validateName = (rule, value, callback) => {
- this.$dataRoomAxios.post('/bigScreen/type/nameRepeat', {
- id: this.currentCatalog.id,
- name: value,
- type: this.type || 'bigScreenCatalog'
- }, true).then((r) => {
- if (r.data) {
- callback(new Error('分组名称已存在'))
- } else {
- callback()
- }
- })
- }
- return {
- showDropdown: false,
- hoverItem: null,
- isAll: true,
- catalogList: [],
- catalogVisible: false,
- activeCatalog: { // 激活的目录,点击其他非目录按钮时需要保持当前的菜单激活状态
- name: '',
- id: '',
- code: ''
- },
- currentCatalog: { // 选中目录
- name: '',
- id: '',
- code: '',
- orderNum: 0
- },
- formRules: {
- name: [
- { required: true, message: '分组名称不能为空', trigger: 'blur' },
- { validator: validateName, trigger: 'blur' }
- ]
- }
- }
- },
- mounted () {
- this.getCatalogList()
- },
- methods: {
- mouseenter (code) {
- this.showDropdown = true
- this.hoverItem = code
- },
- mouseleave () {
- this.showDropdown = false
- },
- // 点击全部
- clickAllCatalog () {
- this.isAll = true
- this.$emit('getPageInfo', { isAll: true, page: { id: '', code: '', name: '' } })
- },
- // 点击目录
- clickCatalog (catalog) {
- this.currentCatalog = cloneDeep(catalog)
- this.activeCatalog = cloneDeep(catalog)
- this.isAll = false
- this.$emit('getPageInfo', { isAll: false, page: catalog })
- },
- // 关闭目录弹窗
- handleClose () {
- this.catalogVisible = false
- this.$refs.form.clearValidate()
- },
- // 新增编辑目录(点击确定)
- addOrEditCatalog () {
- this.$refs.form.validate(async (valid) => {
- if (!valid) {
- return
- }
- if (!this.currentCatalog.id) {
- this.$dataRoomAxios.post('/bigScreen/type/add',
- {
- ...this.currentCatalog,
- type: this.type || 'bigScreenCatalog'
- }).then(data => {
- this.catalogVisible = false
- this.getCatalogList()
- this.flag = true
- // 关闭页面菜单的弹窗
- this.closePageMenuDialog()
- }).catch(() => {
- })
- } else {
- this.$dataRoomAxios.post('/bigScreen/type/update', { ...this.currentCatalog, type: this.type || 'bigScreenCatalog' }).then(data => {
- this.catalogVisible = false
- this.getCatalogList()
- }).catch(() => {
- })
- }
- })
- },
- // 新增目录
- catalogAdd () {
- this.catalogVisible = true
- this.currentCatalog = { // 选中目录
- name: '',
- id: '',
- code: '',
- orderNum: 0
- }
- },
- // 编辑目录
- catalogEdit () {
- this.currentCatalog = cloneDeep(this.currentCatalog)
- this.catalogVisible = true
- },
- // 删除目录
- catalogDel (catalog) {
- this.$confirm('分组删除后,分组下的大屏会被归纳至全部中,确定删除该分组?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- customClass: 'bs-el-message-box'
- }).then(async () => {
- this.$dataRoomAxios.post(`/bigScreen/type/delete/${catalog.id}`).then(() => {
- this.$message({
- type: 'success',
- message: '删除成功'
- })
- this.getCatalogList()
- }).catch(() => {
- this.$message({
- type: 'error',
- message: '删除失败!'
- })
- })
- }).catch()
- },
- // 获取目录的列表
- getCatalogList () {
- this.pageLoading = true
- this.$dataRoomAxios.get(`/bigScreen/type/list/${this.type}`).then(data => {
- this.catalogList = data
- }).catch(() => {
- }).finally(() => {
- this.pageLoading = false
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import '../assets/style/bsTheme.scss';
- .side-catalog-wrap{
- // padding-top: 16px;
- width: 220px;
- // height: 100%;
- // margin-bottom: 16px;
- box-sizing: border-box;
- color: var(--bs-el-title);
- background-color: var(--bs-background-2);
- .side-catalog-box{
- height: calc(100% - 50px);
- overflow-y: auto;
- .side-catalog-all{
- font-weight: bold;
- }
- .side-catalog-item{
- width: 100%;
- padding: 0px 16px;
- line-height: 36px;
- display: flex;
- justify-content: space-between;
- &:hover{
- cursor: pointer;
- }
- .el-icon-more{
- transform: rotate(90deg);
- color: var(--bs-el-title);
- font-weight: 400;
- }
- .active-icon-more{
- color:var(--bs-el-text);
- }
- .catalog-name{
- overflow:hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- -o-text-overflow:ellipsis;
- }
- .page-list-dropdown{
- opacity: 0;
- }
- .dropdown-show{
- opacity: 1;
- }
- }
- /*菜单激活时的样式*/
- .active-catalog{
- position: relative;
- background-color: rgba(var(--bs-el-color-primary-active), 0.4);
- color: var(--bs-el-text);
- &::before{
- content: '';
- position: absolute;
- left: 0;
- width: 4px;
- height: 36px;
- background-color: var(--bs-el-color-primary);
- }
- }
- }
- .add-catalog-box{
- padding: 10px 0;
- box-sizing: border-box;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 10px;
- margin: 0 8px;
- &:hover{
- background-color: var(--bs-background-1);
- cursor: pointer;
- color: var(--bs-el-text);;
- }
- .el-icon-plus{
- padding: 0 5px;
- }
- }
- }
- .dropdown-menu-box{
- left: 50%;
- transform: translateX(-40%);
- width: 100px!important;
- ::v-deep.el-dropdown-menu__item{
- text-align: center;
- padding: 5px;
- }
- ::v-deep.popper__arrow{
- left: 50% !important;
- transform: translateX(-50%) !important;
- }
- }
- </style>
|