Kaynağa Gözat

王子文 班组管理 - 事故记录

wangggziwen 3 yıl önce
ebeveyn
işleme
8ce0adae91

+ 103 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/controller/TShiftAccidentController.java

@@ -0,0 +1,103 @@
+package com.ruoyi.project.shiftmgr.controller;
+
+import java.util.List;
+import org.springframework.security.access.prepost.PreAuthorize;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.PutMapping;
+import org.springframework.web.bind.annotation.DeleteMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+import com.ruoyi.framework.aspectj.lang.annotation.Log;
+import com.ruoyi.framework.aspectj.lang.enums.BusinessType;
+import com.ruoyi.project.shiftmgr.domain.TShiftAccident;
+import com.ruoyi.project.shiftmgr.service.ITShiftAccidentService;
+import com.ruoyi.framework.web.controller.BaseController;
+import com.ruoyi.framework.web.domain.AjaxResult;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.framework.web.page.TableDataInfo;
+
+/**
+ * 事故记录Controller
+ *
+ * @author ruoyi
+ * @date 2022-07-29
+ */
+@RestController
+@RequestMapping("/shiftmgr/accident")
+public class TShiftAccidentController extends BaseController
+{
+    @Autowired
+    private ITShiftAccidentService tShiftAccidentService;
+
+    /**
+     * 查询事故记录列表
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:accident:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(TShiftAccident tShiftAccident)
+    {
+        startPage();
+        List<TShiftAccident> list = tShiftAccidentService.selectTShiftAccidentList(tShiftAccident);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出事故记录列表
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:accident:export')")
+    @Log(title = "事故记录", businessType = BusinessType.EXPORT)
+    @GetMapping("/export")
+    public AjaxResult export(TShiftAccident tShiftAccident)
+    {
+        List<TShiftAccident> list = tShiftAccidentService.selectTShiftAccidentList(tShiftAccident);
+        ExcelUtil<TShiftAccident> util = new ExcelUtil<TShiftAccident>(TShiftAccident.class);
+        return util.exportExcel(list, "accident");
+    }
+
+    /**
+     * 获取事故记录详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:accident:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(tShiftAccidentService.selectTShiftAccidentById(id));
+    }
+
+    /**
+     * 新增事故记录
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:accident:add')")
+    @Log(title = "事故记录", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody TShiftAccident tShiftAccident)
+    {
+        return toAjax(tShiftAccidentService.insertTShiftAccident(tShiftAccident));
+    }
+
+    /**
+     * 修改事故记录
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:accident:edit')")
+    @Log(title = "事故记录", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody TShiftAccident tShiftAccident)
+    {
+        return toAjax(tShiftAccidentService.updateTShiftAccident(tShiftAccident));
+    }
+
+    /**
+     * 删除事故记录
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:accident:remove')")
+    @Log(title = "事故记录", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(tShiftAccidentService.deleteTShiftAccidentByIds(ids));
+    }
+}

+ 209 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/domain/TShiftAccident.java

@@ -0,0 +1,209 @@
+package com.ruoyi.project.shiftmgr.domain;
+
+import java.util.Date;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import com.ruoyi.framework.aspectj.lang.annotation.Excel;
+import com.ruoyi.framework.web.domain.BaseEntity;
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+
+/**
+ * 事故记录对象 t_shift_accident
+ *
+ * @author ruoyi
+ * @date 2022-07-29
+ */
+public class TShiftAccident extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** $column.columnComment */
+    private Long id;
+
+    /** 事故记录编号 */
+    @Excel(name = "事故记录编号")
+    private String accidentId;
+
+    /** 责任人,关联T_STAFFMGR表主键ID */
+    @Excel(name = "责任人")
+    private String personLiable;
+
+    /** 提出人,关联T_STAFFMGR表主键ID */
+    @Excel(name = "提出人,关联T_STAFFMGR表主键ID")
+    private String reporter;
+
+    /** 提出日期 */
+    @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
+    @Excel(name = "提出日期", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date reportDate;
+
+    /** 标题 */
+    @Excel(name = "标题")
+    private String title;
+
+    /** 内容 */
+    @Excel(name = "内容")
+    private String content;
+
+    /** 状态,0:正常;2:删除 */
+    private Long delFlag;
+
+    /** 创建人 */
+    @Excel(name = "创建人")
+    private Long createrCode;
+
+    /** 创建时间 */
+    @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
+    @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date createdate;
+
+    /** 修改人 */
+    @Excel(name = "修改人")
+    private Long updaterCode;
+
+    /** 修改时间 */
+    @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
+    @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date updatedate;
+
+    /** 部门编号 */
+    @Excel(name = "部门编号")
+    private Long deptId;
+
+    public void setId(Long id)
+    {
+        this.id = id;
+    }
+
+    public Long getId()
+    {
+        return id;
+    }
+    public void setAccidentId(String accidentId)
+    {
+        this.accidentId = accidentId;
+    }
+
+    public String getAccidentId()
+    {
+        return accidentId;
+    }
+    public void setPersonLiable(String personLiable)
+    {
+        this.personLiable = personLiable;
+    }
+
+    public String getPersonLiable()
+    {
+        return personLiable;
+    }
+    public void setReporter(String reporter)
+    {
+        this.reporter = reporter;
+    }
+
+    public String getReporter()
+    {
+        return reporter;
+    }
+    public void setReportDate(Date reportDate)
+    {
+        this.reportDate = reportDate;
+    }
+
+    public Date getReportDate()
+    {
+        return reportDate;
+    }
+    public void setTitle(String title)
+    {
+        this.title = title;
+    }
+
+    public String getTitle()
+    {
+        return title;
+    }
+    public void setContent(String content)
+    {
+        this.content = content;
+    }
+
+    public String getContent()
+    {
+        return content;
+    }
+    public void setDelFlag(Long delFlag)
+    {
+        this.delFlag = delFlag;
+    }
+
+    public Long getDelFlag()
+    {
+        return delFlag;
+    }
+    public void setCreaterCode(Long createrCode)
+    {
+        this.createrCode = createrCode;
+    }
+
+    public Long getCreaterCode()
+    {
+        return createrCode;
+    }
+    public void setCreatedate(Date createdate)
+    {
+        this.createdate = createdate;
+    }
+
+    public Date getCreatedate()
+    {
+        return createdate;
+    }
+    public void setUpdaterCode(Long updaterCode)
+    {
+        this.updaterCode = updaterCode;
+    }
+
+    public Long getUpdaterCode()
+    {
+        return updaterCode;
+    }
+    public void setUpdatedate(Date updatedate)
+    {
+        this.updatedate = updatedate;
+    }
+
+    public Date getUpdatedate()
+    {
+        return updatedate;
+    }
+    public void setDeptId(Long deptId)
+    {
+        this.deptId = deptId;
+    }
+
+    public Long getDeptId()
+    {
+        return deptId;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("accidentId", getAccidentId())
+            .append("personLiable", getPersonLiable())
+            .append("reporter", getReporter())
+            .append("reportDate", getReportDate())
+            .append("title", getTitle())
+            .append("content", getContent())
+            .append("delFlag", getDelFlag())
+            .append("createrCode", getCreaterCode())
+            .append("createdate", getCreatedate())
+            .append("updaterCode", getUpdaterCode())
+            .append("updatedate", getUpdatedate())
+            .append("deptId", getDeptId())
+            .toString();
+    }
+}

+ 2 - 2
master/src/main/java/com/ruoyi/project/shiftmgr/domain/TShiftImprovement.java

@@ -19,7 +19,7 @@ public class TShiftImprovement extends BaseEntity
 
     private Long id;
 
-    /** 提出人 */
+    /** 提出人,关联T_STAFFMGR表主键ID */
     @Excel(name = "提出人")
     private String reporter;
 
@@ -44,7 +44,7 @@ public class TShiftImprovement extends BaseEntity
     @Excel(name = "是否采纳")
     private Long isAccepted;
 
-    /** 状态 */
+    /** 状态,0:正常;2:删除 */
     private Long delFlag;
 
     /** 创建人 */

+ 63 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/mapper/TShiftAccidentMapper.java

@@ -0,0 +1,63 @@
+package com.ruoyi.project.shiftmgr.mapper;
+
+import java.util.List;
+import com.ruoyi.framework.aspectj.lang.annotation.DataScope;
+import com.ruoyi.project.shiftmgr.domain.TShiftAccident;
+
+/**
+ * 事故记录Mapper接口
+ * 
+ * @author ruoyi
+ * @date 2022-07-29
+ */
+public interface TShiftAccidentMapper 
+{
+    /**
+     * 查询事故记录
+     * 
+     * @param id 事故记录ID
+     * @return 事故记录
+     */
+    public TShiftAccident selectTShiftAccidentById(Long id);
+
+    /**
+     * 查询事故记录列表
+     * 
+     * @param tShiftAccident 事故记录
+     * @return 事故记录集合
+     */
+    @DataScope(deptAlias = "d")
+    public List<TShiftAccident> selectTShiftAccidentList(TShiftAccident tShiftAccident);
+
+    /**
+     * 新增事故记录
+     * 
+     * @param tShiftAccident 事故记录
+     * @return 结果
+     */
+    public int insertTShiftAccident(TShiftAccident tShiftAccident);
+
+    /**
+     * 修改事故记录
+     * 
+     * @param tShiftAccident 事故记录
+     * @return 结果
+     */
+    public int updateTShiftAccident(TShiftAccident tShiftAccident);
+
+    /**
+     * 删除事故记录
+     * 
+     * @param id 事故记录ID
+     * @return 结果
+     */
+    public int deleteTShiftAccidentById(Long id);
+
+    /**
+     * 批量删除事故记录
+     * 
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    public int deleteTShiftAccidentByIds(Long[] ids);
+}

+ 61 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/service/ITShiftAccidentService.java

@@ -0,0 +1,61 @@
+package com.ruoyi.project.shiftmgr.service;
+
+import java.util.List;
+import com.ruoyi.project.shiftmgr.domain.TShiftAccident;
+
+/**
+ * 事故记录Service接口
+ * 
+ * @author ruoyi
+ * @date 2022-07-29
+ */
+public interface ITShiftAccidentService 
+{
+    /**
+     * 查询事故记录
+     * 
+     * @param id 事故记录ID
+     * @return 事故记录
+     */
+    public TShiftAccident selectTShiftAccidentById(Long id);
+
+    /**
+     * 查询事故记录列表
+     * 
+     * @param tShiftAccident 事故记录
+     * @return 事故记录集合
+     */
+    public List<TShiftAccident> selectTShiftAccidentList(TShiftAccident tShiftAccident);
+
+    /**
+     * 新增事故记录
+     * 
+     * @param tShiftAccident 事故记录
+     * @return 结果
+     */
+    public int insertTShiftAccident(TShiftAccident tShiftAccident);
+
+    /**
+     * 修改事故记录
+     * 
+     * @param tShiftAccident 事故记录
+     * @return 结果
+     */
+    public int updateTShiftAccident(TShiftAccident tShiftAccident);
+
+    /**
+     * 批量删除事故记录
+     * 
+     * @param ids 需要删除的事故记录ID
+     * @return 结果
+     */
+    public int deleteTShiftAccidentByIds(Long[] ids);
+
+    /**
+     * 删除事故记录信息
+     * 
+     * @param id 事故记录ID
+     * @return 结果
+     */
+    public int deleteTShiftAccidentById(Long id);
+}

+ 93 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/service/impl/TShiftAccidentServiceImpl.java

@@ -0,0 +1,93 @@
+package com.ruoyi.project.shiftmgr.service.impl;
+
+import java.util.List;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.project.shiftmgr.mapper.TShiftAccidentMapper;
+import com.ruoyi.project.shiftmgr.domain.TShiftAccident;
+import com.ruoyi.project.shiftmgr.service.ITShiftAccidentService;
+
+/**
+ * 事故记录Service业务层处理
+ *
+ * @author ruoyi
+ * @date 2022-07-29
+ */
+@Service
+public class TShiftAccidentServiceImpl implements ITShiftAccidentService
+{
+    @Autowired
+    private TShiftAccidentMapper tShiftAccidentMapper;
+
+    /**
+     * 查询事故记录
+     *
+     * @param id 事故记录ID
+     * @return 事故记录
+     */
+    @Override
+    public TShiftAccident selectTShiftAccidentById(Long id)
+    {
+        return tShiftAccidentMapper.selectTShiftAccidentById(id);
+    }
+
+    /**
+     * 查询事故记录列表
+     *
+     * @param tShiftAccident 事故记录
+     * @return 事故记录
+     */
+    @Override
+    public List<TShiftAccident> selectTShiftAccidentList(TShiftAccident tShiftAccident)
+    {
+        return tShiftAccidentMapper.selectTShiftAccidentList(tShiftAccident);
+    }
+
+    /**
+     * 新增事故记录
+     *
+     * @param tShiftAccident 事故记录
+     * @return 结果
+     */
+    @Override
+    public int insertTShiftAccident(TShiftAccident tShiftAccident)
+    {
+        return tShiftAccidentMapper.insertTShiftAccident(tShiftAccident);
+    }
+
+    /**
+     * 修改事故记录
+     *
+     * @param tShiftAccident 事故记录
+     * @return 结果
+     */
+    @Override
+    public int updateTShiftAccident(TShiftAccident tShiftAccident)
+    {
+        return tShiftAccidentMapper.updateTShiftAccident(tShiftAccident);
+    }
+
+    /**
+     * 批量删除事故记录
+     *
+     * @param ids 需要删除的事故记录ID
+     * @return 结果
+     */
+    @Override
+    public int deleteTShiftAccidentByIds(Long[] ids)
+    {
+        return tShiftAccidentMapper.deleteTShiftAccidentByIds(ids);
+    }
+
+    /**
+     * 删除事故记录信息
+     *
+     * @param id 事故记录ID
+     * @return 结果
+     */
+    @Override
+    public int deleteTShiftAccidentById(Long id)
+    {
+        return tShiftAccidentMapper.deleteTShiftAccidentById(id);
+    }
+}

+ 120 - 0
master/src/main/resources/mybatis/shiftmgr/TShiftAccidentMapper.xml

@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.project.shiftmgr.mapper.TShiftAccidentMapper">
+    
+    <resultMap type="TShiftAccident" id="TShiftAccidentResult">
+        <result property="id"    column="id"    />
+        <result property="accidentId"    column="accident_id"    />
+        <result property="personLiable"    column="person_liable"    />
+        <result property="reporter"    column="reporter"    />
+        <result property="reportDate"    column="report_date"    />
+        <result property="title"    column="title"    />
+        <result property="content"    column="content"    />
+        <result property="delFlag"    column="del_flag"    />
+        <result property="createrCode"    column="creater_code"    />
+        <result property="createdate"    column="createdate"    />
+        <result property="updaterCode"    column="updater_code"    />
+        <result property="updatedate"    column="updatedate"    />
+        <result property="deptId"    column="dept_id"    />
+        <result property="deptName" column="dept_name" />
+    </resultMap>
+
+    <sql id="selectTShiftAccidentVo">
+        select d.id, d.accident_id, d.person_liable, d.reporter, d.report_date, d.title, d.content, d.del_flag, d.creater_code, d.createdate, d.updater_code, d.updatedate, d.dept_id from t_shift_accident d
+    </sql>
+
+    <select id="selectTShiftAccidentList" parameterType="TShiftAccident" resultMap="TShiftAccidentResult">
+        <include refid="selectTShiftAccidentVo"/>
+        <where>  
+            <if test="accidentId != null  and accidentId != ''"> and accident_id = #{accidentId}</if>
+            <if test="personLiable != null  and personLiable != ''"> and person_liable = #{personLiable}</if>
+            <if test="reporter != null  and reporter != ''"> and reporter = #{reporter}</if>
+            <if test="reportDate != null "> and report_date = #{reportDate}</if>
+            <if test="title != null  and title != ''"> and title = #{title}</if>
+            <if test="content != null  and content != ''"> and content = #{content}</if>
+            <if test="createrCode != null "> and creater_code = #{createrCode}</if>
+            <if test="createdate != null "> and createdate = #{createdate}</if>
+            <if test="updaterCode != null "> and updater_code = #{updaterCode}</if>
+            <if test="updatedate != null "> and updatedate = #{updatedate}</if>
+            <if test="deptId != null "> and dept_id = #{deptId}</if>
+            and d.del_flag = 0
+        </where>
+        <!-- 数据范围过滤 -->
+        ${params.dataScope}
+    </select>
+    
+    <select id="selectTShiftAccidentById" parameterType="Long" resultMap="TShiftAccidentResult">
+        <include refid="selectTShiftAccidentVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertTShiftAccident" parameterType="TShiftAccident">
+        <selectKey keyProperty="id" resultType="long" order="BEFORE">
+            SELECT SEQ_T_SHIFT_ACCIDENT.NEXTVAL as id FROM DUAL
+        </selectKey>
+        insert into t_shift_accident
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="id != null">id,</if>
+            <if test="accidentId != null">accident_id,</if>
+            <if test="personLiable != null">person_liable,</if>
+            <if test="reporter != null">reporter,</if>
+            <if test="reportDate != null">report_date,</if>
+            <if test="title != null">title,</if>
+            <if test="content != null">content,</if>
+            <if test="delFlag != null">del_flag,</if>
+            <if test="createrCode != null">creater_code,</if>
+            <if test="createdate != null">createdate,</if>
+            <if test="updaterCode != null">updater_code,</if>
+            <if test="updatedate != null">updatedate,</if>
+            <if test="deptId != null">dept_id,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="id != null">#{id},</if>
+            <if test="accidentId != null">#{accidentId},</if>
+            <if test="personLiable != null">#{personLiable},</if>
+            <if test="reporter != null">#{reporter},</if>
+            <if test="reportDate != null">#{reportDate},</if>
+            <if test="title != null">#{title},</if>
+            <if test="content != null">#{content},</if>
+            <if test="delFlag != null">#{delFlag},</if>
+            <if test="createrCode != null">#{createrCode},</if>
+            <if test="createdate != null">#{createdate},</if>
+            <if test="updaterCode != null">#{updaterCode},</if>
+            <if test="updatedate != null">#{updatedate},</if>
+            <if test="deptId != null">#{deptId},</if>
+         </trim>
+    </insert>
+
+    <update id="updateTShiftAccident" parameterType="TShiftAccident">
+        update t_shift_accident
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="accidentId != null">accident_id = #{accidentId},</if>
+            <if test="personLiable != null">person_liable = #{personLiable},</if>
+            <if test="reporter != null">reporter = #{reporter},</if>
+            <if test="reportDate != null">report_date = #{reportDate},</if>
+            <if test="title != null">title = #{title},</if>
+            <if test="content != null">content = #{content},</if>
+            <if test="delFlag != null">del_flag = #{delFlag},</if>
+            <if test="createrCode != null">creater_code = #{createrCode},</if>
+            <if test="createdate != null">createdate = #{createdate},</if>
+            <if test="updaterCode != null">updater_code = #{updaterCode},</if>
+            <if test="updatedate != null">updatedate = #{updatedate},</if>
+            <if test="deptId != null">dept_id = #{deptId},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <update id="deleteTShiftAccidentById" parameterType="Long">
+        update t_shift_accident set del_flag = 2 where id = #{id}
+    </update>
+
+    <update id="deleteTShiftAccidentByIds" parameterType="String">
+        update t_shift_accident set del_flag = 2 where id in
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </update>
+    
+</mapper>

+ 53 - 0
ui/src/api/shiftmgr/accident.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询事故记录列表
+export function listAccident(query) {
+  return request({
+    url: '/shiftmgr/accident/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询事故记录详细
+export function getAccident(id) {
+  return request({
+    url: '/shiftmgr/accident/' + id,
+    method: 'get'
+  })
+}
+
+// 新增事故记录
+export function addAccident(data) {
+  return request({
+    url: '/shiftmgr/accident',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改事故记录
+export function updateAccident(data) {
+  return request({
+    url: '/shiftmgr/accident',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除事故记录
+export function delAccident(id) {
+  return request({
+    url: '/shiftmgr/accident/' + id,
+    method: 'delete'
+  })
+}
+
+// 导出事故记录
+export function exportAccident(query) {
+  return request({
+    url: '/shiftmgr/accident/export',
+    method: 'get',
+    params: query
+  })
+}

+ 535 - 0
ui/src/views/shiftmgr/eventmgr/accident/index.vue

@@ -0,0 +1,535 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="事故记录编号" prop="accidentId">
+        <el-input
+          v-model="queryParams.accidentId"
+          placeholder="请输入事故记录编号"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="责任人" prop="personLiable">
+        <el-input
+          v-model="queryParams.personLiable"
+          placeholder="请输入责任人"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="提出人" prop="reporter">
+        <el-input
+          v-model="queryParams.reporter"
+          placeholder="请输入提出人"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="提出日期" prop="reportDate">
+        <el-date-picker clearable size="small" style="width: 200px"
+          v-model="queryParams.reportDate"
+          type="date"
+          value-format="yyyy-MM-dd"
+          placeholder="选择提出日期">
+        </el-date-picker>
+      </el-form-item>
+      <el-form-item label="标题" prop="title">
+        <el-input
+          v-model="queryParams.title"
+          placeholder="请输入标题"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="创建人" prop="createrCode">
+        <el-input
+          v-model="queryParams.createrCode"
+          placeholder="请输入创建人"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="创建时间" prop="createdate">
+        <el-date-picker clearable size="small" style="width: 200px"
+          v-model="queryParams.createdate"
+          type="date"
+          value-format="yyyy-MM-dd"
+          placeholder="选择创建时间">
+        </el-date-picker>
+      </el-form-item>
+      <el-form-item label="修改人" prop="updaterCode">
+        <el-input
+          v-model="queryParams.updaterCode"
+          placeholder="请输入修改人"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="修改时间" prop="updatedate">
+        <el-date-picker clearable size="small" style="width: 200px"
+          v-model="queryParams.updatedate"
+          type="date"
+          value-format="yyyy-MM-dd"
+          placeholder="选择修改时间">
+        </el-date-picker>
+      </el-form-item>
+      <!--<el-form-item label="部门编号" prop="deptId">-->
+        <!--<el-input-->
+          <!--v-model="queryParams.deptId"-->
+          <!--placeholder="请输入部门编号"-->
+          <!--clearable-->
+          <!--size="small"-->
+          <!--@keyup.enter.native="handleQuery"-->
+        <!--/>-->
+      <!--</el-form-item>-->
+      <el-form-item>
+        <el-button type="cyan" 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"
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['shiftmgr:accident:add']"
+        >新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['shiftmgr:accident:edit']"
+        >修改</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['shiftmgr:accident:remove']"
+        >删除</el-button>
+      </el-col>
+        <el-col :span="1.5">
+            <el-button
+                    type="info"
+                    icon="el-icon-upload2"
+                    size="mini"
+                    @click="handleImport"
+                    v-hasPermi="['shiftmgr:accident:edit']"
+            >导入</el-button>
+        </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['shiftmgr:accident:export']"
+        >导出</el-button>
+      </el-col>
+	  <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="accidentList" @selection-change="handleSelectionChange" :height="clientHeight" border>
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="事故记录编号" align="center" prop="accidentId" :show-overflow-tooltip="true"/>
+      <el-table-column label="责任人" align="center" prop="personLiable" :show-overflow-tooltip="true"/>
+      <el-table-column label="提出人" align="center" prop="reporter" :show-overflow-tooltip="true"/>
+      <el-table-column label="提出日期" align="center" prop="reportDate">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.reportDate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="标题" align="center" prop="title" :show-overflow-tooltip="true"/>
+      <el-table-column label="内容" align="center" prop="content" :show-overflow-tooltip="true"/>
+      <el-table-column label="创建人" align="center" prop="createrCode" :show-overflow-tooltip="true"/>
+      <el-table-column label="创建时间" align="center" prop="createdate">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.createdate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="修改人" align="center" prop="updaterCode" :show-overflow-tooltip="true"/>
+      <el-table-column label="修改时间" align="center" prop="updatedate">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.updatedate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <!--<el-table-column label="部门编号" align="center" prop="deptId" :show-overflow-tooltip="true"/>-->
+      <el-table-column label="操作" align="center" fixed="right" width="120" 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="['shiftmgr:accident:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['shiftmgr:accident: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="id">-->
+          <!--<el-input v-model="form.id" placeholder="请输入部门编号" />-->
+        <!--</el-form-item>-->
+        <el-form-item label="事故记录编号" prop="accidentId">
+          <el-input v-model="form.accidentId" placeholder="请输入事故记录编号" />
+        </el-form-item>
+        <el-form-item label="责任人" prop="personLiable">
+          <el-input v-model="form.personLiable" placeholder="请输入责任人" />
+        </el-form-item>
+        <el-form-item label="提出人" prop="reporter">
+          <el-input v-model="form.reporter" placeholder="请输入提出人" />
+        </el-form-item>
+        <el-form-item label="提出日期" prop="reportDate">
+          <el-date-picker clearable size="small" style="width: 200px"
+            v-model="form.reportDate"
+            type="date"
+            value-format="yyyy-MM-dd"
+            placeholder="选择提出日期">
+          </el-date-picker>
+        </el-form-item>
+        <el-form-item label="标题" prop="title">
+          <el-input v-model="form.title" placeholder="请输入标题" />
+        </el-form-item>
+        <el-form-item label="内容">
+          <el-input v-model="form.content" placeholder="请输入内容" />
+        </el-form-item>
+        <el-form-item label="状态" prop="delFlag">
+          <el-input v-model="form.delFlag" placeholder="请输入状态" />
+        </el-form-item>
+        <!--<el-form-item label="创建人" prop="createrCode">-->
+          <!--<el-input v-model="form.createrCode" placeholder="请输入创建人" />-->
+        <!--</el-form-item>-->
+        <!--<el-form-item label="创建时间" prop="createdate">-->
+          <!--<el-date-picker clearable size="small" style="width: 200px"-->
+            <!--v-model="form.createdate"-->
+            <!--type="date"-->
+            <!--value-format="yyyy-MM-dd"-->
+            <!--placeholder="选择创建时间">-->
+          <!--</el-date-picker>-->
+        <!--</el-form-item>-->
+        <!--<el-form-item label="修改人" prop="updaterCode">-->
+          <!--<el-input v-model="form.updaterCode" placeholder="请输入修改人" />-->
+        <!--</el-form-item>-->
+        <!--<el-form-item label="修改时间" prop="updatedate">-->
+          <!--<el-date-picker clearable size="small" style="width: 200px"-->
+            <!--v-model="form.updatedate"-->
+            <!--type="date"-->
+            <!--value-format="yyyy-MM-dd"-->
+            <!--placeholder="选择修改时间">-->
+          <!--</el-date-picker>-->
+        <!--</el-form-item>-->
+        <!--<el-form-item label="部门编号" prop="deptId">-->
+          <!--<el-input v-model="form.deptId" placeholder="请输入部门编号" />-->
+        <!--</el-form-item>-->
+          <!--<el-form-item label="归属部门" prop="deptId">-->
+              <!--<treeselect v-model="form.deptId" :options="deptOptions" :show-count="true" 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>
+      <!-- 用户导入对话框 -->
+      <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" slot="tip">
+                  <el-checkbox v-model="upload.updateSupport" />是否更新已经存在的用户数据
+                  <el-link type="info" style="font-size:12px" @click="importTemplate">下载模板</el-link>
+              </div>
+              <div class="el-upload__tip" style="color:red" slot="tip">提示:仅允许导入“xls”或“xlsx”格式文件!</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>
+  </div>
+</template>
+
+<script>
+import { listAccident, getAccident, delAccident, addAccident, updateAccident, exportAccident, importTemplate} from "@/api/shiftmgr/accident";
+import { treeselect } from "@/api/system/dept";
+import { getToken } from "@/utils/auth";
+import Treeselect from "@riophae/vue-treeselect";
+import "@riophae/vue-treeselect/dist/vue-treeselect.css";
+import Editor from '@/components/Editor';
+
+export default {
+  name: "Accident",
+  components: { Treeselect },
+  // components: { Editor },
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 事故记录表格数据
+      accidentList: [],
+      // 弹出层标题
+      title: "",
+      // 部门树选项
+      deptOptions: undefined,
+      clientHeight:300,
+      // 是否显示弹出层
+      open: false,
+        // 用户导入参数
+        upload: {
+            // 是否显示弹出层(用户导入)
+            open: false,
+            // 弹出层标题(用户导入)
+            title: "",
+            // 是否禁用上传
+            isUploading: false,
+            // 是否更新已经存在的用户数据
+            updateSupport: 0,
+            // 设置上传的请求头部
+            headers: { Authorization: "Bearer " + getToken() },
+            // 上传的地址
+            url: process.env.VUE_APP_BASE_API + "/shiftmgr/accident/importData"
+        },
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 20,
+        accidentId: null,
+        personLiable: null,
+        reporter: null,
+        reportDate: null,
+        title: null,
+        content: null,
+        createrCode: null,
+        createdate: null,
+        updaterCode: null,
+        updatedate: null,
+        deptId: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+      }
+    };
+  },
+  watch: {
+        // 根据名称筛选部门树
+        deptName(val) {
+            this.$refs.tree.filter(val);
+        }
+   },
+  created() {
+      //设置表格高度对应屏幕高度
+      this.$nextTick(() => {
+          this.clientHeight = document.body.clientHeight -250
+      })
+    this.getList();
+    this.getTreeselect();
+  },
+  methods: {
+    /** 查询事故记录列表 */
+    getList() {
+      this.loading = true;
+      listAccident(this.queryParams).then(response => {
+        this.accidentList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+     /** 查询部门下拉树结构 */
+     getTreeselect() {
+          treeselect().then(response => {
+              this.deptOptions = response.data;
+          });
+     },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        accidentId: null,
+        personLiable: null,
+        reporter: null,
+        reportDate: null,
+        title: null,
+        content: null,
+        delFlag: null,
+        createrCode: null,
+        createdate: null,
+        updaterCode: null,
+        updatedate: null,
+        deptId: 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
+      getAccident(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) {
+            updateAccident(this.form).then(response => {
+              this.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addAccident(this.form).then(response => {
+              this.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$confirm('是否确认删除?', "警告", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        }).then(function() {
+          return delAccident(ids);
+        }).then(() => {
+          this.getList();
+          this.msgSuccess("删除成功");
+        })
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      const queryParams = this.queryParams;
+      this.$confirm('是否确认导出所有事故记录数据项?', "警告", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        }).then(function() {
+          return exportAccident(queryParams);
+        }).then(response => {
+          this.download(response.msg);
+        })
+    },
+      /** 导入按钮操作 */
+      handleImport() {
+          this.upload.title = "用户导入";
+          this.upload.open = true;
+      },
+      /** 下载模板操作 */
+      importTemplate() {
+          importTemplate().then(response => {
+              this.download(response.msg);
+          });
+      },
+      // 文件上传中处理
+      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(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
+          this.getList();
+      },
+      // 提交上传文件
+      submitFileForm() {
+          this.$refs.upload.submit();
+      }
+  }
+};
+</script>