index.vue 14 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
<!--  -->
<template>
  <div class="userStyleMenus">
    <!-- 搜索 -->
    <FixedNav class="formSearch" :height="200">
      <div class="searchInput">
        <span>菜单名:</span>
        <el-input v-model="formInline.permissionName" placeholder="请输入菜单名" />
      </div>
      <el-button style="background-color: #3F9B6A;color: #fff;" @click="search">查询</el-button>
      <el-button class="buttonHover"
                 style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;" @click="clear">重置</el-button>
      <el-button style="background-color: #3F9B6A;color: #fff;" @click="add(1)">新增父级目录</el-button>
      <el-button style="background-color: #3F9B6A;color: #fff;" @click="add(2)">新增子级菜单</el-button>
      <el-button style="background-color: #3F9B6A;color: #fff;" @click="add(3)">新增子级按钮</el-button>
    </FixedNav>
    <!-- <div class="formSearch">
      <el-form :inline="true" :model="formInline">
        <el-form-item label="菜单名">
          <el-input v-model="formInline.permissionName" placeholder="请输入菜单名" />
        </el-form-item>
        <el-form-item>
          <el-button type="primary" plain @click="search">查询</el-button>
          <el-button type="info" plain @click="clear">重置</el-button>
          <el-button type="success" plain @click="add(1)">新增父级目录</el-button>
          <el-button type="success" plain @click="add(2)">新增子级菜单</el-button>
          <el-button type="success" plain @click="add(3)">新增子级按钮</el-button>
        </el-form-item>
      </el-form>
    </div> -->
    <!-- 表格 -->
    <div class="tableBox">
      <el-table
        :data="tableData"
        style="argin-bottom: 20px"
        row-key="permissionId"
        :header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}"
        :tree-props="{ children: 'childs', hasChildren: 'hasChildren' }"
        @selection-change="handleSelectionChange"
      >
        <el-table-column type="selection" width="55" />
        <el-table-column prop="permissionName" label="菜单名称" />
        <el-table-column label="图标">
          <template slot-scope="scope">
            <div>
              <i :class="scope.row.icon" />
            </div>
          </template>
        </el-table-column>
        <el-table-column prop="permission" label="菜单标识" />
        <el-table-column prop="createTime" label="创建时间" />
        <el-table-column label="操作" show-overflow-tooltip>
          <template slot-scope="scope">
            <div class="btnList">
              <div class="tableBtn greens" @click="edit(scope.row)">编辑</div>
              <div class="tableBtn greens" @click="del(scope.row)">删除</div>
            </div>
          </template>
        </el-table-column>
      </el-table>
      <div class="fenye">
        <el-pagination
          :current-page="currentPage"
          :page-sizes="[10, 20, 50, 100]"
          :page-size="10"
          layout="total, sizes, prev, pager, next, jumper"
          :total="total"
          @size-change="handleSizeChange"
          @current-change="handleCurrentChange"
        />
      </div>
    </div>

    <!-- *************对话框开始************* -->
    <el-dialog
      :title="userState ? '新增菜单' : '修改菜单'"
      :visible.sync="addFormDialog"
      width="30%"
      center
      :close-on-click-modal="false"
    >
      <!-- 新增角色 -->
      <div>
        <el-form ref="ruleForm" :model="addForm" label-width="80px" :rules="userRules">
          <el-form-item label="父节点ID">
            <el-input v-model="addForm.permissionPid" :disabled="true" placeholder="请输入角色名称" />
          </el-form-item>
          <el-form-item label="菜单名称" prop="permissionName">
            <el-input v-model="addForm.permissionName" placeholder="请输入菜单名称" />
          </el-form-item>
          <el-form-item label="菜单路径" prop="permission">
            <el-input v-model="addForm.permission" placeholder="请输入菜单路径" />
          </el-form-item>
          <el-form-item label="图标地址" prop="icon">
            <el-input
              v-model="addForm.icon"
              placeholder="请输入图片地址"
              @focus="getFocus"
            >
              <template slot="prepend">
                <i :class="addForm.icon"></i>
              </template>
            </el-input>
          </el-form-item>
          <el-form-item label="菜单描述">
            <el-input v-model="addForm.describe" placeholder="请输入菜单描述" />
          </el-form-item>
          <el-form-item label="排序值" prop="sort">
            <el-input v-model="addForm.sort" type="number" placeholder="请输入排序值" />
          </el-form-item>
          <el-form-item label="权限类型" prop="resourceType">
            <el-select v-model="addForm.resourceType" placeholder="请选择活动区域">
              <el-option label="菜单" value="menu" />
              <el-option label="按钮" value="button" />
              <el-option label="目录" value="catalog" />
            </el-select>
          </el-form-item>
        </el-form>
      </div>
      <span slot="footer" class="dialog-footer">
        <el-button @click="addFormDialog = false" class="buttonHover"
                 style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">取 消</el-button>
        <el-button style="background-color: #3F9B6A;color: #fff;" @click="addForm_enter('ruleForm')">确 定</el-button>
      </span>
    </el-dialog>

    <Icons :dialog-visible="iconVisible" @choose="chooseIcon" @close="iconVisible = false" />
  </div>
