562 lines
26 KiB
Vue
562 lines
26 KiB
Vue
<template>
|
|
<div class="system-user">
|
|
<el-row :gutter="10">
|
|
<!--机构数据-->
|
|
<el-col :span="4" :xs="24">
|
|
<el-card>
|
|
<div class="tree-wrap">
|
|
<el-input v-model="deptName" :placeholder="$t('user.index.098976-0')" clearable size="small" prefix-icon="el-icon-search" style="margin-bottom: 20px; margin-right: 10px" />
|
|
<el-tree
|
|
:data="deptOptions"
|
|
:props="defaultProps"
|
|
:expand-on-click-node="false"
|
|
:filter-node-method="filterNode"
|
|
ref="tree"
|
|
node-key="id"
|
|
default-expand-all
|
|
highlight-current
|
|
@node-click="handleNodeClick"
|
|
/>
|
|
</div>
|
|
</el-card>
|
|
</el-col>
|
|
|
|
<!--用户数据-->
|
|
<el-col :span="20" :xs="24">
|
|
<el-card v-show="showSearch" style="margin-bottom: 10px">
|
|
<el-form @submit.native.prevent :model="queryParams" ref="queryForm" :inline="true" size="mini" label-width="68px" style="margin-bottom: -18px">
|
|
<el-form-item :label="$t('user.index.098976-1')" prop="userName">
|
|
<el-input v-model="queryParams.userName" :placeholder="$t('user.index.098976-2')" clearable @keyup.enter.native="handleQuery" />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('user.index.098976-3')" prop="phonenumber">
|
|
<el-input v-model="queryParams.phonenumber" :placeholder="$t('user.index.098976-4')" clearable @keyup.enter.native="handleQuery" />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('user.index.098976-5')" prop="status">
|
|
<el-select v-model="queryParams.status" :placeholder="$t('user.index.098976-6')" clearable>
|
|
<el-option v-for="dict in dict.type.sys_normal_disable" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item style="float: right">
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">{{ $t('search') }}</el-button>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">{{ $t('reset') }}</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-card>
|
|
|
|
<el-card>
|
|
<el-row :gutter="10" style="margin-bottom: 15px">
|
|
<el-col :span="1.5">
|
|
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd" v-hasPermi="['system:user:add']">{{ $t('user.index.098976-7') }}</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button type="info" plain icon="el-icon-upload2" size="mini" @click="handleImport" v-hasPermi="['system:user:import']">{{ $t('import') }}</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" v-hasPermi="['system:user:export']">{{ $t('export') }}</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5" style="line-height: 28px">
|
|
<el-checkbox v-model="queryParams.showChild" style="margin: 0px 10px" @change="handleQuery">{{ $t('user.index.098976-8') }}</el-checkbox>
|
|
<el-tooltip :content="$t('user.index.098976-9')" placement="top"><i class="el-icon-question"></i></el-tooltip>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
|
|
</el-row>
|
|
|
|
<div class="table-wrap">
|
|
<el-table v-loading="loading" :data="userList" :border="false">
|
|
<el-table-column :label="$t('user.index.098976-10')" align="left" key="userName" prop="userName" v-if="columns[1].visible" :show-overflow-tooltip="true" min-width="200" />
|
|
<el-table-column :label="$t('user.index.098976-11')" align="left" key="nickName" prop="nickName" v-if="columns[2].visible" :show-overflow-tooltip="true" min-width="200" />
|
|
<el-table-column :label="$t('user.index.098976-12')" align="left" key="deptName" prop="dept.deptName" v-if="columns[3].visible" :show-overflow-tooltip="true" min-width="200" />
|
|
<el-table-column :label="$t('user.index.098976-13')" align="left" key="phonenumber" prop="phonenumber" v-if="columns[4].visible" width="120" />
|
|
<el-table-column :label="$t('status')" align="center" key="status" v-if="columns[5].visible" width="100">
|
|
<template slot-scope="scope">
|
|
<el-switch v-model="scope.row.status" active-value="0" inactive-value="1" @change="handleStatusChange(scope.row)"></el-switch>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :label="$t('creatTime')" align="center" prop="createTime" v-if="columns[6].visible" width="160">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column fixed="right" :label="$t('opation')" align="center" class-name="small-padding fixed-width" width="280">
|
|
<template slot-scope="scope" v-if="scope.row.userId !== 1">
|
|
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['system:user:edit']">{{ $t('update') }}</el-button>
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['system:user:remove']" :disabled="scope.row.manager === true">
|
|
{{ $t('del') }}
|
|
</el-button>
|
|
<el-button size="mini" type="text" icon="el-icon-key" v-hasPermi="['system:user:resetPwd']" @click="handleResetPwd(scope.row)">{{ $t('user.index.098976-15') }}</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
<pagination style="margin-bottom: 20px" v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
|
|
</el-card>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<!-- 添加或修改用户配置对话框 -->
|
|
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
|
|
<div style="margin-top: -55px">
|
|
<el-divider style="margin-top: -30px"></el-divider>
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
<el-form-item :label="$t('user.index.098976-11')" prop="nickName">
|
|
<el-input v-model="form.nickName" :placeholder="$t('user.index.098976-16')" maxlength="30" />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('user.index.098976-12')" prop="deptId">
|
|
<treeselect
|
|
v-model="form.deptId"
|
|
:options="deptOptions"
|
|
:show-count="true"
|
|
:placeholder="$t('user.index.098976-17')"
|
|
:disabled="(this.isEdit == true && form.userId != null) || (this.idEditDept == null && form.userId != null)"
|
|
@select="(node) => getRoleList(node)"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('user.index.098976-3')" prop="phonenumber">
|
|
<el-input v-model="form.phonenumber" :placeholder="$t('user.index.098976-18')" maxlength="11" />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('user.index.098976-19')" prop="email">
|
|
<el-input v-model="form.email" :placeholder="$t('user.index.098976-20')" maxlength="50" />
|
|
</el-form-item>
|
|
<el-form-item v-if="form.userId == null" :label="$t('user.index.098976-10')" prop="userName">
|
|
<el-input v-model="form.userName" :placeholder="$t('user.index.098976-2')" maxlength="30" />
|
|
</el-form-item>
|
|
<el-form-item v-if="form.userId == null" :label="$t('user.index.098976-21')" prop="password">
|
|
<el-input v-model="form.password" :placeholder="$t('user.index.098976-22')" type="password" maxlength="20" show-password />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('user.index.098976-5')" prop="status">
|
|
<el-radio-group v-model="form.status" :disabled="this.isEdit == true && form.userId != null">
|
|
<el-radio v-for="dict in dict.type.sys_normal_disable" :key="dict.value" :label="dict.value">{{ dict.label }}</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('user.index.098976-23')" prop="roleIds">
|
|
<el-select v-model="form.roleIds" multiple :placeholder="$t('user.index.098976-24')" style="width: 100%" :disabled="this.isEdit == true && form.userId != null">
|
|
<el-option v-for="item in roleOptions" :key="item.roleId" :label="item.roleName" :value="item.roleId" :disabled="item.status == 1"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('remark')">
|
|
<el-input v-model="form.remark" type="textarea" :placeholder="$t('plzInput')"></el-input>
|
|
</el-form-item>
|
|
</el-form>
|
|
</div>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="submitForm">{{ $t('confirm') }}</el-button>
|
|
<el-button @click="cancel">{{ $t('cancel') }}</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
|
|
<!-- 用户导入对话框 -->
|
|
<el-dialog :title="upload.title" :visible.sync="upload.open" width="500px" append-to-body>
|
|
<div style="margin-top: -55px">
|
|
<el-divider style="margin-top: -30px"></el-divider>
|
|
<el-upload
|
|
ref="upload"
|
|
:limit="1"
|
|
accept=".xlsx, .xls"
|
|
:headers="upload.headers"
|
|
:action="upload.url + '?updateSupport=' + upload.updateSupport"
|
|
:disabled="upload.isUploading"
|
|
:on-progress="handleFileUploadProgress"
|
|
:on-success="handleFileSuccess"
|
|
:auto-upload="false"
|
|
drag
|
|
>
|
|
<i class="el-icon-upload"></i>
|
|
<div class="el-upload__text">
|
|
{{ $t('dragFileTips') }}
|
|
<em>{{ $t('clickFileTips') }}</em>
|
|
</div>
|
|
<div class="el-upload__tip" slot="tip">
|
|
<div class="el-upload__tip" slot="tip" style="margin-top: 10px">
|
|
<el-checkbox v-model="upload.updateSupport" />
|
|
{{ $t('user.index.098976-25') }}
|
|
</div>
|
|
<div style="margin-top: 10px">
|
|
<span>{{ $t('user.index.098976-26') }}</span>
|
|
<el-link type="primary" :underline="false" style="font-size: 12px; vertical-align: baseline" @click="importTemplate">{{ $t('user.index.098976-27') }}</el-link>
|
|
</div>
|
|
</div>
|
|
</el-upload>
|
|
</div>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="submitFileForm">{{ $t('confirm') }}</el-button>
|
|
<el-button @click="upload.open = false">{{ $t('cancel') }}</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { listUser, getUser, delUser, addUser, updateUser, resetUserPwd, changeUserStatus, deptsTreeSelect, getRole } from '@/api/system/user';
|
|
import { getToken } from '@/utils/auth';
|
|
import Treeselect from '@riophae/vue-treeselect';
|
|
import '@riophae/vue-treeselect/dist/vue-treeselect.css';
|
|
|
|
export default {
|
|
name: 'User',
|
|
dicts: ['sys_normal_disable'],
|
|
components: { Treeselect },
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 用户表格数据
|
|
userList: null,
|
|
// 弹出层标题
|
|
title: '',
|
|
// 机构树选项
|
|
deptOptions: undefined,
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 归属机构
|
|
deptName: undefined,
|
|
// 默认密码
|
|
initPassword: undefined,
|
|
//判断是否为机构管理员
|
|
isEdit: true,
|
|
//归属机构是否可选
|
|
idEditDept: null,
|
|
// 日期范围
|
|
dateRange: [],
|
|
// 角色选项
|
|
roleOptions: [],
|
|
// 表单参数
|
|
form: {},
|
|
defaultProps: {
|
|
children: 'children',
|
|
label: 'label',
|
|
},
|
|
// 用户导入参数
|
|
upload: {
|
|
// 是否显示弹出层(用户导入)
|
|
open: false,
|
|
// 弹出层标题(用户导入)
|
|
title: '',
|
|
// 是否禁用上传
|
|
isUploading: false,
|
|
// 是否更新已经存在的用户数据
|
|
updateSupport: 0,
|
|
// 设置上传的请求头部
|
|
headers: { Authorization: 'Bearer ' + getToken() },
|
|
// 上传的地址
|
|
url: process.env.VUE_APP_BASE_API + '/system/user/importData',
|
|
},
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
userName: undefined,
|
|
phonenumber: undefined,
|
|
status: undefined,
|
|
deptId: undefined,
|
|
showChild: true,
|
|
},
|
|
//用户类型
|
|
options: [
|
|
{
|
|
value: true,
|
|
label: this.$t('user.index.098976-28'),
|
|
},
|
|
{
|
|
value: false,
|
|
label: this.$t('user.index.098976-29'),
|
|
},
|
|
],
|
|
|
|
// 列信息
|
|
columns: [
|
|
{ key: 0, label: this.$t('user.index.098976-30'), visible: true },
|
|
{ key: 1, label: this.$t('user.index.098976-10'), visible: true },
|
|
{ key: 2, label: this.$t('user.index.098976-11'), visible: true },
|
|
{ key: 3, label: this.$t('user.index.098976-29'), visible: true },
|
|
{ key: 4, label: this.$t('user.index.098976-3'), visible: true },
|
|
{ key: 5, label: this.$t('user.index.098976-5'), visible: true },
|
|
{ key: 6, label: this.$t('creatTime'), visible: true },
|
|
],
|
|
// 表单校验
|
|
rules: {
|
|
userName: [
|
|
{ required: true, message: this.$t('user.index.098976-31'), trigger: 'blur' },
|
|
{ min: 2, max: 20, message: this.$t('user.index.098976-32'), trigger: 'blur' },
|
|
],
|
|
nickName: [{ required: true, message: this.$t('user.index.098976-33'), trigger: 'blur' }],
|
|
password: [
|
|
{ required: true, message: this.$t('user.index.098976-34'), trigger: 'blur' },
|
|
{ min: 5, max: 20, message: this.$t('user.index.098976-35'), trigger: 'blur' },
|
|
],
|
|
roleIds: [{ required: true, message: this.$t('user.index.098976-36'), trigger: 'change' }],
|
|
status: [{ required: true }],
|
|
email: [
|
|
{
|
|
type: 'email',
|
|
message: this.$t('user.index.098976-37'),
|
|
trigger: ['blur', 'change'],
|
|
},
|
|
],
|
|
phonenumber: [
|
|
{ required: true, message: this.$t('user.index.098976-38'), trigger: 'blur' },
|
|
{
|
|
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
|
message: this.$t('user.index.098976-39'),
|
|
trigger: 'blur',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
},
|
|
watch: {
|
|
// 根据名称筛选机构树
|
|
deptName(val) {
|
|
this.$refs.tree.filter(val);
|
|
},
|
|
},
|
|
created() {
|
|
const deptId = this.$route.params && this.$route.params.deptId;
|
|
if (deptId) {
|
|
this.queryParams.deptId = deptId;
|
|
this.getList();
|
|
} else {
|
|
this.getList();
|
|
}
|
|
this.getDeptTree();
|
|
},
|
|
methods: {
|
|
/** 查询用户列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
this.form.deptId = this.queryParams.deptId;
|
|
listUser(this.addDateRange(this.queryParams, this.dateRange)).then((response) => {
|
|
this.userList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
/** 查询机构下拉树结构 */
|
|
getDeptTree() {
|
|
deptsTreeSelect().then((response) => {
|
|
this.deptOptions = response.data;
|
|
});
|
|
},
|
|
// 筛选节点
|
|
filterNode(value, data) {
|
|
if (!value) return true;
|
|
return data.label.indexOf(value) !== -1;
|
|
},
|
|
// 节点单击事件
|
|
handleNodeClick(data) {
|
|
this.queryParams.deptId = data.id;
|
|
this.handleQuery();
|
|
},
|
|
// 用户状态修改
|
|
handleStatusChange(row) {
|
|
let text = row.status === '0' ? this.$t('simulate.index.111543-54') : this.$t('simulate.index.111543-55');
|
|
this.$modal
|
|
.confirm(this.$t('user.index.098976-40') + text + '""' + row.userName + this.$t('user.index.098976-41'))
|
|
.then(function () {
|
|
return changeUserStatus(row.userId, row.status);
|
|
})
|
|
.then(() => {
|
|
this.$modal.msgSuccess(text + this.$t('success'));
|
|
})
|
|
.catch(function () {
|
|
row.status = row.status === '0' ? '1' : '0';
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
userId: null,
|
|
deptId: undefined,
|
|
userName: undefined,
|
|
nickName: undefined,
|
|
password: undefined,
|
|
phonenumber: undefined,
|
|
email: undefined,
|
|
sex: undefined,
|
|
status: '0',
|
|
remark: undefined,
|
|
postIds: [],
|
|
roleIds: [],
|
|
};
|
|
this.resetForm('form');
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.dateRange = [];
|
|
this.resetForm('queryForm');
|
|
this.queryParams.deptId = undefined;
|
|
this.$refs.tree.setCurrentKey(null);
|
|
this.handleQuery();
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = '添加用户';
|
|
this.form.deptId = this.queryParams.deptId;
|
|
if (this.form.deptId != undefined) {
|
|
getRole(this.form.deptId).then((response) => {
|
|
this.roleOptions = response.roles;
|
|
});
|
|
}
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset();
|
|
const userId = row.userId || this.ids;
|
|
getUser(userId).then((response) => {
|
|
this.isEdit = row.manager;
|
|
this.idEditDept = row.deptId;
|
|
this.form = response.data;
|
|
this.roleOptions = response.roles;
|
|
this.$set(this.form, 'postIds', response.postIds);
|
|
this.$set(this.form, 'roleIds', response.roleIds);
|
|
this.open = true;
|
|
this.title = this.$t('user.index.098976-43');
|
|
this.form.password = '';
|
|
});
|
|
},
|
|
// 根据机构查询角色列表
|
|
getRoleList(node) {
|
|
this.form.deptId = node.id;
|
|
if (this.form.deptId != undefined && this.form.deptId != null) {
|
|
if (this.isEdit == false && this.form.userId != 0) {
|
|
this.form.roleIds = [];
|
|
}
|
|
const deptId = this.form.deptId;
|
|
getRole(deptId).then((response) => {
|
|
this.roleOptions = response.roles;
|
|
});
|
|
}
|
|
},
|
|
/** 重置密码按钮操作 */
|
|
handleResetPwd(row) {
|
|
this.$prompt(this.$t('user.index.098976-44') + row.userName + this.$t('user.index.098976-45'), this.$t('user.index.098976-46'), {
|
|
confirmButtonText: this.$t('confirm'),
|
|
cancelButtonText: this.$t('cancel'),
|
|
closeOnClickModal: false,
|
|
inputPattern: /^.{5,20}$/,
|
|
inputErrorMessage: this.$t('user.index.098976-35'),
|
|
})
|
|
.then(({ value }) => {
|
|
resetUserPwd(row.userId, value).then((response) => {
|
|
this.$modal.msgSuccess(this.$t('user.index.098976-47') + value);
|
|
});
|
|
})
|
|
.catch(() => {});
|
|
},
|
|
/** 分配角色操作 */
|
|
// handleAuthRole: function (row) {
|
|
// const userId = row.userId;
|
|
// this.$router.push("/system/user-auth/role/" + userId);
|
|
// },
|
|
/** 提交按钮 */
|
|
submitForm: function () {
|
|
this.$refs['form'].validate((valid) => {
|
|
if (valid) {
|
|
if (this.form.userId != undefined) {
|
|
updateUser(this.form).then((response) => {
|
|
this.$modal.msgSuccess(this.$t('updateSuccess'));
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
addUser(this.form).then((response) => {
|
|
this.$modal.msgSuccess(this.$t('addSuccess'));
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const userIds = row.userId || this.ids;
|
|
this.$modal
|
|
.confirm(this.$t('user.index.098976-48', [userIds]))
|
|
.then(function () {
|
|
return delUser(userIds);
|
|
})
|
|
.then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess(this.$t('delSuccess'));
|
|
})
|
|
.catch(() => {});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download(
|
|
'system/user/export',
|
|
{
|
|
...this.queryParams,
|
|
},
|
|
`user_${new Date().getTime()}.xlsx`
|
|
);
|
|
},
|
|
/** 导入按钮操作 */
|
|
handleImport() {
|
|
this.upload.title = this.$t('user.index.098976-49');
|
|
this.upload.open = true;
|
|
},
|
|
/** 下载模板操作 */
|
|
importTemplate() {
|
|
this.download('system/user/importTemplate', {}, `user_template_${new Date().getTime()}.xlsx`);
|
|
},
|
|
// 文件上传中处理
|
|
handleFileUploadProgress(event, file, fileList) {
|
|
this.upload.isUploading = true;
|
|
},
|
|
// 文件上传成功处理
|
|
handleFileSuccess(response, file, fileList) {
|
|
this.upload.open = false;
|
|
this.upload.isUploading = false;
|
|
this.$refs.upload.clearFiles();
|
|
this.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + '</div>', '导入结果', { dangerouslyUseHTMLString: true });
|
|
this.getList();
|
|
},
|
|
// 提交上传文件
|
|
submitFileForm() {
|
|
this.$refs.upload.submit();
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.system-user {
|
|
padding: 20px;
|
|
|
|
.tree-wrap {
|
|
height: 730px;
|
|
overflow-x: auto;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.table-wrap {
|
|
height: 545px;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
}
|
|
</style>
|