123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722 |
- <template>
- <div class="app-container">
- <el-row :gutter="20">
- <!--部门数据-->
- <el-col
- :span="2"
- :xs="24"
- style="padding-left: 0; padding-right: 0; overflow-x: auto"
- >
- <div class="head-container">
- <el-input
- v-model="deptName"
- placeholder="请输入部门名称"
- clearable
- size="small"
- prefix-icon="el-icon-search"
- style="margin-bottom: 20px"
- />
- </div>
- <div class="head-container" style="display: flex">
- <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-col>
- <!--用户数据-->
- <el-col :span="22" :xs="24">
- <el-form
- :model="queryParams"
- ref="queryForm"
- size="small"
- :inline="true"
- v-show="showSearch"
- label-width="68px"
- >
- <el-form-item label="项目编号" prop="projectNumber">
- <el-input
- v-model="queryParams.projectNumber"
- placeholder="请输入项目编号"
- clearable
- style="width: 240px"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="项目名称" prop="projectName">
- <el-input
- v-model="queryParams.projectName"
- placeholder="请输入项目名称"
- clearable
- style="width: 240px"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="员工名称" prop="adminName">
- <el-input
- v-model="queryParams.adminName"
- placeholder="请输入员工名称"
- clearable
- style="width: 240px"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="打卡时间">
- <el-date-picker
- v-model="dateRange"
- style="width: 240px"
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- ></el-date-picker>
- </el-form-item>
- <el-form-item label="兼职全职" prop="fullJob">
- <el-select
- v-model="queryParams.fullJob"
- placeholder="兼职/全职"
- clearable
- style="width: 240px"
- >
- <el-option
- v-for="dict in dict.type.sys_user_fulljob"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="研发阶段" prop="projectStatus">
- <el-select
- v-model="queryParams.projectStatus"
- placeholder="研发阶段"
- clearable
- style="width: 240px"
- >
- <el-option
- v-for="dict in dict.type.syx_record_stage"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="研发时间">
- <el-date-picker
- v-model="datResearch"
- style="width: 240px"
- 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="el-icon-search"
- size="mini"
- @click="handleQuery"
- >搜索</el-button
- >
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
- >重置</el-button
- >
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="info"
- plain
- icon="el-icon-upload2"
- size="mini"
- @click="handleImport"
- v-hasPermi="['system:user: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']"
- >导出</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="el-icon-download"
- size="mini"
- :disabled="multiple"
- @click="handleDownload"
- v-hasPermi="['system:user:export']"
- >下载附件</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button type="primary" size="mini" :disabled="multiple" @click="toExamine"
- >批量审核</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-date-picker
- value-format="yyyy-MM-dd HH:mm:ss"
- v-model="examineTime"
- type="datetime"
- placeholder="选择审批日期时间"
- />
- </el-col>
- <right-toolbar
- :showSearch.sync="showSearch"
- @queryTable="getList"
- :columns="columns"
- ></right-toolbar>
- </el-row>
- <el-table
- v-loading="loading"
- :data="userList"
- border
- @selection-change="handleSelectionChange"
- >
- <el-table-column type="selection" width="50" align="center" />
- <el-table-column
- label="员工工号"
- align="center"
- width="90"
- key="jobNumber"
- prop="jobNumber"
- v-if="columns[0].visible"
- />
- <el-table-column
- label="员工姓名"
- align="center"
- key="name"
- prop="name"
- v-if="columns[1].visible"
- :show-overflow-tooltip="true"
- />
- <el-table-column
- label="部门编号"
- align="center"
- key="deptId"
- prop="deptId"
- v-if="columns[2].visible"
- :show-overflow-tooltip="true"
- />
- <el-table-column
- label="部门"
- align="center"
- key="deptName"
- prop="deptName"
- v-if="columns[3].visible"
- />
- <el-table-column
- label="打卡时间"
- width="100"
- align="center"
- key="recordTime"
- prop="recordTime"
- v-if="columns[4].visible"
- />
- <el-table-column
- label="工时"
- align="center"
- width="50"
- key="duration"
- prop="duration"
- v-if="columns[5].visible"
- />
- <el-table-column
- label="打卡月份"
- align="center"
- width="50"
- key="createMonth"
- prop="createMonth"
- v-if="columns[6].visible"
- />
- <el-table-column
- label="项目编号"
- align="center"
- key="projectNumber"
- prop="projectNumber"
- v-if="columns[7].visible"
- />
- <el-table-column
- label="项目名称"
- align="center"
- key="projectName"
- prop="projectName"
- v-if="columns[8].visible"
- />
- <el-table-column
- label="研发阶段"
- align="center"
- key="projectStatus"
- prop="projectStatus"
- v-if="columns[9].visible"
- >
- <template slot-scope="scope">
- <dict-tag
- :options="dict.type.syx_record_stage"
- :value="scope.row.projectStatus"
- />
- </template>
- </el-table-column>
- <el-table-column
- label="日报内容"
- align="center"
- key="content"
- prop="content"
- v-if="columns[10].visible"
- :show-overflow-tooltip="true"
- />
- <!-- :show-overflow-tooltip="true" -->
- <el-table-column
- label="审核人员"
- align="center"
- key="examineName"
- prop="examineName"
- v-if="columns[11].visible"
- />
- <el-table-column
- label="审核时间"
- width="100"
- align="center"
- key="examineTime"
- prop="examineTime"
- v-if="columns[12].visible"
- />
- <el-table-column
- label="附件"
- align="center"
- width="70"
- class-name="small-padding fixed-width"
- >
- <template slot-scope="scope" v-if="scope.row.userId !== 1">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleSelect(scope.row)"
- >查看</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total > 0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- </el-col>
- </el-row>
- <!-- 项目导入对话框 -->
- <el-dialog
- :title="upload.title"
- :visible.sync="upload.open"
- width="400px"
- append-to-body
- >
- <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">将文件拖到此处,或<em>点击上传</em></div>
- <div class="el-upload__tip text-center" slot="tip">
- <div class="el-upload__tip" slot="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>
- </el-upload>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitFileForm">确 定</el-button>
- <el-button @click="upload.open = false">取 消</el-button>
- </div>
- </el-dialog>
- <el-dialog :title="title" :visible.sync="open" width="400px" append-to-body>
- <template slot-scope="scope" v-if="!srcList">
- <span>暂无附件~</span>
- </template>
- <template slot-scope="scope" v-if="!!srcList">
- <ImagePreview :src="srcList" :width="100" :height="100" />
- </template>
- </el-dialog>
- <el-dialog title="审批意见" width="400px" :visible.sync="examineVisible">
- <el-input
- type="textarea"
- :rows="3"
- v-model="content"
- placeholder="请填写审批意见"
- ></el-input>
- <div slot="footer" class="dialog-footer">
- <el-button @click="batchExamineRecord(3)">驳 回</el-button>
- <el-button type="primary" @click="batchExamineRecord(2)">同 意</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import { listRecord, batchExamineRecord } from "@/api/system/record";
- import { deptTreeSelect } 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: "Record",
- dicts: ["sys_user_fulljob", "syx_record_stage"],
- components: { Treeselect },
- data() {
- return {
- // 审核弹窗
- examineVisible: false,
- // 审核意见
- content: "",
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 用户表格数据
- userList: null,
- // 弹出层标题
- title: "",
- // 部门树选项
- deptOptions: undefined,
- // 是否显示弹出层
- open: false,
- // 部门名称
- deptName: undefined,
- // 默认密码
- initPassword: undefined,
- // 日期范围
- dateRange: [],
- datResearch: [],
- examineTime: "",
- // 岗位选项
- postOptions: [],
- // 角色选项
- roleOptions: [],
- // 表单参数
- form: {},
- // 附件
- srcList: "",
- year: [
- { label: "非跨年", value: 0 },
- { label: "跨年", value: 1 },
- ],
- defaultProps: {
- children: "children",
- label: "label",
- },
- // 用户导入参数
- upload: {
- // 是否显示弹出层(用户导入)
- open: false,
- // 弹出层标题(用户导入)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/api/project/listRecord/importData",
- },
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- projectNumber: undefined,
- name: undefined,
- staffId: undefined,
- projectYear: undefined,
- crossYear: undefined,
- deptId: undefined,
- },
- // 列信息
- columns: [
- { key: 0, label: `员工工号`, visible: true },
- { key: 1, label: `员工姓名`, visible: true },
- { key: 2, label: `部门编号`, visible: true },
- { key: 3, label: `部门`, visible: true },
- { key: 4, label: `打卡时间`, visible: true },
- { key: 5, label: `工时`, visible: true },
- { key: 6, label: `打卡月份`, visible: true },
- { key: 7, label: `项目编号`, visible: true },
- { key: 8, label: `项目名称`, visible: true },
- { key: 9, label: `创建任务`, visible: true },
- { key: 10, label: `日报内容`, visible: true },
- { key: 11, label: `研发人员`, visible: true },
- { key: 12, label: `研发时间`, visible: true },
- ],
- // 表单校验
- rules: {
- // projectNumber: [
- // { required: true, message: "用户名称不能为空", trigger: "blur" },
- // { min: 2, max: 20, message: '用户名称长度必须介于 2 和 20 之间', trigger: 'blur' }
- // ],
- // name: [
- // { required: true, message: "用户昵称不能为空", trigger: "blur" }
- // ],
- // password: [
- // { required: true, message: "用户密码不能为空", trigger: "blur" },
- // { min: 5, max: 20, message: '用户密码长度必须介于 5 和 20 之间', 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"
- // }
- // ]
- },
- };
- },
- watch: {
- // 根据名称筛选部门树
- deptName(val) {
- this.$refs.tree.filter(val);
- },
- },
- created() {
- this.getList();
- this.getDeptTree();
- this.getConfigKey("sys.user.initPassword").then((response) => {
- this.initPassword = response.msg;
- });
- },
- methods: {
- /** 查询列表 */
- getList() {
- this.loading = true;
- let dateRange = Array.isArray(this.dateRange) ? this.dateRange : [];
- if (dateRange.length > 0) {
- this.queryParams.startTime = dateRange[0];
- this.queryParams.endTime = dateRange[1];
- } else {
- this.queryParams.startTime = undefined;
- this.queryParams.endTime = undefined;
- }
- let datResearch = Array.isArray(this.datResearch) ? this.datResearch : [];
- if (datResearch.length > 0) {
- this.queryParams.researchStart = datResearch[0];
- this.queryParams.researchEnd = datResearch[1];
- } else {
- this.queryParams.researchStart = undefined;
- this.queryParams.researchEnd = undefined;
- }
- this.queryParams.roleType = 3;
- listRecord(this.queryParams).then((response) => {
- this.userList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- /** 查询部门下拉树结构 */
- getDeptTree() {
- deptTreeSelect().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();
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.dateRange = [];
- this.datResearch = [];
- this.resetForm("queryForm");
- this.queryParams.startTime = undefined;
- this.queryParams.endTime = undefined;
- this.queryParams.deptId = undefined;
- this.$refs.tree.setCurrentKey(null);
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map((item) => item.id);
- this.single = selection.length != 1;
- this.multiple = !selection.length;
- },
- /** 查看按钮 */
- handleSelect(row) {
- this.title = "查看附件";
- this.srcList = row.annexUrl;
- this.open = true;
- },
- /** 批量审核 */
- toExamine() {
- // if (!this.examineTime) {
- // this.$modal.msgWarning("请先选择审批日期时间!");
- // return;
- // }
- this.examineVisible = true;
- },
- batchExamineRecord(status) {
- if (!this.content) {
- this.$modal.msgWarning("请填写审批意见!");
- return;
- }
- let data = {
- id: this.ids.toString(),
- processStatus: status,
- content: this.content,
- examineTime: this.examineTime,
- };
- batchExamineRecord(data).then((response) => {
- if (response.code == 200) {
- this.getList();
- this.examineVisible = false;
- this.content = "";
- this.$modal.msgSuccess("操作成功");
- }
- // this.userList = response.rows;
- // this.total = response.total;
- // this.loading = false;
- });
- },
- /** 下载附件 */
- handleDownload(row) {
- const ids = this.ids.toString();
- const url = "/api/project/download?ids=" + ids;
- const _this = this;
- var date = new Date();
- var year = date.getFullYear();
- var month =
- date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
- var day = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
- var hours = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
- var minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
- var seconds = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
- var time = year + "" + month + "" + day + "" + hours + "" + minutes + "" + seconds;
- this.$modal
- .confirm("确认下载已经勾选的项目附件吗?")
- .then(function () {
- _this.$download.zip(url, `项目打卡数据_${time}`);
- _this.$modal.msgSuccess("下载成功");
- })
- .then(() => {})
- .catch(() => {});
- },
- /** 导出按钮操作 */
- handleExport() {
- this.download(
- "api/project/listRecord/export",
- {
- ...this.queryParams,
- },
- `project_record_${new Date().getTime()}.xlsx`
- );
- },
- /** 导入按钮操作 */
- handleImport() {
- this.upload.title = "项目导入";
- this.upload.open = true;
- },
- /** 下载模板操作 */
- importTemplate() {
- this.download(
- "api/project/listRecord/importTemplate",
- {},
- `project_record_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>
- // .head-container {
- // word-wrap: break-word;
- // overflow: hidden;
- // word-break: break-all;
- // }
- </style>
|