index.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  1. <template>
  2. <div class="app-container">
  3. <el-row :gutter="20">
  4. <!--部门数据-->
  5. <el-col
  6. :span="2"
  7. :xs="24"
  8. style="padding-left: 0; padding-right: 0; overflow-x: auto"
  9. >
  10. <div class="head-container">
  11. <el-input
  12. v-model="deptName"
  13. placeholder="请输入部门名称"
  14. clearable
  15. size="small"
  16. prefix-icon="el-icon-search"
  17. style="margin-bottom: 20px"
  18. />
  19. </div>
  20. <div class="head-container" style="display: flex">
  21. <el-tree
  22. :data="deptOptions"
  23. :props="defaultProps"
  24. :expand-on-click-node="false"
  25. :filter-node-method="filterNode"
  26. ref="tree"
  27. node-key="id"
  28. default-expand-all
  29. highlight-current
  30. @node-click="handleNodeClick"
  31. />
  32. </div>
  33. </el-col>
  34. <!--用户数据-->
  35. <el-col :span="22" :xs="24">
  36. <el-form
  37. :model="queryParams"
  38. ref="queryForm"
  39. size="small"
  40. :inline="true"
  41. v-show="showSearch"
  42. label-width="68px"
  43. >
  44. <el-form-item label="项目编号" prop="projectNumber">
  45. <el-input
  46. v-model="queryParams.projectNumber"
  47. placeholder="请输入项目编号"
  48. clearable
  49. style="width: 240px"
  50. @keyup.enter.native="handleQuery"
  51. />
  52. </el-form-item>
  53. <el-form-item label="项目名称" prop="projectName">
  54. <el-input
  55. v-model="queryParams.projectName"
  56. placeholder="请输入项目名称"
  57. clearable
  58. style="width: 240px"
  59. @keyup.enter.native="handleQuery"
  60. />
  61. </el-form-item>
  62. <el-form-item label="员工名称" prop="adminName">
  63. <el-input
  64. v-model="queryParams.adminName"
  65. placeholder="请输入员工名称"
  66. clearable
  67. style="width: 240px"
  68. @keyup.enter.native="handleQuery"
  69. />
  70. </el-form-item>
  71. <el-form-item label="打卡时间">
  72. <el-date-picker
  73. v-model="dateRange"
  74. style="width: 240px"
  75. value-format="yyyy-MM-dd"
  76. type="daterange"
  77. range-separator="-"
  78. start-placeholder="开始日期"
  79. end-placeholder="结束日期"
  80. ></el-date-picker>
  81. </el-form-item>
  82. <el-form-item label="兼职全职" prop="fullJob">
  83. <el-select
  84. v-model="queryParams.fullJob"
  85. placeholder="兼职/全职"
  86. clearable
  87. style="width: 240px"
  88. >
  89. <el-option
  90. v-for="dict in dict.type.sys_user_fulljob"
  91. :key="dict.value"
  92. :label="dict.label"
  93. :value="dict.value"
  94. />
  95. </el-select>
  96. </el-form-item>
  97. <el-form-item label="研发阶段" prop="projectStatus">
  98. <el-select
  99. v-model="queryParams.projectStatus"
  100. placeholder="研发阶段"
  101. clearable
  102. style="width: 240px"
  103. >
  104. <el-option
  105. v-for="dict in dict.type.syx_record_stage"
  106. :key="dict.value"
  107. :label="dict.label"
  108. :value="dict.value"
  109. />
  110. </el-select>
  111. </el-form-item>
  112. <el-form-item label="研发时间">
  113. <el-date-picker
  114. v-model="datResearch"
  115. style="width: 240px"
  116. value-format="yyyy-MM-dd"
  117. type="daterange"
  118. range-separator="-"
  119. start-placeholder="开始日期"
  120. end-placeholder="结束日期"
  121. ></el-date-picker>
  122. </el-form-item>
  123. <el-form-item>
  124. <el-button
  125. type="primary"
  126. icon="el-icon-search"
  127. size="mini"
  128. @click="handleQuery"
  129. >搜索</el-button
  130. >
  131. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
  132. >重置</el-button
  133. >
  134. </el-form-item>
  135. </el-form>
  136. <el-row :gutter="10" class="mb8">
  137. <el-col :span="1.5">
  138. <el-button
  139. type="info"
  140. plain
  141. icon="el-icon-upload2"
  142. size="mini"
  143. @click="handleImport"
  144. v-hasPermi="['system:user:import']"
  145. >导入</el-button
  146. >
  147. </el-col>
  148. <el-col :span="1.5">
  149. <el-button
  150. type="warning"
  151. plain
  152. icon="el-icon-download"
  153. size="mini"
  154. @click="handleExport"
  155. v-hasPermi="['system:user:export']"
  156. >导出</el-button
  157. >
  158. </el-col>
  159. <el-col :span="1.5">
  160. <el-button
  161. type="primary"
  162. plain
  163. icon="el-icon-download"
  164. size="mini"
  165. :disabled="multiple"
  166. @click="handleDownload"
  167. v-hasPermi="['system:user:export']"
  168. >下载附件</el-button
  169. >
  170. </el-col>
  171. <el-col :span="1.5">
  172. <el-button type="primary" size="mini" :disabled="multiple" @click="toExamine"
  173. >批量审核</el-button
  174. >
  175. </el-col>
  176. <el-col :span="1.5">
  177. <el-date-picker
  178. value-format="yyyy-MM-dd HH:mm:ss"
  179. v-model="examineTime"
  180. type="datetime"
  181. placeholder="选择审批日期时间"
  182. />
  183. </el-col>
  184. <right-toolbar
  185. :showSearch.sync="showSearch"
  186. @queryTable="getList"
  187. :columns="columns"
  188. ></right-toolbar>
  189. </el-row>
  190. <el-table
  191. v-loading="loading"
  192. :data="userList"
  193. border
  194. @selection-change="handleSelectionChange"
  195. >
  196. <el-table-column type="selection" width="50" align="center" />
  197. <el-table-column
  198. label="员工工号"
  199. align="center"
  200. width="90"
  201. key="jobNumber"
  202. prop="jobNumber"
  203. v-if="columns[0].visible"
  204. />
  205. <el-table-column
  206. label="员工姓名"
  207. align="center"
  208. key="name"
  209. prop="name"
  210. v-if="columns[1].visible"
  211. :show-overflow-tooltip="true"
  212. />
  213. <el-table-column
  214. label="部门编号"
  215. align="center"
  216. key="deptId"
  217. prop="deptId"
  218. v-if="columns[2].visible"
  219. :show-overflow-tooltip="true"
  220. />
  221. <el-table-column
  222. label="部门"
  223. align="center"
  224. key="deptName"
  225. prop="deptName"
  226. v-if="columns[3].visible"
  227. />
  228. <el-table-column
  229. label="打卡时间"
  230. width="100"
  231. align="center"
  232. key="recordTime"
  233. prop="recordTime"
  234. v-if="columns[4].visible"
  235. />
  236. <el-table-column
  237. label="工时"
  238. align="center"
  239. width="50"
  240. key="duration"
  241. prop="duration"
  242. v-if="columns[5].visible"
  243. />
  244. <el-table-column
  245. label="打卡月份"
  246. align="center"
  247. width="50"
  248. key="createMonth"
  249. prop="createMonth"
  250. v-if="columns[6].visible"
  251. />
  252. <el-table-column
  253. label="项目编号"
  254. align="center"
  255. key="projectNumber"
  256. prop="projectNumber"
  257. v-if="columns[7].visible"
  258. />
  259. <el-table-column
  260. label="项目名称"
  261. align="center"
  262. key="projectName"
  263. prop="projectName"
  264. v-if="columns[8].visible"
  265. />
  266. <el-table-column
  267. label="研发阶段"
  268. align="center"
  269. key="projectStatus"
  270. prop="projectStatus"
  271. v-if="columns[9].visible"
  272. >
  273. <template slot-scope="scope">
  274. <dict-tag
  275. :options="dict.type.syx_record_stage"
  276. :value="scope.row.projectStatus"
  277. />
  278. </template>
  279. </el-table-column>
  280. <el-table-column
  281. label="日报内容"
  282. align="center"
  283. key="content"
  284. prop="content"
  285. v-if="columns[10].visible"
  286. :show-overflow-tooltip="true"
  287. />
  288. <!-- :show-overflow-tooltip="true" -->
  289. <el-table-column
  290. label="审核人员"
  291. align="center"
  292. key="examineName"
  293. prop="examineName"
  294. v-if="columns[11].visible"
  295. />
  296. <el-table-column
  297. label="审核时间"
  298. width="100"
  299. align="center"
  300. key="examineTime"
  301. prop="examineTime"
  302. v-if="columns[12].visible"
  303. />
  304. <el-table-column
  305. label="附件"
  306. align="center"
  307. width="70"
  308. class-name="small-padding fixed-width"
  309. >
  310. <template slot-scope="scope" v-if="scope.row.userId !== 1">
  311. <el-button
  312. size="mini"
  313. type="text"
  314. icon="el-icon-edit"
  315. @click="handleSelect(scope.row)"
  316. >查看</el-button
  317. >
  318. </template>
  319. </el-table-column>
  320. </el-table>
  321. <pagination
  322. v-show="total > 0"
  323. :total="total"
  324. :page.sync="queryParams.pageNum"
  325. :limit.sync="queryParams.pageSize"
  326. @pagination="getList"
  327. />
  328. </el-col>
  329. </el-row>
  330. <!-- 项目导入对话框 -->
  331. <el-dialog
  332. :title="upload.title"
  333. :visible.sync="upload.open"
  334. width="400px"
  335. append-to-body
  336. >
  337. <el-upload
  338. ref="upload"
  339. :limit="1"
  340. accept=".xlsx, .xls"
  341. :headers="upload.headers"
  342. :action="upload.url + '?updateSupport=' + upload.updateSupport"
  343. :disabled="upload.isUploading"
  344. :on-progress="handleFileUploadProgress"
  345. :on-success="handleFileSuccess"
  346. :auto-upload="false"
  347. drag
  348. >
  349. <i class="el-icon-upload"></i>
  350. <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
  351. <div class="el-upload__tip text-center" slot="tip">
  352. <div class="el-upload__tip" slot="tip">
  353. <el-checkbox v-model="upload.updateSupport" /> 是否更新已经存在的用户数据
  354. </div>
  355. <span>仅允许导入xls、xlsx格式文件。</span>
  356. <el-link
  357. type="primary"
  358. :underline="false"
  359. style="font-size: 12px; vertical-align: baseline"
  360. @click="importTemplate"
  361. >下载模板</el-link
  362. >
  363. </div>
  364. </el-upload>
  365. <div slot="footer" class="dialog-footer">
  366. <el-button type="primary" @click="submitFileForm">确 定</el-button>
  367. <el-button @click="upload.open = false">取 消</el-button>
  368. </div>
  369. </el-dialog>
  370. <el-dialog :title="title" :visible.sync="open" width="400px" append-to-body>
  371. <template slot-scope="scope" v-if="!srcList">
  372. <span>暂无附件~</span>
  373. </template>
  374. <template slot-scope="scope" v-if="!!srcList">
  375. <ImagePreview :src="srcList" :width="100" :height="100" />
  376. </template>
  377. </el-dialog>
  378. <el-dialog title="审批意见" width="400px" :visible.sync="examineVisible">
  379. <el-input
  380. type="textarea"
  381. :rows="3"
  382. v-model="content"
  383. placeholder="请填写审批意见"
  384. ></el-input>
  385. <div slot="footer" class="dialog-footer">
  386. <el-button @click="batchExamineRecord(3)">驳 回</el-button>
  387. <el-button type="primary" @click="batchExamineRecord(2)">同 意</el-button>
  388. </div>
  389. </el-dialog>
  390. </div>
  391. </template>
  392. <script>
  393. import { listRecord, batchExamineRecord } from "@/api/system/record";
  394. import { deptTreeSelect } from "@/api/system/user";
  395. import { getToken } from "@/utils/auth";
  396. import Treeselect from "@riophae/vue-treeselect";
  397. import "@riophae/vue-treeselect/dist/vue-treeselect.css";
  398. export default {
  399. name: "Record",
  400. dicts: ["sys_user_fulljob", "syx_record_stage"],
  401. components: { Treeselect },
  402. data() {
  403. return {
  404. // 审核弹窗
  405. examineVisible: false,
  406. // 审核意见
  407. content: "",
  408. // 遮罩层
  409. loading: true,
  410. // 选中数组
  411. ids: [],
  412. // 非单个禁用
  413. single: true,
  414. // 非多个禁用
  415. multiple: true,
  416. // 显示搜索条件
  417. showSearch: true,
  418. // 总条数
  419. total: 0,
  420. // 用户表格数据
  421. userList: null,
  422. // 弹出层标题
  423. title: "",
  424. // 部门树选项
  425. deptOptions: undefined,
  426. // 是否显示弹出层
  427. open: false,
  428. // 部门名称
  429. deptName: undefined,
  430. // 默认密码
  431. initPassword: undefined,
  432. // 日期范围
  433. dateRange: [],
  434. datResearch: [],
  435. examineTime: "",
  436. // 岗位选项
  437. postOptions: [],
  438. // 角色选项
  439. roleOptions: [],
  440. // 表单参数
  441. form: {},
  442. // 附件
  443. srcList: "",
  444. year: [
  445. { label: "非跨年", value: 0 },
  446. { label: "跨年", value: 1 },
  447. ],
  448. defaultProps: {
  449. children: "children",
  450. label: "label",
  451. },
  452. // 用户导入参数
  453. upload: {
  454. // 是否显示弹出层(用户导入)
  455. open: false,
  456. // 弹出层标题(用户导入)
  457. title: "",
  458. // 是否禁用上传
  459. isUploading: false,
  460. // 是否更新已经存在的用户数据
  461. updateSupport: 0,
  462. // 设置上传的请求头部
  463. headers: { Authorization: "Bearer " + getToken() },
  464. // 上传的地址
  465. url: process.env.VUE_APP_BASE_API + "/api/project/listRecord/importData",
  466. },
  467. // 查询参数
  468. queryParams: {
  469. pageNum: 1,
  470. pageSize: 10,
  471. projectNumber: undefined,
  472. name: undefined,
  473. staffId: undefined,
  474. projectYear: undefined,
  475. crossYear: undefined,
  476. deptId: undefined,
  477. },
  478. // 列信息
  479. columns: [
  480. { key: 0, label: `员工工号`, visible: true },
  481. { key: 1, label: `员工姓名`, visible: true },
  482. { key: 2, label: `部门编号`, visible: true },
  483. { key: 3, label: `部门`, visible: true },
  484. { key: 4, label: `打卡时间`, visible: true },
  485. { key: 5, label: `工时`, visible: true },
  486. { key: 6, label: `打卡月份`, visible: true },
  487. { key: 7, label: `项目编号`, visible: true },
  488. { key: 8, label: `项目名称`, visible: true },
  489. { key: 9, label: `创建任务`, visible: true },
  490. { key: 10, label: `日报内容`, visible: true },
  491. { key: 11, label: `研发人员`, visible: true },
  492. { key: 12, label: `研发时间`, visible: true },
  493. ],
  494. // 表单校验
  495. rules: {
  496. // projectNumber: [
  497. // { required: true, message: "用户名称不能为空", trigger: "blur" },
  498. // { min: 2, max: 20, message: '用户名称长度必须介于 2 和 20 之间', trigger: 'blur' }
  499. // ],
  500. // name: [
  501. // { required: true, message: "用户昵称不能为空", trigger: "blur" }
  502. // ],
  503. // password: [
  504. // { required: true, message: "用户密码不能为空", trigger: "blur" },
  505. // { min: 5, max: 20, message: '用户密码长度必须介于 5 和 20 之间', trigger: 'blur' }
  506. // ],
  507. // email: [
  508. // {
  509. // type: "email",
  510. // message: "请输入正确的邮箱地址",
  511. // trigger: ["blur", "change"]
  512. // }
  513. // ],
  514. // phonenumber: [
  515. // {
  516. // pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
  517. // message: "请输入正确的手机号码",
  518. // trigger: "blur"
  519. // }
  520. // ]
  521. },
  522. };
  523. },
  524. watch: {
  525. // 根据名称筛选部门树
  526. deptName(val) {
  527. this.$refs.tree.filter(val);
  528. },
  529. },
  530. created() {
  531. this.getList();
  532. this.getDeptTree();
  533. this.getConfigKey("sys.user.initPassword").then((response) => {
  534. this.initPassword = response.msg;
  535. });
  536. },
  537. methods: {
  538. /** 查询列表 */
  539. getList() {
  540. this.loading = true;
  541. let dateRange = Array.isArray(this.dateRange) ? this.dateRange : [];
  542. if (dateRange.length > 0) {
  543. this.queryParams.startTime = dateRange[0];
  544. this.queryParams.endTime = dateRange[1];
  545. } else {
  546. this.queryParams.startTime = undefined;
  547. this.queryParams.endTime = undefined;
  548. }
  549. let datResearch = Array.isArray(this.datResearch) ? this.datResearch : [];
  550. if (datResearch.length > 0) {
  551. this.queryParams.researchStart = datResearch[0];
  552. this.queryParams.researchEnd = datResearch[1];
  553. } else {
  554. this.queryParams.researchStart = undefined;
  555. this.queryParams.researchEnd = undefined;
  556. }
  557. this.queryParams.roleType = 3;
  558. listRecord(this.queryParams).then((response) => {
  559. this.userList = response.rows;
  560. this.total = response.total;
  561. this.loading = false;
  562. });
  563. },
  564. /** 查询部门下拉树结构 */
  565. getDeptTree() {
  566. deptTreeSelect().then((response) => {
  567. this.deptOptions = response.data;
  568. });
  569. },
  570. // 筛选节点
  571. filterNode(value, data) {
  572. if (!value) return true;
  573. return data.label.indexOf(value) !== -1;
  574. },
  575. // 节点单击事件
  576. handleNodeClick(data) {
  577. this.queryParams.deptId = data.id;
  578. this.handleQuery();
  579. },
  580. /** 搜索按钮操作 */
  581. handleQuery() {
  582. this.queryParams.pageNum = 1;
  583. this.getList();
  584. },
  585. /** 重置按钮操作 */
  586. resetQuery() {
  587. this.dateRange = [];
  588. this.datResearch = [];
  589. this.resetForm("queryForm");
  590. this.queryParams.startTime = undefined;
  591. this.queryParams.endTime = undefined;
  592. this.queryParams.deptId = undefined;
  593. this.$refs.tree.setCurrentKey(null);
  594. this.handleQuery();
  595. },
  596. // 多选框选中数据
  597. handleSelectionChange(selection) {
  598. this.ids = selection.map((item) => item.id);
  599. this.single = selection.length != 1;
  600. this.multiple = !selection.length;
  601. },
  602. /** 查看按钮 */
  603. handleSelect(row) {
  604. this.title = "查看附件";
  605. this.srcList = row.annexUrl;
  606. this.open = true;
  607. },
  608. /** 批量审核 */
  609. toExamine() {
  610. // if (!this.examineTime) {
  611. // this.$modal.msgWarning("请先选择审批日期时间!");
  612. // return;
  613. // }
  614. this.examineVisible = true;
  615. },
  616. batchExamineRecord(status) {
  617. if (!this.content) {
  618. this.$modal.msgWarning("请填写审批意见!");
  619. return;
  620. }
  621. let data = {
  622. id: this.ids.toString(),
  623. processStatus: status,
  624. content: this.content,
  625. examineTime: this.examineTime,
  626. };
  627. batchExamineRecord(data).then((response) => {
  628. if (response.code == 200) {
  629. this.getList();
  630. this.examineVisible = false;
  631. this.content = "";
  632. this.$modal.msgSuccess("操作成功");
  633. }
  634. // this.userList = response.rows;
  635. // this.total = response.total;
  636. // this.loading = false;
  637. });
  638. },
  639. /** 下载附件 */
  640. handleDownload(row) {
  641. const ids = this.ids.toString();
  642. const url = "/api/project/download?ids=" + ids;
  643. const _this = this;
  644. var date = new Date();
  645. var year = date.getFullYear();
  646. var month =
  647. date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
  648. var day = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
  649. var hours = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
  650. var minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
  651. var seconds = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
  652. var time = year + "" + month + "" + day + "" + hours + "" + minutes + "" + seconds;
  653. this.$modal
  654. .confirm("确认下载已经勾选的项目附件吗?")
  655. .then(function () {
  656. _this.$download.zip(url, `项目打卡数据_${time}`);
  657. _this.$modal.msgSuccess("下载成功");
  658. })
  659. .then(() => {})
  660. .catch(() => {});
  661. },
  662. /** 导出按钮操作 */
  663. handleExport() {
  664. this.download(
  665. "api/project/listRecord/export",
  666. {
  667. ...this.queryParams,
  668. },
  669. `project_record_${new Date().getTime()}.xlsx`
  670. );
  671. },
  672. /** 导入按钮操作 */
  673. handleImport() {
  674. this.upload.title = "项目导入";
  675. this.upload.open = true;
  676. },
  677. /** 下载模板操作 */
  678. importTemplate() {
  679. this.download(
  680. "api/project/listRecord/importTemplate",
  681. {},
  682. `project_record_template_${new Date().getTime()}.xlsx`
  683. );
  684. },
  685. // 文件上传中处理
  686. handleFileUploadProgress(event, file, fileList) {
  687. this.upload.isUploading = true;
  688. },
  689. // 文件上传成功处理
  690. handleFileSuccess(response, file, fileList) {
  691. this.upload.open = false;
  692. this.upload.isUploading = false;
  693. this.$refs.upload.clearFiles();
  694. this.$alert(
  695. "<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" +
  696. response.msg +
  697. "</div>",
  698. "导入结果",
  699. { dangerouslyUseHTMLString: true }
  700. );
  701. this.getList();
  702. },
  703. // 提交上传文件
  704. submitFileForm() {
  705. this.$refs.upload.submit();
  706. },
  707. },
  708. };
  709. </script>
  710. <style lang="scss" scoped>
  711. // .head-container {
  712. // word-wrap: break-word;
  713. // overflow: hidden;
  714. // word-break: break-all;
  715. // }
  716. </style>