</template>

<script>
// 这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
// 例如:import 《组件名称》 from '《组件路径》';
import {
  tabsGetAll,
  tabsAdd,
  tabsGetById,
  tabsUpdate,
  tabsDelete,
  getMaxSort
} from '@/api/setup'
import Icons from './Icons'
import FixedNav from '@/components/FixedNav/index.vue'

export default {
  // import引入的组件需要注入到对象中才能使用
  components: {
    Icons,
    FixedNav
  },
  data() {
    // 这里存放数据
    return {
      formInline: {
        permissionName: '', // 搜索字段
        page: '1', // 当前页
        pageSize: '10' // 每页记录数
      },
      total: 1,
      tableData: [],
      currentPage: 1,
      userState: 1,
      addForm: {
        permissionPid: '', // 父节点id
        permissionName: '', // 权限名称
        permissionUri: '', // URI
        permission: '', // 组件
        icon: '', // 图标地址
        describe: '', // 描述
        resourceType: 'menu', // 权限类型 menu-菜单 button-按钮 catalog-目录
        sort: '' // 排序值
      },
      addFormDialog: false,
      userRules: {
        permissionName: [
          { required: true, message: '请输入权限名称', trigger: 'blur' }
        ],
        permission: [
          { required: true, message: '请输入菜单路径', trigger: 'blur' }
        ],
        resourceType: [
          { required: true, message: '请选择活动区域', trigger: 'change' }
        ],
        sort: [{ required: true, message: '请输入菜单路径', trigger: 'blur' }],
        icon: [{ required: true, message: '请输入图标地址', trigger: 'blur' }]
      },
      iconVisible: false,
      multipleSelection: []
    }
  },
  // 监听属性 类似于data概念
  computed: {},
  // 监控data中的数据变化
  watch: {},
  // 生命周期 - 创建完成(可以访问当前this实例)
  created() {},
  // 生命周期 - 挂载完成(可以访问DOM元素)
  mounted() {
    this.getAll(this.formInline)
  },
  // 方法集合
  methods: {
    handleSelectionChange(val) {
      this.multipleSelection = val
    },
    handleSizeChange(val) {
      this.formInline.pageSize = val
      this.getAll(this.formInline)
    },
    handleCurrentChange(val) {
      this.formInline.page = val
      this.getAll(this.formInline)
    },
    removeTag(index) {
      console.log(index)
    },
    tagChange(index) {
      this.$forceUpdate()
      console.log(index)
    },
    // 查询
    search() {
      this.total = 1
      this.formInline.page = 1
      this.getAll(this.formInline)
    },
    // 清除
    clear() {
      this.formInline = {
        permissionName: '', // 搜索字段
        page: '1', // 当前页
        pageSize: '10' // 每页记录数
      }
      this.getAll(this.formInline)
    },
    // 新增角色
    add(index) {
      this.userState = 1
      getMaxSort().then(res => {
        if (index === 1) {
          if (this.multipleSelection.length >= 1) {
            this.$message({
              message: '请勿选择节点进行操作'
            })
            return
          }
          this.addForm = {
            permissionPid: '', // 父节点id
            permissionName: '', // 权限名称
            permissionUri: '', // URI
            permission: '', // 组件
            icon: '', // 图标地址
            describe: '', // 描述
            resourceType: 'catalog', // 权限类型 menu-菜单 button-按钮 catalog-目录
            sort: parseInt(res.data) // 排序值
          }
          this.addFormDialog = true
        } else if (index === 2) {
          if (this.multipleSelection.length === 0) {
            this.$message({
              message: '请选择父节点'
            })
            return
          }
          console.log(this.multipleSelection)
          if (this.multipleSelection[0].permissionPid !== 0) {
            this.$message({
              message: '请选择父节点进行操作'
            })
            return
          }
          this.addForm = {
            permissionPid: this.multipleSelection[0].permissionId, // 父节点id
            permissionName: '', // 权限名称
            permissionUri: '', // URI
            permission: '', // 组件
            icon: '', // 图标地址
            describe: '', // 描述
            resourceType: 'menu', // 权限类型 menu-菜单 button-按钮 catalog-目录
            sort: parseInt(res.data) // 排序值
          }
          this.addFormDialog = true
          console.log(this.multipleSelection[0])
          console.log(this.addForm)
        } else if (index === 3) {
          if (this.multipleSelection.length === 0) {
            this.$message({
              message: '请选择子节点'
            })
            return
          }
          console.log(this.multipleSelection[0].permissionPid)
          if (
            this.multipleSelection[0].permissionPid === 0 &&
            this.multipleSelection[0].childs.length !== 0
          ) {
            this.$message({
              message: '请勿选择父节点进行操作'
            })
            return
          }
          this.addForm = {
            permissionPid: this.multipleSelection[0].permissionId, // 父节点id
            permissionName: '', // 权限名称
            permissionUri: '', // URI
            permission: '', // 组件
            icon: 'el-icon-minus', // 图标地址
            describe: '', // 描述
            resourceType: 'button', // 权限类型 menu-菜单 button-按钮 catalog-目录
            sort: parseInt(res.data) // 排序值
          }
          this.addFormDialog = true
          console.log(this.multipleSelection[0])
          console.log(this.addForm)
        }
      })
    },
    // 确认新增角色
    addForm_enter(ruleForm) {
      this.$refs[ruleForm].validate(valid => {
        if (valid) {
          if (this.userState) {
            console.log(this.addForm)
            tabsAdd(this.addForm).then(res => {
              console.log(res)
              if (res.code === '') {
                this.$message({
                  message: '新增成功',
                  type: 'success'
                })
              }
              this.getAll(this.formInline)
              this.addFormDialog = false
            })
          } else {
            tabsUpdate(this.addForm).then(res => {
              console.log(res)
              if (res.code === '') {
                this.$message({
                  message: '修改成功',
                  type: 'success'
                })
              }
              this.getAll(this.formInline)
              this.addFormDialog = false
            })
          }
        } else {
          console.log('error submit!!')
          return false
        }
      })
    },
    // 编辑角色
    edit(row) {
      this.userState = 0
      this.addFormDialog = true
      console.log(row)
      tabsGetById({ permissionId: row.permissionId }).then(res => {
        this.addForm = res.data
        console.log(this.addForm)
        // this.addForm.roleIds = [1];
      })
    },
    // 删除角色
    async del(row) {
      const res = await tabsDelete({ permissionId: row.permissionId })
      if (res.code === '') {
        this.$message({
          message: '删除成功',
          type: 'success'
        })
      }
      this.getAll(this.formInline)
    },
    // 组件传回值
    chooseIcon(icon) {
      console.log(icon)
      this.addForm.icon = icon
      this.iconVisible = false
    },
    getFocus() {
      this.iconVisible = true
    },
    // 初始化查询所有数据
    async getAll(formInline) {
      const res = await tabsGetAll(formInline)
      this.tableData = res.data.list
      this.total = res.data.total
    }
  }
}
</script>
<style lang='scss' scoped>
//@import url(); 引入公共css类
@import url("../../../styles/elDialog.scss");
.userStyleMenus {
  padding: 20px;
  background-color: #Fff;
  min-height: calc(100vh - 50px - 20px);
  .formSearch{
    margin-bottom:20px;
    display: flex;
    .searchInput{
      margin-right: 20px;
      display: flex;
      align-items: center;
      span{
        min-width: 80px;
      }
    }
  }
}
  ::v-deep .buttonHover:hover {
    color: #3f9b6a !important;
    border-color: #c5e1d2 !important;
    background-color: #ecf5f0 !important;
    outline: none;
  }

.greens {
  color: #3F9B6A;
}
</style>