Commit 09328dfc by Mr. Lan

整合页面文件。

parent 418dc1c3
......@@ -34,6 +34,7 @@
v-loading="loading"
:data="deptList"
row-key="deptId"
border
default-expand-all
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
......
......@@ -60,7 +60,7 @@
</el-col>
</el-row>
<el-table v-loading="loading" :data="list" @selection-change="handleSelectionChange">
<el-table v-loading="loading" border :data="list" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="编号" width="70" align="center" prop="infoId" />
<el-table-column label="用户名称" width="85" align="center" prop="username" />
......
......@@ -26,6 +26,7 @@
<el-table
v-loading="loading"
border
:data="menuList"
row-key="menuId"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
......
......@@ -67,7 +67,7 @@
</el-col>
</el-row>
<el-table v-loading="loading" :data="postList" @selection-change="handleSelectionChange">
<el-table v-loading="loading" border :data="postList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="岗位编号" width="80" align="center" prop="postId" />
<el-table-column label="岗位编码" align="center" prop="postCode" />
......
......@@ -81,7 +81,7 @@
</el-col>
</el-row>
<el-table v-loading="loading" :data="roleList" @selection-change="handleSelectionChange">
<el-table v-loading="loading" border :data="roleList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="角色编号" prop="roleId" width="120" />
<el-table-column label="角色名称" prop="roleName" :show-overflow-tooltip="true" width="150" />
......
......@@ -92,6 +92,7 @@
<el-table
v-loading="loading"
:data="userList"
border
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="45" align="center" />
......@@ -100,7 +101,7 @@
<el-table-column label="用户昵称" align="center" prop="nickName" :show-overflow-tooltip="true" />
<el-table-column label="部门" align="center" prop="deptName" :show-overflow-tooltip="true" />
<el-table-column label="手机号码" align="center" prop="phone" width="120" />
<el-table-column label="状态" width="50" align="center">
<el-table-column label="状态" width="60" align="center">
<template slot-scope="scope">
<el-switch
v-model="scope.row.status"
......
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