|
|
@ -26,7 +26,7 @@ |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
|
|
|
|
<el-row :gutter="10" class="mb8"> |
|
|
|
<!-- <el-row :gutter="10" class="mb8"> |
|
|
|
<el-col :span="1.5"> |
|
|
|
<el-button |
|
|
|
type="primary" |
|
|
@ -38,7 +38,7 @@ |
|
|
|
>新增</el-button> |
|
|
|
</el-col> |
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> |
|
|
|
</el-row> |
|
|
|
</el-row> --> |
|
|
|
|
|
|
|
<el-table |
|
|
|
v-loading="loading" |
|
|
@ -47,16 +47,16 @@ |
|
|
|
default-expand-all |
|
|
|
:tree-props="{children: 'children', hasChildren: 'hasChildren'}" |
|
|
|
> |
|
|
|
<el-table-column prop="deptName" label="组织名称" width="260"></el-table-column> |
|
|
|
<el-table-column prop="cryptoDeptId" label="组织编号" width="300"></el-table-column> |
|
|
|
<el-table-column prop="deptName" label="组织名称" ></el-table-column> |
|
|
|
<el-table-column prop="cryptoDeptId" label="组织编号"></el-table-column> |
|
|
|
<el-table-column prop="orderNum" label="排序" width="200"></el-table-column> |
|
|
|
<el-table-column prop="status" label="状态" :formatter="statusFormat" width="100"></el-table-column> |
|
|
|
<el-table-column prop="status" label="状态" :formatter="statusFormat" width="150"></el-table-column> |
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="200"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
|
|
|
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button |
|
|
|
size="mini" |
|
|
@ -81,7 +81,7 @@ |
|
|
|
v-hasPermi="['system:dept:remove']" |
|
|
|
>删除</el-button> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> --> |
|
|
|
</el-table> |
|
|
|
|
|
|
|
<!-- 添加或修改组织对话框 --> |
|
|
|