浏览代码

+ 考勤组编辑

chen.cheng 6 月之前
父节点
当前提交
5cf1676fb7

+ 52 - 0
src/api/park/attendGroupUsr.js

@@ -0,0 +1,52 @@
+import request from '@/utils/request'
+
+// 查询考勤组人员列表
+export function listAttendGroupUsr(query) {
+  return request({
+    url: '/park/attendGroupUsr/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询考勤组人员详细
+export function getAttendGroupUsr(id) {
+  return request({
+    url: '/park/attendGroupUsr/' + id,
+    method: 'get'
+  })
+}
+
+// 新增考勤组人员
+export function addAttendGroupUsr(data) {
+  return request({
+    url: '/park/attendGroupUsr',
+    method: 'post',
+    data: data
+  })
+}
+
+export function batchAddAttendGroupUsr(data) {
+  return request({
+    url: '/park/attendGroupUsr/addGroupUsr',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改考勤组人员
+export function updateAttendGroupUsr(data) {
+  return request({
+    url: '/park/attendGroupUsr',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除考勤组人员
+export function delAttendGroupUsr(id) {
+  return request({
+    url: '/park/attendGroupUsr/' + id,
+    method: 'delete'
+  })
+}

+ 253 - 0
src/components/UsrSelect/index.vue

@@ -0,0 +1,253 @@
+<template>
+  <div class="app-container">
+    <el-row :gutter="20">
+      <!--部门数据-->
+      <el-col :span="4" :xs="24">
+        <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">
+          <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="20" :xs="24">
+        <el-form :model="queryParams" ref="queryForm" size="small" :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.native="handleQuery"
+            />
+          </el-form-item>
+          <el-form-item label="手机号码" prop="phonenumber">
+            <el-input
+                v-model="queryParams.phonenumber"
+                placeholder="请输入手机号码"
+                clearable
+                style="width: 240px"
+                @keyup.enter.native="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 dict.type.sys_normal_disable"
+                  :key="dict.value"
+                  :label="dict.label"
+                  :value="dict.value"
+              />
+            </el-select>
+          </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-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[0].visible"/>
+          <el-table-column label="用户名称" align="center" key="userName" prop="userName" v-if="columns[1].visible"
+                           :show-overflow-tooltip="true"/>
+          <el-table-column label="用户昵称" align="center" key="nickName" prop="nickName" v-if="columns[2].visible"
+                           :show-overflow-tooltip="true"/>
+          <el-table-column label="部门" align="center" key="deptName" prop="dept.deptName" v-if="columns[3].visible"
+                           :show-overflow-tooltip="true"/>
+          <el-table-column label="手机号码" align="center" key="phonenumber" prop="phonenumber"
+                           v-if="columns[4].visible" width="120"/>
+          <el-table-column label="状态" align="center" key="status" v-if="columns[5].visible">
+            <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="创建时间" 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>
+
+        <pagination
+            v-show="total>0"
+            :total="total"
+            :page.sync="queryParams.pageNum"
+            :limit.sync="queryParams.pageSize"
+            @pagination="getList"
+        />
+      </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script>
+import {changeUserStatus, deptTreeSelect, listUser} from "@/api/system/user";
+import Treeselect from "@riophae/vue-treeselect";
+import "@riophae/vue-treeselect/dist/vue-treeselect.css";
+
+export default {
+  name: "UserSelect",
+  dicts: ['sys_normal_disable', 'sys_user_sex'],
+  components: {Treeselect},
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 用户表格数据
+      userList: null,
+      // 弹出层标题
+      title: "",
+      // 部门树选项
+      deptOptions: undefined,
+      // 是否显示弹出层
+      open: false,
+      // 部门名称
+      deptName: undefined,
+      // 日期范围
+      dateRange: [],
+      // 岗位选项
+      postOptions: [],
+      // 角色选项
+      roleOptions: [],
+      // 表单参数
+      form: {},
+      defaultProps: {
+        children: "children",
+        label: "label"
+      },
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        userName: undefined,
+        phonenumber: undefined,
+        status: undefined,
+        deptId: undefined
+      },
+      selectUsrs: [],
+      // 列信息
+      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}
+      ],
+    };
+  },
+  watch: {
+    // 根据名称筛选部门树
+    deptName(val) {
+      this.$refs.tree.filter(val);
+    }
+  },
+  created() {
+    this.getList();
+    this.getDeptTree();
+  },
+  methods: {
+    /** 查询用户列表 */
+    getList() {
+      this.loading = true;
+      listUser(this.addDateRange(this.queryParams, this.dateRange)).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();
+    },
+    // 用户状态修改
+    handleStatusChange(row) {
+      let text = row.status === "0" ? "启用" : "停用";
+      this.$modal.confirm('确认要"' + text + '""' + row.userName + '"用户吗?').then(function () {
+        return changeUserStatus(row.userId, row.status);
+      }).then(() => {
+        this.$modal.msgSuccess(text + "成功");
+      }).catch(function () {
+        row.status = row.status === "0" ? "1" : "0";
+      });
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.dateRange = [];
+      this.resetForm("queryForm");
+      this.queryParams.deptId = undefined;
+      this.$refs.tree.setCurrentKey(null);
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.userId);
+      this.selectUsrs = selection;
+      this.single = selection.length != 1;
+      this.multiple = !selection.length;
+    },
+    getSelectUsrs() {
+      return this.selectUsrs;
+    }
+  }
+};
+</script>

+ 125 - 65
src/views/park/attendGroup/index.vue

@@ -3,10 +3,10 @@
     <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"
+            v-model="queryParams.name"
+            placeholder="请输入考勤组名称"
+            clearable
+            @keyup.enter.native="handleQuery"
         />
       </el-form-item>
       <el-form-item>
@@ -18,47 +18,47 @@
     <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']"
+            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']"
+            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']"
+            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']"
+            type="warning"
+            plain
+            icon="el-icon-download"
+            size="mini"
+            @click="handleExport"
+            v-hasPermi="['park:attendGroup:export']"
         >导出
         </el-button>
       </el-col>
@@ -78,19 +78,28 @@
       <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']"
+              size="mini"
+              type="text"
+              icon="el-icon-circle-plus"
+              @click="addAttendUsr(scope.row)"
+              v-hasPermi="['park:attendGroup:edit']"
+          >
+            添加考勤人员
+          </el-button>
+          <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']"
+              size="mini"
+              type="text"
+              icon="el-icon-delete"
+              @click="handleDelete(scope.row)"
+              v-hasPermi="['park:attendGroup:remove']"
           >删除
           </el-button>
         </template>
@@ -98,11 +107,11 @@
     </el-table>
 
     <pagination
-      v-show="total>0"
-      :total="total"
-      :page.sync="queryParams.pageNum"
-      :limit.sync="queryParams.pageSize"
-      @pagination="getList"
+        v-show="total>0"
+        :total="total"
+        :page.sync="queryParams.pageNum"
+        :limit.sync="queryParams.pageSize"
+        @pagination="getList"
     />
 
     <!-- 添加或修改考勤组对话框 -->
@@ -115,9 +124,9 @@
           <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="{
+                  placeholder="起始时间"
+                  v-model="item.start"
+                  :picker-options="{
                                 start: '00:00',
                                 step: '00:15',
                                 end: '18:30'
@@ -125,9 +134,9 @@
               </el-time-select>
               <span>-</span>
               <el-time-select
-                placeholder="结束时间"
-                v-model="item.end"
-                :picker-options="{
+                  placeholder="结束时间"
+                  v-model="item.end"
+                  :picker-options="{
                                 start: '08:30',
                                 step: '00:15',
                                 end: '23:59',
@@ -135,18 +144,18 @@
                               }">
               </el-time-select>
               <el-button
-                v-if="index==0"
-                :style="{color: '#00afff'}"
-                type="text"
-                icon="el-icon-circle-plus"
-                @click.prevent="addTimeRange(index)"
+                  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)"
+                  v-else
+                  :style="{color: 'red'}"
+                  type="text"
+                  icon="el-icon-remove"
+                  @click.prevent="removeTimeRange(index)"
               ></el-button>
             </div>
           </div>
@@ -158,9 +167,9 @@
           <el-input class="poly-input" placeholder="请配置考勤范围" v-model="form.poly">
             <template v-slot:append>
               <el-button
-                type="text"
-                icon="el-icon-map-location"
-                @click.prevent="removeTimeRange()"
+                  type="text"
+                  icon="el-icon-map-location"
+                  @click.prevent="removeTimeRange()"
               ></el-button>
             </template>
           </el-input>
@@ -171,6 +180,21 @@
         <el-button @click="cancel">取 消</el-button>
       </div>
     </el-dialog>
+    <el-dialog
+        title="添加考勤组人员"
+        @closed="()=>{
+          attendUsrDialogDestroy=true;
+        }"
+        :visible.sync="attendUsrOpen"
+        width="70vw"
+        append-to-body
+    >
+      <user-select v-if="!attendUsrDialogDestroy" ref="usrSelectRef"></user-select>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="confirmSelectUsr">确 定</el-button>
+        <el-button @click="()=>{attendUsrOpen=false}">取 消</el-button>
+      </div>
+    </el-dialog>
   </div>
 </template>
 
