|
|
@@ -1,215 +1,236 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
- <el-row :gutter="20">
|
|
|
+ <a-row :gutter="20">
|
|
|
<splitpanes :horizontal="appStore.device === 'mobile'" class="default-theme">
|
|
|
<!--部门数据-->
|
|
|
<pane size="16">
|
|
|
- <el-col>
|
|
|
+ <a-col>
|
|
|
<div class="head-container">
|
|
|
- <el-input v-model="deptName" placeholder="请输入部门名称" clearable prefix-icon="Search" style="margin-bottom: 20px" />
|
|
|
+ <a-input v-model:value="deptName" placeholder="请输入部门名称" allow-clear style="margin-bottom: 20px">
|
|
|
+ <template #prefix><SearchOutlined /></template>
|
|
|
+ </a-input>
|
|
|
</div>
|
|
|
<div class="head-container">
|
|
|
- <el-tree :data="deptOptions" :props="{ label: 'label', children: 'children' }" :expand-on-click-node="false" :filter-node-method="filterNode" ref="deptTreeRef" node-key="id" highlight-current default-expand-all @node-click="handleNodeClick" />
|
|
|
+ <a-tree
|
|
|
+ :tree-data="deptOptions"
|
|
|
+ :field-names="{ title: 'label', key: 'id', children: 'children' }"
|
|
|
+ :filter-tree-node="filterNode"
|
|
|
+ :search-value="deptName"
|
|
|
+ ref="deptTreeRef"
|
|
|
+ default-expand-all
|
|
|
+ @select="handleNodeClick"
|
|
|
+ />
|
|
|
</div>
|
|
|
- </el-col>
|
|
|
+ </a-col>
|
|
|
</pane>
|
|
|
<!--用户数据-->
|
|
|
<pane size="84">
|
|
|
- <el-col>
|
|
|
- <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
- <el-form-item label="用户名称" prop="userName">
|
|
|
- <el-input v-model="queryParams.userName" placeholder="请输入用户名称" clearable style="width: 240px" @keyup.enter="handleQuery" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="手机号码" prop="phonenumber">
|
|
|
- <el-input v-model="queryParams.phonenumber" placeholder="请输入手机号码" clearable style="width: 240px" @keyup.enter="handleQuery" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="状态" prop="status">
|
|
|
- <el-select v-model="queryParams.status" placeholder="用户状态" clearable style="width: 240px">
|
|
|
- <el-option v-for="dict in sys_normal_disable" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="创建时间" style="width: 308px">
|
|
|
- <el-date-picker v-model="dateRange" value-format="YYYY-MM-DD" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item>
|
|
|
- <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
- <el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
-
|
|
|
- <el-row :gutter="10" class="mb8">
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['system:user:add']">新增</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate" v-hasPermi="['system:user:edit']">修改</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete" v-hasPermi="['system:user:remove']">删除</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button type="info" plain icon="Upload" @click="handleImport" v-hasPermi="['system:user:import']">导入</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['system:user:export']">导出</el-button>
|
|
|
- </el-col>
|
|
|
+ <a-col>
|
|
|
+ <a-form :model="queryParams" ref="queryRef" layout="inline" v-show="showSearch">
|
|
|
+ <a-form-item label="用户名称" name="userName">
|
|
|
+ <a-input v-model:value="queryParams.userName" placeholder="请输入用户名称" allow-clear style="width: 240px" @pressEnter="handleQuery" />
|
|
|
+ </a-form-item>
|
|
|
+ <a-form-item label="手机号码" name="phonenumber">
|
|
|
+ <a-input v-model:value="queryParams.phonenumber" placeholder="请输入手机号码" allow-clear style="width: 240px" @pressEnter="handleQuery" />
|
|
|
+ </a-form-item>
|
|
|
+ <a-form-item label="状态" name="status">
|
|
|
+ <a-select v-model:value="queryParams.status" placeholder="用户状态" allow-clear style="width: 240px">
|
|
|
+ <a-select-option v-for="dict in sys_normal_disable" :key="dict.value" :value="dict.value">{{ dict.label }}</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-item>
|
|
|
+ <a-form-item label="创建时间">
|
|
|
+ <a-range-picker v-model:value="dateRange" value-format="YYYY-MM-DD" style="width: 308px" />
|
|
|
+ </a-form-item>
|
|
|
+ <a-form-item>
|
|
|
+ <a-button type="primary" @click="handleQuery"><SearchOutlined />搜索</a-button>
|
|
|
+ <a-button style="margin-left: 8px" @click="resetQuery"><ReloadOutlined />重置</a-button>
|
|
|
+ </a-form-item>
|
|
|
+ </a-form>
|
|
|
+
|
|
|
+ <a-row :gutter="10" class="mb8">
|
|
|
+ <a-col :span="1.5">
|
|
|
+ <a-button type="primary" @click="handleAdd" v-hasPermi="['system:user:add']"><PlusOutlined />新增</a-button>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="1.5">
|
|
|
+ <a-button type="primary" :disabled="single" @click="handleUpdate" v-hasPermi="['system:user:edit']" style="background-color: #52c41a; border-color: #52c41a"><EditOutlined />修改</a-button>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="1.5">
|
|
|
+ <a-button danger :disabled="multiple" @click="handleDelete" v-hasPermi="['system:user:remove']"><DeleteOutlined />删除</a-button>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="1.5">
|
|
|
+ <a-button @click="handleImport" v-hasPermi="['system:user:import']"><UploadOutlined />导入</a-button>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="1.5">
|
|
|
+ <a-button type="primary" style="background-color: #faad14; border-color: #faad14" @click="handleExport" v-hasPermi="['system:user:export']"><DownloadOutlined />导出</a-button>
|
|
|
+ </a-col>
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
|
|
|
- </el-row>
|
|
|
-
|
|
|
- <el-table v-loading="loading" :data="userList" @selection-change="handleSelectionChange">
|
|
|
- <el-table-column type="selection" width="50" align="center" />
|
|
|
- <el-table-column label="用户编号" align="center" key="userId" prop="userId" v-if="columns.userId.visible" />
|
|
|
- <el-table-column label="用户名称" align="center" key="userName" prop="userName" v-if="columns.userName.visible" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column label="用户昵称" align="center" key="nickName" prop="nickName" v-if="columns.nickName.visible" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column label="部门" align="center" key="deptName" prop="dept.deptName" v-if="columns.deptName.visible" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column label="手机号码" align="center" key="phonenumber" prop="phonenumber" v-if="columns.phonenumber.visible" width="120" />
|
|
|
- <el-table-column label="状态" align="center" key="status" v-if="columns.status.visible">
|
|
|
- <template #default="scope">
|
|
|
- <el-switch
|
|
|
- v-model="scope.row.status"
|
|
|
- active-value="0"
|
|
|
- inactive-value="1"
|
|
|
- @change="handleStatusChange(scope.row)"
|
|
|
- ></el-switch>
|
|
|
+ </a-row>
|
|
|
+
|
|
|
+ <a-table
|
|
|
+ :loading="loading"
|
|
|
+ :data-source="userList"
|
|
|
+ :columns="tableColumns"
|
|
|
+ :row-selection="{ selectedRowKeys: selectedRowKeys, onChange: handleSelectionChange }"
|
|
|
+ :row-key="record => record.userId"
|
|
|
+ :pagination="false"
|
|
|
+ >
|
|
|
+ <template #bodyCell="{ column, record }">
|
|
|
+ <template v-if="column.key === 'status'">
|
|
|
+ <a-switch
|
|
|
+ :checked="record.status === '0'"
|
|
|
+ @change="(checked) => handleStatusChange(record, checked)"
|
|
|
+ />
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="创建时间" align="center" prop="createTime" v-if="columns.createTime.visible" width="160">
|
|
|
- <template #default="scope">
|
|
|
- <span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
+ <template v-else-if="column.key === 'createTime'">
|
|
|
+ <span>{{ parseTime(record.createTime) }}</span>
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="操作" align="center" width="150" class-name="small-padding fixed-width">
|
|
|
- <template #default="scope">
|
|
|
- <el-tooltip content="修改" placement="top" v-if="scope.row.userId !== 1">
|
|
|
- <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['system:user:edit']"></el-button>
|
|
|
- </el-tooltip>
|
|
|
- <el-tooltip content="删除" placement="top" v-if="scope.row.userId !== 1">
|
|
|
- <el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['system:user:remove']"></el-button>
|
|
|
- </el-tooltip>
|
|
|
- <el-tooltip content="重置密码" placement="top" v-if="scope.row.userId !== 1">
|
|
|
- <el-button link type="primary" icon="Key" @click="handleResetPwd(scope.row)" v-hasPermi="['system:user:resetPwd']"></el-button>
|
|
|
- </el-tooltip>
|
|
|
- <el-tooltip content="分配角色" placement="top" v-if="scope.row.userId !== 1">
|
|
|
- <el-button link type="primary" icon="CircleCheck" @click="handleAuthRole(scope.row)" v-hasPermi="['system:user:edit']"></el-button>
|
|
|
- </el-tooltip>
|
|
|
+ <template v-else-if="column.key === 'action'">
|
|
|
+ <a-tooltip title="修改" v-if="record.userId !== 1">
|
|
|
+ <a-button type="link" size="small" @click="handleUpdate(record)" v-hasPermi="['system:user:edit']"><EditOutlined /></a-button>
|
|
|
+ </a-tooltip>
|
|
|
+ <a-tooltip title="删除" v-if="record.userId !== 1">
|
|
|
+ <a-button type="link" size="small" danger @click="handleDelete(record)" v-hasPermi="['system:user:remove']"><DeleteOutlined /></a-button>
|
|
|
+ </a-tooltip>
|
|
|
+ <a-tooltip title="重置密码" v-if="record.userId !== 1">
|
|
|
+ <a-button type="link" size="small" @click="handleResetPwd(record)" v-hasPermi="['system:user:resetPwd']"><KeyOutlined /></a-button>
|
|
|
+ </a-tooltip>
|
|
|
+ <a-tooltip title="分配角色" v-if="record.userId !== 1">
|
|
|
+ <a-button type="link" size="small" @click="handleAuthRole(record)" v-hasPermi="['system:user:edit']"><CheckCircleOutlined /></a-button>
|
|
|
+ </a-tooltip>
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
- </el-table>
|
|
|
+ </template>
|
|
|
+ </a-table>
|
|
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
|
|
- </el-col>
|
|
|
+ </a-col>
|
|
|
</pane>
|
|
|
</splitpanes>
|
|
|
- </el-row>
|
|
|
+ </a-row>
|
|
|
|
|
|
<!-- 添加或修改用户配置对话框 -->
|
|
|
- <el-dialog :title="title" v-model="open" width="600px" append-to-body>
|
|
|
- <el-form :model="form" :rules="rules" ref="userRef" label-width="80px">
|
|
|
- <el-row>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="用户昵称" prop="nickName">
|
|
|
- <el-input v-model="form.nickName" placeholder="请输入用户昵称" maxlength="30" />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="归属部门" prop="deptId">
|
|
|
- <el-tree-select v-model="form.deptId" :data="enabledDeptOptions" :props="{ value: 'id', label: 'label', children: 'children' }" value-key="id" placeholder="请选择归属部门" clearable check-strictly />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- <el-row>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="手机号码" prop="phonenumber">
|
|
|
- <el-input v-model="form.phonenumber" placeholder="请输入手机号码" maxlength="11" />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="邮箱" prop="email">
|
|
|
- <el-input v-model="form.email" placeholder="请输入邮箱" maxlength="50" />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- <el-row>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item v-if="form.userId == undefined" label="用户名称" prop="userName">
|
|
|
- <el-input v-model="form.userName" placeholder="请输入用户名称" maxlength="30" />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item v-if="form.userId == undefined" label="用户密码" prop="password">
|
|
|
- <el-input v-model="form.password" placeholder="请输入用户密码" type="password" maxlength="20" show-password />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- <el-row>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="用户性别">
|
|
|
- <el-select v-model="form.sex" placeholder="请选择">
|
|
|
- <el-option v-for="dict in sys_user_sex" :key="dict.value" :label="dict.label" :value="dict.value"></el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="状态">
|
|
|
- <el-radio-group v-model="form.status">
|
|
|
- <el-radio v-for="dict in sys_normal_disable" :key="dict.value" :value="dict.value">{{ dict.label }}</el-radio>
|
|
|
- </el-radio-group>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- <el-row>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="岗位">
|
|
|
- <el-select v-model="form.postIds" multiple placeholder="请选择">
|
|
|
- <el-option v-for="item in postOptions" :key="item.postId" :label="item.postName" :value="item.postId" :disabled="item.status == 1"></el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="角色">
|
|
|
- <el-select v-model="form.roleIds" multiple placeholder="请选择">
|
|
|
- <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-col>
|
|
|
- </el-row>
|
|
|
- <el-row>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="备注">
|
|
|
- <el-input v-model="form.remark" type="textarea" placeholder="请输入内容"></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- </el-form>
|
|
|
+ <a-modal :title="title" v-model:open="open" width="600px" :footer="null">
|
|
|
+ <a-form :model="form" :rules="rules" ref="userRef" :label-col="{ span: 6 }" :wrapper-col="{ span: 16 }">
|
|
|
+ <a-row>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-form-item label="用户昵称" name="nickName">
|
|
|
+ <a-input v-model:value="form.nickName" placeholder="请输入用户昵称" :maxlength="30" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-form-item label="归属部门" name="deptId">
|
|
|
+ <a-tree-select
|
|
|
+ v-model:value="form.deptId"
|
|
|
+ :tree-data="enabledDeptOptions"
|
|
|
+ :field-names="{ value: 'id', label: 'label', children: 'children' }"
|
|
|
+ placeholder="请选择归属部门"
|
|
|
+ allow-clear
|
|
|
+ tree-default-expand-all
|
|
|
+ />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ <a-row>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-form-item label="手机号码" name="phonenumber">
|
|
|
+ <a-input v-model:value="form.phonenumber" placeholder="请输入手机号码" :maxlength="11" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-form-item label="邮箱" name="email">
|
|
|
+ <a-input v-model:value="form.email" placeholder="请输入邮箱" :maxlength="50" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ <a-row>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-form-item v-if="form.userId == undefined" label="用户名称" name="userName">
|
|
|
+ <a-input v-model:value="form.userName" placeholder="请输入用户名称" :maxlength="30" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-form-item v-if="form.userId == undefined" label="用户密码" name="password">
|
|
|
+ <a-input-password v-model:value="form.password" placeholder="请输入用户密码" :maxlength="20" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ <a-row>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-form-item label="用户性别">
|
|
|
+ <a-select v-model:value="form.sex" placeholder="请选择">
|
|
|
+ <a-select-option v-for="dict in sys_user_sex" :key="dict.value" :value="dict.value">{{ dict.label }}</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-form-item label="状态">
|
|
|
+ <a-radio-group v-model:value="form.status">
|
|
|
+ <a-radio v-for="dict in sys_normal_disable" :key="dict.value" :value="dict.value">{{ dict.label }}</a-radio>
|
|
|
+ </a-radio-group>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ <a-row>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-form-item label="岗位">
|
|
|
+ <a-select v-model:value="form.postIds" mode="multiple" placeholder="请选择">
|
|
|
+ <a-select-option v-for="item in postOptions" :key="item.postId" :value="item.postId" :disabled="item.status == 1">{{ item.postName }}</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-form-item label="角色">
|
|
|
+ <a-select v-model:value="form.roleIds" mode="multiple" placeholder="请选择">
|
|
|
+ <a-select-option v-for="item in roleOptions" :key="item.roleId" :value="item.roleId" :disabled="item.status == 1">{{ item.roleName }}</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ <a-row>
|
|
|
+ <a-col :span="24">
|
|
|
+ <a-form-item label="备注" :label-col="{ span: 3 }" :wrapper-col="{ span: 20 }">
|
|
|
+ <a-textarea v-model:value="form.remark" placeholder="请输入内容" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ </a-form>
|
|
|
<template #footer>
|
|
|
<div class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
- <el-button @click="cancel">取 消</el-button>
|
|
|
+ <a-button type="primary" @click="submitForm">确 定</a-button>
|
|
|
+ <a-button @click="cancel">取 消</a-button>
|
|
|
</div>
|
|
|
</template>
|
|
|
- </el-dialog>
|
|
|
+ </a-modal>
|
|
|
|
|
|
<!-- 用户导入对话框 -->
|
|
|
- <el-dialog :title="upload.title" v-model="upload.open" width="400px" append-to-body>
|
|
|
- <el-upload ref="uploadRef" :limit="1" accept=".xlsx, .xls" :headers="upload.headers" :action="upload.url + '?updateSupport=' + upload.updateSupport" :disabled="upload.isUploading" :on-progress="handleFileUploadProgress" :on-success="handleFileSuccess" :on-change="handleFileChange" :on-remove="handleFileRemove" :auto-upload="false" drag>
|
|
|
- <el-icon class="el-icon--upload"><upload-filled /></el-icon>
|
|
|
- <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
|
|
|
- <template #tip>
|
|
|
- <div class="el-upload__tip text-center">
|
|
|
- <div class="el-upload__tip">
|
|
|
- <el-checkbox v-model="upload.updateSupport" />是否更新已经存在的用户数据
|
|
|
- </div>
|
|
|
- <span>仅允许导入xls、xlsx格式文件。</span>
|
|
|
- <el-link type="primary" :underline="false" style="font-size: 12px; vertical-align: baseline" @click="importTemplate">下载模板</el-link>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-upload>
|
|
|
+ <a-modal :title="upload.title" v-model:open="upload.open" width="400px">
|
|
|
+ <a-upload-dragger
|
|
|
+ ref="uploadRef"
|
|
|
+ :max-count="1"
|
|
|
+ accept=".xlsx, .xls"
|
|
|
+ :headers="upload.headers"
|
|
|
+ :action="upload.url + '?updateSupport=' + upload.updateSupport"
|
|
|
+ :disabled="upload.isUploading"
|
|
|
+ :before-upload="handleBeforeUpload"
|
|
|
+ @change="handleUploadChange"
|
|
|
+ >
|
|
|
+ <p class="ant-upload-drag-icon">
|
|
|
+ <InboxOutlined />
|
|
|
+ </p>
|
|
|
+ <p class="ant-upload-text">将文件拖到此处,或<em>点击上传</em></p>
|
|
|
+ <p class="ant-upload-hint">
|
|
|
+ <a-checkbox v-model:checked="upload.updateSupport" :true-value="1" :false-value="0" />是否更新已经存在的用户数据
|
|
|
+ </p>
|
|
|
+ <p class="ant-upload-hint">
|
|
|
+ 仅允许导入xls、xlsx格式文件。
|
|
|
+ <a @click.stop="importTemplate" style="color: #1890ff">下载模板</a>
|
|
|
+ </p>
|
|
|
+ </a-upload-dragger>
|
|
|
<template #footer>
|
|
|
<div class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitFileForm">确 定</el-button>
|
|
|
- <el-button @click="upload.open = false">取 消</el-button>
|
|
|
+ <a-button type="primary" @click="submitFileForm">确 定</a-button>
|
|
|
+ <a-button @click="upload.open = false">取 消</a-button>
|
|
|
</div>
|
|
|
</template>
|
|
|
- </el-dialog>
|
|
|
+ </a-modal>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
@@ -219,6 +240,11 @@ import useAppStore from '@/store/modules/app'
|
|
|
import { changeUserStatus, listUser, resetUserPwd, delUser, getUser, updateUser, addUser, deptTreeSelect } from "@/api/system/user"
|
|
|
import { Splitpanes, Pane } from "splitpanes"
|
|
|
import "splitpanes/dist/splitpanes.css"
|
|
|
+import { Modal, message } from 'ant-design-vue'
|
|
|
+import {
|
|
|
+ SearchOutlined, ReloadOutlined, PlusOutlined, EditOutlined, DeleteOutlined,
|
|
|
+ UploadOutlined, DownloadOutlined, KeyOutlined, CheckCircleOutlined, InboxOutlined
|
|
|
+} from '@ant-design/icons-vue'
|
|
|
|
|
|
const router = useRouter()
|
|
|
const appStore = useAppStore()
|
|
|
@@ -230,14 +256,15 @@ const open = ref(false)
|
|
|
const loading = ref(true)
|
|
|
const showSearch = ref(true)
|
|
|
const ids = ref([])
|
|
|
+const selectedRowKeys = ref([])
|
|
|
const single = ref(true)
|
|
|
const multiple = ref(true)
|
|
|
const total = ref(0)
|
|
|
const title = ref("")
|
|
|
const dateRange = ref([])
|
|
|
const deptName = ref("")
|
|
|
-const deptOptions = ref(undefined)
|
|
|
-const enabledDeptOptions = ref(undefined)
|
|
|
+const deptOptions = ref([])
|
|
|
+const enabledDeptOptions = ref([])
|
|
|
const initPassword = ref(undefined)
|
|
|
const postOptions = ref([])
|
|
|
const roleOptions = ref([])
|
|
|
@@ -254,7 +281,9 @@ const upload = reactive({
|
|
|
// 设置上传的请求头部
|
|
|
headers: { Authorization: "Bearer " + getToken() },
|
|
|
// 上传的地址
|
|
|
- url: import.meta.env.VITE_APP_BASE_API + "/system/user/importData"
|
|
|
+ url: import.meta.env.VITE_APP_BASE_API + "/system/user/importData",
|
|
|
+ // 选中的文件
|
|
|
+ fileList: []
|
|
|
})
|
|
|
// 列显隐信息
|
|
|
const columns = ref({
|
|
|
@@ -267,6 +296,34 @@ const columns = ref({
|
|
|
createTime: { label: '创建时间', visible: true }
|
|
|
})
|
|
|
|
|
|
+// 表格列定义
|
|
|
+const tableColumns = computed(() => {
|
|
|
+ const cols = []
|
|
|
+ if (columns.value.userId.visible) {
|
|
|
+ cols.push({ title: '用户编号', dataIndex: 'userId', key: 'userId', align: 'center' })
|
|
|
+ }
|
|
|
+ if (columns.value.userName.visible) {
|
|
|
+ cols.push({ title: '用户名称', dataIndex: 'userName', key: 'userName', align: 'center', ellipsis: true })
|
|
|
+ }
|
|
|
+ if (columns.value.nickName.visible) {
|
|
|
+ cols.push({ title: '用户昵称', dataIndex: 'nickName', key: 'nickName', align: 'center', ellipsis: true })
|
|
|
+ }
|
|
|
+ if (columns.value.deptName.visible) {
|
|
|
+ cols.push({ title: '部门', dataIndex: ['dept', 'deptName'], key: 'deptName', align: 'center', ellipsis: true })
|
|
|
+ }
|
|
|
+ if (columns.value.phonenumber.visible) {
|
|
|
+ cols.push({ title: '手机号码', dataIndex: 'phonenumber', key: 'phonenumber', align: 'center', width: 120 })
|
|
|
+ }
|
|
|
+ if (columns.value.status.visible) {
|
|
|
+ cols.push({ title: '状态', key: 'status', align: 'center' })
|
|
|
+ }
|
|
|
+ if (columns.value.createTime.visible) {
|
|
|
+ cols.push({ title: '创建时间', key: 'createTime', align: 'center', width: 160 })
|
|
|
+ }
|
|
|
+ cols.push({ title: '操作', key: 'action', align: 'center', width: 150 })
|
|
|
+ return cols
|
|
|
+})
|
|
|
+
|
|
|
const data = reactive({
|
|
|
form: {},
|
|
|
queryParams: {
|
|
|
@@ -280,7 +337,7 @@ const data = reactive({
|
|
|
rules: {
|
|
|
userName: [{ required: true, message: "用户名称不能为空", trigger: "blur" }, { min: 2, max: 20, message: "用户名称长度必须介于 2 和 20 之间", trigger: "blur" }],
|
|
|
nickName: [{ required: true, message: "用户昵称不能为空", trigger: "blur" }],
|
|
|
- password: [{ required: true, message: "用户密码不能为空", trigger: "blur" }, { min: 5, max: 20, message: "用户密码长度必须介于 5 和 20 之间", trigger: "blur" }, { pattern: /^[^<>"'|\\]+$/, message: "不能包含非法字符:< > \" ' \\\ |", trigger: "blur" }],
|
|
|
+ password: [{ required: true, message: "用户密码不能为空", trigger: "blur" }, { min: 5, max: 20, message: "用户密码长度必须介于 5 和 20 之间", trigger: "blur" }, { pattern: /^[^<>"'|\\]+$/, message: "不能包含非法字符:< > \" ' \\ |", trigger: "blur" }],
|
|
|
email: [{ type: "email", message: "请输入正确的邮箱地址", trigger: ["blur", "change"] }],
|
|
|
phonenumber: [{ pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/, message: "请输入正确的手机号码", trigger: "blur" }]
|
|
|
}
|
|
|
@@ -289,20 +346,20 @@ const data = reactive({
|
|
|
const { queryParams, form, rules } = toRefs(data)
|
|
|
|
|
|
/** 通过条件过滤节点 */
|
|
|
-const filterNode = (value, data) => {
|
|
|
- if (!value) return true
|
|
|
- return data.label.indexOf(value) !== -1
|
|
|
+const filterNode = (node) => {
|
|
|
+ if (!deptName.value) return true
|
|
|
+ return node.label.indexOf(deptName.value) !== -1
|
|
|
}
|
|
|
|
|
|
-/** 根据名称筛选部门树 */
|
|
|
-watch(deptName, val => {
|
|
|
- proxy.$refs["deptTreeRef"].filter(val)
|
|
|
-})
|
|
|
-
|
|
|
/** 查询用户列表 */
|
|
|
function getList() {
|
|
|
loading.value = true
|
|
|
- listUser(proxy.addDateRange(queryParams.value, dateRange.value)).then(res => {
|
|
|
+ const params = { ...queryParams.value }
|
|
|
+ if (dateRange.value && dateRange.value.length === 2) {
|
|
|
+ params.beginTime = dateRange.value[0]
|
|
|
+ params.endTime = dateRange.value[1]
|
|
|
+ }
|
|
|
+ listUser(params).then(res => {
|
|
|
loading.value = false
|
|
|
userList.value = res.rows
|
|
|
total.value = res.total
|
|
|
@@ -331,8 +388,12 @@ function filterDisabledDept(deptList) {
|
|
|
}
|
|
|
|
|
|
/** 节点单击事件 */
|
|
|
-function handleNodeClick(data) {
|
|
|
- queryParams.value.deptId = data.id
|
|
|
+function handleNodeClick(selectedKeys, info) {
|
|
|
+ if (selectedKeys.length > 0) {
|
|
|
+ queryParams.value.deptId = selectedKeys[0]
|
|
|
+ } else {
|
|
|
+ queryParams.value.deptId = undefined
|
|
|
+ }
|
|
|
handleQuery()
|
|
|
}
|
|
|
|
|
|
@@ -345,21 +406,30 @@ function handleQuery() {
|
|
|
/** 重置按钮操作 */
|
|
|
function resetQuery() {
|
|
|
dateRange.value = []
|
|
|
- proxy.resetForm("queryRef")
|
|
|
- queryParams.value.deptId = undefined
|
|
|
- proxy.$refs.deptTreeRef.setCurrentKey(null)
|
|
|
+ queryParams.value = {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ userName: undefined,
|
|
|
+ phonenumber: undefined,
|
|
|
+ status: undefined,
|
|
|
+ deptId: undefined
|
|
|
+ }
|
|
|
handleQuery()
|
|
|
}
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
function handleDelete(row) {
|
|
|
const userIds = row.userId || ids.value
|
|
|
- proxy.$modal.confirm('是否确认删除用户编号为"' + userIds + '"的数据项?').then(function () {
|
|
|
- return delUser(userIds)
|
|
|
- }).then(() => {
|
|
|
- getList()
|
|
|
- proxy.$modal.msgSuccess("删除成功")
|
|
|
- }).catch(() => {})
|
|
|
+ Modal.confirm({
|
|
|
+ title: '提示',
|
|
|
+ content: '是否确认删除用户编号为"' + userIds + '"的数据项?',
|
|
|
+ onOk() {
|
|
|
+ return delUser(userIds).then(() => {
|
|
|
+ getList()
|
|
|
+ message.success("删除成功")
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
@@ -370,31 +440,24 @@ function handleExport() {
|
|
|
}
|
|
|
|
|
|
/** 用户状态修改 */
|
|
|
-function handleStatusChange(row) {
|
|
|
- let text = row.status === "0" ? "启用" : "停用"
|
|
|
- proxy.$modal.confirm('确认要"' + text + '""' + row.userName + '"用户吗?').then(function () {
|
|
|
- return changeUserStatus(row.userId, row.status)
|
|
|
- }).then(() => {
|
|
|
- proxy.$modal.msgSuccess(text + "成功")
|
|
|
- }).catch(function () {
|
|
|
- row.status = row.status === "0" ? "1" : "0"
|
|
|
+function handleStatusChange(row, checked) {
|
|
|
+ const newStatus = checked ? "0" : "1"
|
|
|
+ let text = newStatus === "0" ? "启用" : "停用"
|
|
|
+ Modal.confirm({
|
|
|
+ title: '提示',
|
|
|
+ content: '确认要"' + text + '""' + row.userName + '"用户吗?',
|
|
|
+ onOk() {
|
|
|
+ return changeUserStatus(row.userId, newStatus).then(() => {
|
|
|
+ row.status = newStatus
|
|
|
+ message.success(text + "成功")
|
|
|
+ })
|
|
|
+ },
|
|
|
+ onCancel() {
|
|
|
+ // 取消时不需要做任何事,因为 switch 状态由 :checked 控制
|
|
|
+ }
|
|
|
})
|
|
|
}
|
|
|
|
|
|
-/** 更多操作 */
|
|
|
-function handleCommand(command, row) {
|
|
|
- switch (command) {
|
|
|
- case "handleResetPwd":
|
|
|
- handleResetPwd(row)
|
|
|
- break
|
|
|
- case "handleAuthRole":
|
|
|
- handleAuthRole(row)
|
|
|
- break
|
|
|
- default:
|
|
|
- break
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
/** 跳转角色分配 */
|
|
|
function handleAuthRole(row) {
|
|
|
const userId = row.userId
|
|
|
@@ -403,36 +466,48 @@ function handleAuthRole(row) {
|
|
|
|
|
|
/** 重置密码按钮操作 */
|
|
|
function handleResetPwd(row) {
|
|
|
- proxy.$prompt('请输入"' + row.userName + '"的新密码', "提示", {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- closeOnClickModal: false,
|
|
|
- inputPattern: /^.{5,20}$/,
|
|
|
- inputErrorMessage: "用户密码长度必须介于 5 和 20 之间",
|
|
|
- inputValidator: (value) => {
|
|
|
+ const inputValue = ref('')
|
|
|
+ Modal.confirm({
|
|
|
+ title: '提示',
|
|
|
+ content: () => h('div', [
|
|
|
+ h('p', '请输入"' + row.userName + '"的新密码'),
|
|
|
+ h('input', {
|
|
|
+ type: 'password',
|
|
|
+ style: 'width: 100%; padding: 8px; border: 1px solid #d9d9d9; border-radius: 4px;',
|
|
|
+ value: inputValue.value,
|
|
|
+ onInput: (e) => { inputValue.value = e.target.value }
|
|
|
+ })
|
|
|
+ ]),
|
|
|
+ onOk() {
|
|
|
+ const value = inputValue.value
|
|
|
+ if (!value || value.length < 5 || value.length > 20) {
|
|
|
+ message.error("用户密码长度必须介于 5 和 20 之间")
|
|
|
+ return Promise.reject()
|
|
|
+ }
|
|
|
if (/<|>|"|'|\||\\/.test(value)) {
|
|
|
- return "不能包含非法字符:< > \" ' \\\ |"
|
|
|
+ message.error("不能包含非法字符:< > \" ' \\ |")
|
|
|
+ return Promise.reject()
|
|
|
}
|
|
|
- },
|
|
|
- }).then(({ value }) => {
|
|
|
- resetUserPwd(row.userId, value).then(response => {
|
|
|
- proxy.$modal.msgSuccess("修改成功,新密码是:" + value)
|
|
|
- })
|
|
|
- }).catch(() => {})
|
|
|
+ return resetUserPwd(row.userId, value).then(() => {
|
|
|
+ message.success("修改成功,新密码是:" + value)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
/** 选择条数 */
|
|
|
-function handleSelectionChange(selection) {
|
|
|
- ids.value = selection.map(item => item.userId)
|
|
|
- single.value = selection.length != 1
|
|
|
- multiple.value = !selection.length
|
|
|
+function handleSelectionChange(keys, rows) {
|
|
|
+ selectedRowKeys.value = keys
|
|
|
+ ids.value = keys
|
|
|
+ single.value = keys.length !== 1
|
|
|
+ multiple.value = keys.length === 0
|
|
|
}
|
|
|
|
|
|
/** 导入按钮操作 */
|
|
|
function handleImport() {
|
|
|
upload.title = "用户导入"
|
|
|
upload.open = true
|
|
|
- upload.selectedFile = null
|
|
|
+ upload.fileList = []
|
|
|
}
|
|
|
|
|
|
/** 下载模板操作 */
|
|
|
@@ -441,38 +516,67 @@ function importTemplate() {
|
|
|
}, `user_template_${new Date().getTime()}.xlsx`)
|
|
|
}
|
|
|
|
|
|
-/**文件上传中处理 */
|
|
|
-const handleFileUploadProgress = (event, file, fileList) => {
|
|
|
- upload.isUploading = true
|
|
|
-}
|
|
|
-
|
|
|
-/** 文件选择处理 */
|
|
|
-const handleFileChange = (file, fileList) => {
|
|
|
- upload.selectedFile = file
|
|
|
-}
|
|
|
-
|
|
|
-/** 文件删除处理 */
|
|
|
-const handleFileRemove = (file, fileList) => {
|
|
|
- upload.selectedFile = null
|
|
|
+/** 文件上传前处理 */
|
|
|
+const handleBeforeUpload = (file) => {
|
|
|
+ upload.fileList = [file]
|
|
|
+ return false // 阻止自动上传
|
|
|
}
|
|
|
|
|
|
-/** 文件上传成功处理 */
|
|
|
-const handleFileSuccess = (response, file, fileList) => {
|
|
|
- upload.open = false
|
|
|
- upload.isUploading = false
|
|
|
- proxy.$refs["uploadRef"].handleRemove(file)
|
|
|
- proxy.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + "</div>", "导入结果", { dangerouslyUseHTMLString: true })
|
|
|
- getList()
|
|
|
+/** 文件上传变化处理 */
|
|
|
+const handleUploadChange = (info) => {
|
|
|
+ if (info.file.status === 'done') {
|
|
|
+ upload.open = false
|
|
|
+ upload.isUploading = false
|
|
|
+ const response = info.file.response
|
|
|
+ Modal.info({
|
|
|
+ title: '导入结果',
|
|
|
+ content: h('div', { innerHTML: response.msg, style: 'overflow: auto; overflow-x: hidden; max-height: 70vh; padding: 10px 20px 0;' })
|
|
|
+ })
|
|
|
+ getList()
|
|
|
+ } else if (info.file.status === 'uploading') {
|
|
|
+ upload.isUploading = true
|
|
|
+ } else if (info.file.status === 'error') {
|
|
|
+ upload.isUploading = false
|
|
|
+ message.error('上传失败')
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/** 提交上传文件 */
|
|
|
function submitFileForm() {
|
|
|
- const file = upload.selectedFile
|
|
|
- if (!file || file.length === 0 || !file.name.toLowerCase().endsWith('.xls') && !file.name.toLowerCase().endsWith('.xlsx')) {
|
|
|
- proxy.$modal.msgError("请选择后缀为 “xls”或“xlsx”的文件。")
|
|
|
+ if (upload.fileList.length === 0) {
|
|
|
+ message.error('请选择后缀为 "xls"或"xlsx"的文件。')
|
|
|
return
|
|
|
}
|
|
|
- proxy.$refs["uploadRef"].submit()
|
|
|
+ const file = upload.fileList[0]
|
|
|
+ if (!file.name.toLowerCase().endsWith('.xls') && !file.name.toLowerCase().endsWith('.xlsx')) {
|
|
|
+ message.error('请选择后缀为 "xls"或"xlsx"的文件。')
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ // 手动上传文件
|
|
|
+ const formData = new FormData()
|
|
|
+ formData.append('file', file)
|
|
|
+
|
|
|
+ upload.isUploading = true
|
|
|
+ fetch(upload.url + '?updateSupport=' + upload.updateSupport, {
|
|
|
+ method: 'POST',
|
|
|
+ headers: upload.headers,
|
|
|
+ body: formData
|
|
|
+ })
|
|
|
+ .then(response => response.json())
|
|
|
+ .then(response => {
|
|
|
+ upload.open = false
|
|
|
+ upload.isUploading = false
|
|
|
+ Modal.info({
|
|
|
+ title: '导入结果',
|
|
|
+ content: h('div', { innerHTML: response.msg, style: 'overflow: auto; overflow-x: hidden; max-height: 70vh; padding: 10px 20px 0;' })
|
|
|
+ })
|
|
|
+ getList()
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ upload.isUploading = false
|
|
|
+ message.error('上传失败')
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
/** 重置操作表单 */
|
|
|
@@ -491,7 +595,6 @@ function reset() {
|
|
|
postIds: [],
|
|
|
roleIds: []
|
|
|
}
|
|
|
- proxy.resetForm("userRef")
|
|
|
}
|
|
|
|
|
|
/** 取消按钮 */
|
|
|
@@ -524,29 +627,27 @@ function handleUpdate(row) {
|
|
|
form.value.roleIds = response.roleIds
|
|
|
open.value = true
|
|
|
title.value = "修改用户"
|
|
|
- form.password = ""
|
|
|
+ form.value.password = ""
|
|
|
})
|
|
|
}
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
function submitForm() {
|
|
|
- proxy.$refs["userRef"].validate(valid => {
|
|
|
- if (valid) {
|
|
|
- if (form.value.userId != undefined) {
|
|
|
- updateUser(form.value).then(response => {
|
|
|
- proxy.$modal.msgSuccess("修改成功")
|
|
|
- open.value = false
|
|
|
- getList()
|
|
|
- })
|
|
|
- } else {
|
|
|
- addUser(form.value).then(response => {
|
|
|
- proxy.$modal.msgSuccess("新增成功")
|
|
|
- open.value = false
|
|
|
- getList()
|
|
|
- })
|
|
|
- }
|
|
|
+ proxy.$refs["userRef"].validate().then(() => {
|
|
|
+ if (form.value.userId != undefined) {
|
|
|
+ updateUser(form.value).then(response => {
|
|
|
+ message.success("修改成功")
|
|
|
+ open.value = false
|
|
|
+ getList()
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ addUser(form.value).then(response => {
|
|
|
+ message.success("新增成功")
|
|
|
+ open.value = false
|
|
|
+ getList()
|
|
|
+ })
|
|
|
}
|
|
|
- })
|
|
|
+ }).catch(() => {})
|
|
|
}
|
|
|
|
|
|
onMounted(() => {
|
|
|
@@ -557,3 +658,92 @@ onMounted(() => {
|
|
|
})
|
|
|
})
|
|
|
</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+// 搜索表单布局
|
|
|
+.ant-form-inline {
|
|
|
+ background: #fff;
|
|
|
+ padding: 16px;
|
|
|
+ border-radius: 4px;
|
|
|
+ margin-bottom: 16px;
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ align-items: flex-start;
|
|
|
+
|
|
|
+ .ant-form-item {
|
|
|
+ margin-right: 16px;
|
|
|
+ margin-bottom: 16px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ .ant-form-item-label {
|
|
|
+ padding-right: 8px;
|
|
|
+ flex-shrink: 0;
|
|
|
+
|
|
|
+ > label {
|
|
|
+ white-space: nowrap;
|
|
|
+ height: 32px;
|
|
|
+ line-height: 32px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .ant-form-item-control {
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ margin-right: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 按钮组间距
|
|
|
+.mb8 {
|
|
|
+ margin-bottom: 16px;
|
|
|
+
|
|
|
+ .ant-col {
|
|
|
+ .ant-btn {
|
|
|
+ margin-right: 8px;
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ margin-right: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 表格容器
|
|
|
+.ant-table-wrapper {
|
|
|
+ background: #fff;
|
|
|
+ padding: 16px;
|
|
|
+ border-radius: 4px;
|
|
|
+}
|
|
|
+
|
|
|
+// 表格样式
|
|
|
+.ant-table {
|
|
|
+ .ant-table-thead > tr > th {
|
|
|
+ background-color: #fafafa;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #262626;
|
|
|
+ }
|
|
|
+
|
|
|
+ .ant-table-tbody > tr > td {
|
|
|
+ padding: 12px 16px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 按钮图标间距
|
|
|
+.ant-btn {
|
|
|
+ .anticon + span,
|
|
|
+ span + .anticon {
|
|
|
+ margin-left: 4px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 确保日期选择器宽度正确
|
|
|
+.ant-form-item {
|
|
|
+ .ant-picker {
|
|
|
+ width: 308px;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|