Selaa lähdekoodia

+ 考勤组编辑

chen.cheng 6 kuukautta sitten
vanhempi
commit
63981b4903
2 muutettua tiedostoa jossa 393 lisäystä ja 0 poistoa
  1. 44 0
      src/api/park/attendGroup.js
  2. 349 0
      src/views/park/attendGroup/index.vue

+ 44 - 0
src/api/park/attendGroup.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询考勤组列表
+export function listAttendGroup(query) {
+  return request({
+    url: '/park/attendGroup/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询考勤组详细
+export function getAttendGroup(id) {
+  return request({
+    url: '/park/attendGroup/' + id,
+    method: 'get'
+  })
+}
+
+// 新增考勤组
+export function addAttendGroup(data) {
+  return request({
+    url: '/park/attendGroup',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改考勤组
+export function updateAttendGroup(data) {
+  return request({
+    url: '/park/attendGroup',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除考勤组
+export function delAttendGroup(id) {
+  return request({
+    url: '/park/attendGroup/' + id,
+    method: 'delete'
+  })
+}

+ 349 - 0
src/views/park/attendGroup/index.vue

@@ -0,0 +1,349 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="95px">
+      <el-form-item label="考勤组名称" prop="name">
+        <el-input
+          v-model="queryParams.name"
+          placeholder="请输入考勤组名称"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </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="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['park:attendGroup:add']"
+        >新增
+        </el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['park:attendGroup:edit']"
+        >修改
+        </el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['park:attendGroup:remove']"
+        >删除
+        </el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['park:attendGroup:export']"
+        >导出
+        </el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="attendGroupList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center"/>
+      <el-table-column label="编号" align="center" prop="id"/>
+      <el-table-column label="考勤组名称" align="center" prop="name"/>
+      <el-table-column label="备注" align="center" prop="remark"/>
+      <el-table-column label="考勤时间" align="center" prop="timeRange">
+        <template v-slot:default="scope">
+          <el-tag v-for="item in scope.row.timeRange" :key="item">{{ item.start }}~{{ item.end }}</el-tag>
+        </template>
+      </el-table-column>
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['park:attendGroup:edit']"
+          >修改
+          </el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['park:attendGroup:remove']"
+          >删除
+          </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-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="100px">
+        <el-form-item label="考勤组名称" prop="name">
+          <el-input v-model="form.name" placeholder="请输入考勤组名称"/>
+        </el-form-item>
+        <el-form-item label="考勤时间" prop="timeRange">
+          <div class="time-range-wrap">
+            <div class="time-range-item" v-for="(item, index) in form.timeRange" :key="index">
+              <el-time-select
+                placeholder="起始时间"
+                v-model="item.start"
+                :picker-options="{
+                                start: '00:00',
+                                step: '00:15',
+                                end: '18:30'
+                              }">
+              </el-time-select>
+              <span>-</span>
+              <el-time-select
+                placeholder="结束时间"
+                v-model="item.end"
+                :picker-options="{
+                                start: '08:30',
+                                step: '00:15',
+                                end: '23:59',
+                                minTime: item.start
+                              }">
+              </el-time-select>
+              <el-button
+                v-if="index==0"
+                :style="{color: '#00afff'}"
+                type="text"
+                icon="el-icon-circle-plus"
+                @click.prevent="addTimeRange(index)"
+              ></el-button>
+              <el-button
+                v-else
+                :style="{color: 'red'}"
+                type="text"
+                icon="el-icon-remove"
+                @click.prevent="removeTimeRange(index)"
+              ></el-button>
+            </div>
+          </div>
+        </el-form-item>
+        <el-form-item label="备注" prop="remark">
+          <el-input v-model="form.remark" placeholder="请输入备注"/>
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import {
+  addAttendGroup,
+  delAttendGroup,
+  getAttendGroup,
+  listAttendGroup,
+  updateAttendGroup
+} from "@/api/park/attendGroup";
+
+export default {
+  name: "AttendGroup",
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 考勤组表格数据
+      attendGroupList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        name: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {}
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询考勤组列表 */
+    getList() {
+      this.loading = true;
+      listAttendGroup(this.queryParams).then(response => {
+        this.attendGroupList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        name: null,
+        remark: null,
+        poly: null,
+        timeRange: null,
+        updateTime: null,
+        createTime: null,
+        createBy: null,
+        updateBy: null,
+        tenantId: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.id)
+      this.single = selection.length !== 1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加考勤组";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getAttendGroup(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改考勤组";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateAttendGroup(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addAttendGroup(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除考勤组编号为"' + ids + '"的数据项?').then(function () {
+        return delAttendGroup(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {
+      });
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('park/attendGroup/export', {
+        ...this.queryParams
+      }, `attendGroup_${new Date().getTime()}.xlsx`)
+    },
+    addTimeRange(index) {
+      this.form.timeRange = this.form.timeRange || [];
+      this.form.timeRange.push({});
+    },
+    removeTimeRange(index) {
+      this.form.timeRange.splice(index, 1);
+    },
+  }
+};
+</script>
+<style scoped lang="scss">
+.time-range-wrap {
+  display: flex;
+  align-items: flex-start;
+  flex-direction: column;
+  justify-content: flex-start;
+
+  .time-range-item {
+    width: 100%;
+    display: flex;
+    align-items: center;
+    justify-content: flex-start;
+
+    span {
+      margin: 0 10px;
+    }
+
+    .el-button {
+      margin-left: 10px;
+      font-size: 20px;
+    }
+
+    .el-date-editor.el-input, .el-date-editor.el-input__inner {
+      width: 120px;
+    }
+  }
+}
+</style>