@@ -182,9 +206,12 @@ import {
   listAttendGroup,
   updateAttendGroup
 } from "@/api/park/attendGroup";
+import UserSelect from "@/components/UsrSelect/index.vue";
+import {batchAddAttendGroupUsr} from "@/api/park/attendGroupUsr";
 
 export default {
   name: "AttendGroup",
+  components: {UserSelect},
   data() {
     return {
       // 遮罩层
@@ -205,6 +232,10 @@ export default {
       title: "",
       // 是否显示弹出层
       open: false,
+      attendUsrOpen: false,
+      attendUsrDialogDestroy: false,
+      selectAttendUsr: [],
+      selectedGroup: null,
       // 查询参数
       queryParams: {
         pageNum: 1,
@@ -212,7 +243,9 @@ export default {
         name: null,
       },
       // 表单参数
-      form: {},
+      form: {
+        timeRange: [{}]
+      },
       // 表单校验
       rules: {}
     };
@@ -327,6 +360,33 @@ export default {
     removeTimeRange(index) {
       this.form.timeRange.splice(index, 1);
     },
+    addAttendUsr(row) {
+      this.selectedGroup = row;
+      this.attendUsrOpen = true;
+      this.attendUsrDialogDestroy = false;
+    },
+    confirmSelectUsr() {
+      this.selectAttendUsr = this.$refs.usrSelectRef.getSelectUsrs();
+      if (this.selectAttendUsr && this.selectAttendUsr.length > 0) {
+       const attendGroupUsrs = this.selectAttendUsr.map(usr => {
+          return {
+            attendGroupId: this.selectedGroup.id,
+            usrId: usr.userId,
+            usrName: usr.nickName,
+            usrDeptId: usr.deptId,
+            usrDept: usr.dept.deptName,
+          }
+        });
+        batchAddAttendGroupUsr(attendGroupUsrs).then(response => {
+          this.$modal.msgSuccess("添加成功");
+          this.attendUsrOpen = false;
+          this.attendUsrDialogDestroy = true;
+          this.getList();
+        });
+      }
+
+    },
+
   }
 };
 </script>

+ 264 - 0
src/views/park/attendGroupUsr/index.vue

@@ -0,0 +1,264 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="成员姓名" prop="usrName">
+        <el-input
+            v-model="queryParams.usrName"
+            placeholder="请输入成员姓名"
+            clearable
+            @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="部门名称" prop="usrDept">
+        <el-input
+            v-model="queryParams.usrDept"
+            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="danger"
+            plain
+            icon="el-icon-delete"
+            size="mini"
+            :disabled="multiple"
+            @click="handleDelete"
+            v-hasPermi="['park:attendGroupUsr: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:attendGroupUsr:export']"
+        >导出
+        </el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="attendGroupUsrList" @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="groupName"/>
+      <el-table-column label="成员姓名" align="center" prop="usrName"/>
+      <el-table-column label="部门名称" align="center" prop="usrDept"/>
+      <el-table-column label="添加时间" align="center" prop="createTime"/>
+      <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:attendGroupUsr:edit']"
+          >修改
+          </el-button>
+          <el-button
+              size="mini"
+              type="text"
+              icon="el-icon-delete"
+              @click="handleDelete(scope.row)"
+              v-hasPermi="['park:attendGroupUsr: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="80px">
+        <el-form-item label="成员姓名" prop="usrName">
+          <el-input v-model="form.usrName" placeholder="请输入成员姓名"/>
+        </el-form-item>
+        <el-form-item label="部门id" prop="usrDeptId">
+          <el-input v-model="form.usrDeptId" placeholder="请输入部门id"/>
+        </el-form-item>
+        <el-form-item label="部门名称" prop="usrDept">
+          <el-input v-model="form.usrDept" placeholder="请输入部门名称"/>
+        </el-form-item>
+        <el-form-item label="租户id" prop="tenantId">
+          <el-input v-model="form.tenantId" placeholder="请输入租户id"/>
+        </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 {
+  addAttendGroupUsr,
+  delAttendGroupUsr,
+  getAttendGroupUsr,
+  listAttendGroupUsr,
+  updateAttendGroupUsr
+} from "@/api/park/attendGroupUsr";
+
+export default {
+  name: "AttendGroupUsr",
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 考勤组人员表格数据
+      attendGroupUsrList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        usrName: null,
+        usrDept: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {}
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询考勤组人员列表 */
+    getList() {
+      this.loading = true;
+      listAttendGroupUsr(this.queryParams).then(response => {
+        this.attendGroupUsrList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        attendGroupId: null,
+        usrId: null,
+        usrName: null,
+        usrDeptId: null,
+        usrDept: 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
+      getAttendGroupUsr(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) {
+            updateAttendGroupUsr(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addAttendGroupUsr(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 delAttendGroupUsr(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {
+      });
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('park/attendGroupUsr/export', {
+        ...this.queryParams
+      }, `attendGroupUsr_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>