若依代码生成

在若依框架中,以下是这些代码的作用及它们在程序运行中的关联方式:

1. `domain.java`:通常用于定义实体类,它描述了与数据库表对应的对象结构,包含属性和对应的访问方法。作用是封装数据,为数据的操作提供基础。

2. `mapper.java`:定义了与数据库操作相关的接口方法,如查询、插入、更新、删除等。是数据访问层的接口定义。

3. `service.java`:定义业务逻辑的接口,规定了系统提供的服务方法,描述了系统应具备的业务功能。

4. `serviceImpl.java`:实现了 `service.java` 中定义的接口方法,处理具体的业务逻辑,是服务层的具体实现。

5. `controller.java`:接收前端的请求,调用 `service` 层的方法进行处理,并将结果返回给前端。它是前后端交互的桥梁。

6. `mapper.xml`:编写具体的 SQL 语句,实现 `mapper.java` 中定义的方法,用于数据库的实际操作。

7. `api.js`:如果是前端的 API 请求文件,用于向前端发送请求和处理响应,实现与后端的数据交互。

8. `index.vue`:前端页面的 Vue 组件,负责页面的展示和与后端的交互,是用户直接操作和查看的界面。

在程序运行过程中的关联方式如下:

当用户在 `index.vue` 页面进行操作,触发相关事件时,通过 `api.js` 向后端发送请求。请求到达后端的 `controller.java` ,`controller` 接收到请求后,调用 `service.java` 中定义的业务方法,而具体的业务逻辑实现则在 `serviceImpl.java` 中。`serviceImpl` 可能会调用 `mapper.java` 中的方法,通过 `mapper.xml` 中编写的 SQL 语句对数据库进行操作,获取或更新数据。最后,`controller` 将处理结果返回给前端,前端的 `index.vue` 根据返回的数据进行页面的更新和展示。

例如,用户在 `index.vue` 页面点击查询按钮,通过 `api.js` 发送查询请求到 `controller.java` ,`controller` 调用 `service` 的查询方法,`serviceImpl` 执行具体逻辑并通过 `mapper` 从数据库获取数据,`controller` 将数据返回给前端,`index.vue` 展示查询结果。

domain.java

package com.ruoyi.hrm.domain;import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;/*** 面试情况对象 hrm_interview* * @author wxq* @date 2024-07-03*/
public class HrmInterview extends BaseEntity
{private static final long serialVersionUID = 1L;/** id */private Long id;/** 应聘人 */@Excel(name = "应聘人")private String name;/** 性别 */@Excel(name = "性别")private Long gender;/** 最高学历 */@Excel(name = "最高学历")private String highestEdu;/** 毕业院校 */@Excel(name = "毕业院校")private String college;/** 面试分值 */@Excel(name = "面试分值")private String score;/** 面试情况 */@Excel(name = "面试情况")private String condition;/** 面试是否通过 */@Excel(name = "面试是否通过")private Long pass;public void setId(Long id) {this.id = id;}public Long getId() {return id;}public void setName(String name) {this.name = name;}public String getName() {return name;}public void setGender(Long gender) {this.gender = gender;}public Long getGender() {return gender;}public void setHighestEdu(String highestEdu) {this.highestEdu = highestEdu;}public String getHighestEdu() {return highestEdu;}public void setCollege(String college) {this.college = college;}public String getCollege() {return college;}public void setScore(String score) {this.score = score;}public String getScore() {return score;}public void setCondition(String condition) {this.condition = condition;}public String getCondition() {return condition;}public void setPass(Long pass) {this.pass = pass;}public Long getPass() {return pass;}@Overridepublic String toString() {return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE).append("id", getId()).append("name", getName()).append("gender", getGender()).append("highestEdu", getHighestEdu()).append("college", getCollege()).append("score", getScore()).append("condition", getCondition()).append("pass", getPass()).append("remark", getRemark()).toString();}
}

mapper.java

package com.ruoyi.hrm.mapper;import java.util.List;
import com.ruoyi.hrm.domain.HrmInterview;/*** 面试情况Mapper接口* * @author wxq* @date 2024-07-03*/
public interface HrmInterviewMapper 
{/*** 查询面试情况* * @param id 面试情况主键* @return 面试情况*/public HrmInterview selectHrmInterviewById(Long id);/*** 查询面试情况列表* * @param hrmInterview 面试情况* @return 面试情况集合*/public List<HrmInterview> selectHrmInterviewList(HrmInterview hrmInterview);/*** 新增面试情况* * @param hrmInterview 面试情况* @return 结果*/public int insertHrmInterview(HrmInterview hrmInterview);/*** 修改面试情况* * @param hrmInterview 面试情况* @return 结果*/public int updateHrmInterview(HrmInterview hrmInterview);/*** 删除面试情况* * @param id 面试情况主键* @return 结果*/public int deleteHrmInterviewById(Long id);/*** 批量删除面试情况* * @param ids 需要删除的数据主键集合* @return 结果*/public int deleteHrmInterviewByIds(Long[] ids);
}

service.java

package com.ruoyi.hrm.service;import java.util.List;
import com.ruoyi.hrm.domain.HrmInterview;/*** 面试情况Service接口* * @author wxq* @date 2024-07-03*/
public interface IHrmInterviewService 
{/*** 查询面试情况* * @param id 面试情况主键* @return 面试情况*/public HrmInterview selectHrmInterviewById(Long id);/*** 查询面试情况列表* * @param hrmInterview 面试情况* @return 面试情况集合*/public List<HrmInterview> selectHrmInterviewList(HrmInterview hrmInterview);/*** 新增面试情况* * @param hrmInterview 面试情况* @return 结果*/public int insertHrmInterview(HrmInterview hrmInterview);/*** 修改面试情况* * @param hrmInterview 面试情况* @return 结果*/public int updateHrmInterview(HrmInterview hrmInterview);/*** 批量删除面试情况* * @param ids 需要删除的面试情况主键集合* @return 结果*/public int deleteHrmInterviewByIds(Long[] ids);/*** 删除面试情况信息* * @param id 面试情况主键* @return 结果*/public int deleteHrmInterviewById(Long id);
}

serviceImpl.java

package com.ruoyi.hrm.service.impl;import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.hrm.mapper.HrmInterviewMapper;
import com.ruoyi.hrm.domain.HrmInterview;
import com.ruoyi.hrm.service.IHrmInterviewService;/*** 面试情况Service业务层处理* * @author wxq* @date 2024-07-03*/
@Service
public class HrmInterviewServiceImpl implements IHrmInterviewService 
{@Autowiredprivate HrmInterviewMapper hrmInterviewMapper;/*** 查询面试情况* * @param id 面试情况主键* @return 面试情况*/@Overridepublic HrmInterview selectHrmInterviewById(Long id){return hrmInterviewMapper.selectHrmInterviewById(id);}/*** 查询面试情况列表* * @param hrmInterview 面试情况* @return 面试情况*/@Overridepublic List<HrmInterview> selectHrmInterviewList(HrmInterview hrmInterview){return hrmInterviewMapper.selectHrmInterviewList(hrmInterview);}/*** 新增面试情况* * @param hrmInterview 面试情况* @return 结果*/@Overridepublic int insertHrmInterview(HrmInterview hrmInterview){return hrmInterviewMapper.insertHrmInterview(hrmInterview);}/*** 修改面试情况* * @param hrmInterview 面试情况* @return 结果*/@Overridepublic int updateHrmInterview(HrmInterview hrmInterview){return hrmInterviewMapper.updateHrmInterview(hrmInterview);}/*** 批量删除面试情况* * @param ids 需要删除的面试情况主键* @return 结果*/@Overridepublic int deleteHrmInterviewByIds(Long[] ids){return hrmInterviewMapper.deleteHrmInterviewByIds(ids);}/*** 删除面试情况信息* * @param id 面试情况主键* @return 结果*/@Overridepublic int deleteHrmInterviewById(Long id){return hrmInterviewMapper.deleteHrmInterviewById(id);}
}

controller.java

package com.ruoyi.hrm.controller;import java.util.List;
import javax.servlet.http.HttpServletResponse;
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.common.annotation.Log;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.hrm.domain.HrmInterview;
import com.ruoyi.hrm.service.IHrmInterviewService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;/*** 面试情况Controller* * @author wxq* @date 2024-07-03*/
@RestController
@RequestMapping("/hrm/interview")
public class HrmInterviewController extends BaseController
{@Autowiredprivate IHrmInterviewService hrmInterviewService;/*** 查询面试情况列表*/@PreAuthorize("@ss.hasPermi('hrm:interview:list')")@GetMapping("/list")public TableDataInfo list(HrmInterview hrmInterview){startPage();List<HrmInterview> list = hrmInterviewService.selectHrmInterviewList(hrmInterview);return getDataTable(list);}/*** 导出面试情况列表*/@PreAuthorize("@ss.hasPermi('hrm:interview:export')")@Log(title = "面试情况", businessType = BusinessType.EXPORT)@PostMapping("/export")public void export(HttpServletResponse response, HrmInterview hrmInterview){List<HrmInterview> list = hrmInterviewService.selectHrmInterviewList(hrmInterview);ExcelUtil<HrmInterview> util = new ExcelUtil<HrmInterview>(HrmInterview.class);util.exportExcel(response, list, "面试情况数据");}/*** 获取面试情况详细信息*/@PreAuthorize("@ss.hasPermi('hrm:interview:query')")@GetMapping(value = "/{id}")public AjaxResult getInfo(@PathVariable("id") Long id){return success(hrmInterviewService.selectHrmInterviewById(id));}/*** 新增面试情况*/@PreAuthorize("@ss.hasPermi('hrm:interview:add')")@Log(title = "面试情况", businessType = BusinessType.INSERT)@PostMappingpublic AjaxResult add(@RequestBody HrmInterview hrmInterview){return toAjax(hrmInterviewService.insertHrmInterview(hrmInterview));}/*** 修改面试情况*/@PreAuthorize("@ss.hasPermi('hrm:interview:edit')")@Log(title = "面试情况", businessType = BusinessType.UPDATE)@PutMappingpublic AjaxResult edit(@RequestBody HrmInterview hrmInterview){return toAjax(hrmInterviewService.updateHrmInterview(hrmInterview));}/*** 删除面试情况*/@PreAuthorize("@ss.hasPermi('hrm:interview:remove')")@Log(title = "面试情况", businessType = BusinessType.DELETE)@DeleteMapping("/{ids}")public AjaxResult remove(@PathVariable Long[] ids){return toAjax(hrmInterviewService.deleteHrmInterviewByIds(ids));}
}
  1. @RestController这是一个组合注解,表明这个类是一个处理 RESTful 请求的控制器,并且返回的数据会直接以 JSON 或其他适合的格式响应给客户端,而不是跳转页面。

  2. @RequestMapping("/hrm/interview"):用于定义控制器类的基本请求路径,即所有该控制器处理的请求 URL 都以 /hrm/interview 开头。

  3. @PreAuthorize("@ss.hasPermi('hrm:interview:list')"):这是一个基于 Spring Security 的权限控制注解。表示在执行被注解的方法(如 list 方法)之前,会检查当前用户是否具有 'hrm:interview:list' 权限,如果没有则拒绝访问。

  4. @PathVariable:用于获取请求路径中的参数值。例如在 getInfo 方法中,通过 @PathVariable("id") Long id 获取路径中 {id} 的值,并绑定到 id 参数上。

mapper.xml

<?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.hrm.mapper.HrmInterviewMapper"><resultMap type="HrmInterview" id="HrmInterviewResult"><result property="id"    column="id"    /><result property="name"    column="name"    /><result property="gender"    column="gender"    /><result property="highestEdu"    column="highestEdu"    /><result property="college"    column="college"    /><result property="score"    column="score"    /><result property="condition"    column="condition"    /><result property="pass"    column="pass"    /><result property="remark"    column="remark"    /></resultMap><sql id="selectHrmInterviewVo">select id, name, gender, highestEdu, college, score, condition, pass, remark from hrm_interview</sql><select id="selectHrmInterviewList" parameterType="HrmInterview" resultMap="HrmInterviewResult"><include refid="selectHrmInterviewVo"/><where>  <if test="name != null  and name != ''"> and name like concat('%', #{name}, '%')</if><if test="gender != null "> and gender = #{gender}</if><if test="highestEdu != null  and highestEdu != ''"> and highestEdu = #{highestEdu}</if><if test="college != null  and college != ''"> and college like concat('%', #{college}, '%')</if><if test="score != null  and score != ''"> and score = #{score}</if><if test="condition != null  and condition != ''"> and condition = #{condition}</if><if test="pass != null "> and pass = #{pass}</if></where></select><select id="selectHrmInterviewById" parameterType="Long" resultMap="HrmInterviewResult"><include refid="selectHrmInterviewVo"/>where id = #{id}</select><insert id="insertHrmInterview" parameterType="HrmInterview" useGeneratedKeys="true" keyProperty="id">insert into hrm_interview<trim prefix="(" suffix=")" suffixOverrides=","><if test="name != null">name,</if><if test="gender != null">gender,</if><if test="highestEdu != null">highestEdu,</if><if test="college != null">college,</if><if test="score != null">score,</if><if test="condition != null">condition,</if><if test="pass != null">pass,</if><if test="remark != null">remark,</if></trim><trim prefix="values (" suffix=")" suffixOverrides=","><if test="name != null">#{name},</if><if test="gender != null">#{gender},</if><if test="highestEdu != null">#{highestEdu},</if><if test="college != null">#{college},</if><if test="score != null">#{score},</if><if test="condition != null">#{condition},</if><if test="pass != null">#{pass},</if><if test="remark != null">#{remark},</if></trim></insert><update id="updateHrmInterview" parameterType="HrmInterview">update hrm_interview<trim prefix="SET" suffixOverrides=","><if test="name != null">name = #{name},</if><if test="gender != null">gender = #{gender},</if><if test="highestEdu != null">highestEdu = #{highestEdu},</if><if test="college != null">college = #{college},</if><if test="score != null">score = #{score},</if><if test="condition != null">condition = #{condition},</if><if test="pass != null">pass = #{pass},</if><if test="remark != null">remark = #{remark},</if></trim>where id = #{id}</update><delete id="deleteHrmInterviewById" parameterType="Long">delete from hrm_interview where id = #{id}</delete><delete id="deleteHrmInterviewByIds" parameterType="String">delete from hrm_interview where id in <foreach item="id" collection="array" open="(" separator="," close=")">#{id}</foreach></delete>
</mapper>

sql

-- 菜单 SQL
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
values('面试情况', '2055', '1', 'interview', 'hrm/interview/index', 1, 0, 'C', '0', '0', 'hrm:interview:list', '#', 'admin', sysdate(), '', null, '面试情况菜单');-- 按钮父菜单ID
SELECT @parentId := LAST_INSERT_ID();-- 按钮 SQL
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
values('面试情况查询', @parentId, '1',  '#', '', 1, 0, 'F', '0', '0', 'hrm:interview:query',        '#', 'admin', sysdate(), '', null, '');insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
values('面试情况新增', @parentId, '2',  '#', '', 1, 0, 'F', '0', '0', 'hrm:interview:add',          '#', 'admin', sysdate(), '', null, '');insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
values('面试情况修改', @parentId, '3',  '#', '', 1, 0, 'F', '0', '0', 'hrm:interview:edit',         '#', 'admin', sysdate(), '', null, '');insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
values('面试情况删除', @parentId, '4',  '#', '', 1, 0, 'F', '0', '0', 'hrm:interview:remove',       '#', 'admin', sysdate(), '', null, '');insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
values('面试情况导出', @parentId, '5',  '#', '', 1, 0, 'F', '0', '0', 'hrm:interview:export',       '#', 'admin', sysdate(), '', null, '');

api.js

import request from '@/utils/request'// 查询面试情况列表
export function listInterview(query) {return request({url: '/hrm/interview/list',method: 'get',params: query})
}// 查询面试情况详细
export function getInterview(id) {return request({url: '/hrm/interview/' + id,method: 'get'})
}// 新增面试情况
export function addInterview(data) {return request({url: '/hrm/interview',method: 'post',data: data})
}// 修改面试情况
export function updateInterview(data) {return request({url: '/hrm/interview',method: 'put',data: data})
}// 删除面试情况
export function delInterview(id) {return request({url: '/hrm/interview/' + id,method: 'delete'})
}

index.vue

<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="name"><el-inputv-model="queryParams.name"placeholder="请输入应聘人"clearable@keyup.enter.native="handleQuery"/></el-form-item><el-form-item label="性别" prop="gender"><el-select v-model="queryParams.gender" placeholder="请选择性别" clearable><el-optionv-for="dict in dict.type.sys_user_sex":key="dict.value":label="dict.label":value="dict.value"/></el-select></el-form-item><el-form-item label="最高学历" prop="highestEdu"><el-select v-model="queryParams.highestEdu" placeholder="请选择最高学历" clearable><el-optionv-for="dict in dict.type.tiptop_degree":key="dict.value":label="dict.label":value="dict.value"/></el-select></el-form-item><el-form-item label="毕业院校" prop="college"><el-inputv-model="queryParams.college"placeholder="请输入毕业院校"clearable@keyup.enter.native="handleQuery"/></el-form-item><el-form-item label="面试分值" prop="score"><el-inputv-model="queryParams.score"placeholder="请输入面试分值"clearable@keyup.enter.native="handleQuery"/></el-form-item><el-form-item label="面试情况" prop="condition"><el-inputv-model="queryParams.condition"placeholder="请输入面试情况"clearable@keyup.enter.native="handleQuery"/></el-form-item><el-form-item label="面试是否通过" prop="pass"><el-select v-model="queryParams.pass" placeholder="请选择面试是否通过" clearable><el-optionv-for="dict in dict.type.interview_state":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-row :gutter="10" class="mb8"><el-col :span="1.5"><el-buttontype="primary"plainicon="el-icon-plus"size="mini"@click="handleAdd"v-hasPermi="['hrm:interview:add']">新增</el-button></el-col><el-col :span="1.5"><el-buttontype="success"plainicon="el-icon-edit"size="mini":disabled="single"@click="handleUpdate"v-hasPermi="['hrm:interview:edit']">修改</el-button></el-col><el-col :span="1.5"><el-buttontype="danger"plainicon="el-icon-delete"size="mini":disabled="multiple"@click="handleDelete"v-hasPermi="['hrm:interview:remove']">删除</el-button></el-col><el-col :span="1.5"><el-buttontype="warning"plainicon="el-icon-download"size="mini"@click="handleExport"v-hasPermi="['hrm:interview:export']">导出</el-button></el-col><right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar></el-row><el-table v-loading="loading" :data="interviewList" @selection-change="handleSelectionChange"><el-table-column type="selection" width="55" align="center" /><el-table-column label="id" align="center" prop="id" /><el-table-column label="应聘人" align="center" prop="name" /><el-table-column label="性别" align="center" prop="gender"><template slot-scope="scope"><dict-tag :options="dict.type.sys_user_sex" :value="scope.row.gender"/></template></el-table-column><el-table-column label="最高学历" align="center" prop="highestEdu"><template slot-scope="scope"><dict-tag :options="dict.type.tiptop_degree" :value="scope.row.highestEdu"/></template></el-table-column><el-table-column label="毕业院校" align="center" prop="college" /><el-table-column label="面试分值" align="center" prop="score" /><el-table-column label="面试情况" align="center" prop="condition" /><el-table-column label="面试是否通过" align="center" prop="pass"><template slot-scope="scope"><dict-tag :options="dict.type.interview_state" :value="scope.row.pass"/></template></el-table-column><el-table-column label="备注" align="center" prop="remark" /><el-table-column label="操作" align="center" class-name="small-padding fixed-width"><template slot-scope="scope"><el-buttonsize="mini"type="text"icon="el-icon-edit"@click="handleUpdate(scope.row)"v-hasPermi="['hrm:interview:edit']">修改</el-button><el-buttonsize="mini"type="text"icon="el-icon-delete"@click="handleDelete(scope.row)"v-hasPermi="['hrm:interview:remove']">删除</el-button></template></el-table-column></el-table><paginationv-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="name"><el-input v-model="form.name" placeholder="请输入应聘人" /></el-form-item><el-form-item label="性别" prop="gender"><el-select v-model="form.gender" placeholder="请选择性别"><el-optionv-for="dict in dict.type.sys_user_sex":key="dict.value":label="dict.label":value="parseInt(dict.value)"></el-option></el-select></el-form-item><el-form-item label="最高学历" prop="highestEdu"><el-select v-model="form.highestEdu" placeholder="请选择最高学历"><el-optionv-for="dict in dict.type.tiptop_degree":key="dict.value":label="dict.label":value="dict.value"></el-option></el-select></el-form-item><el-form-item label="毕业院校" prop="college"><el-input v-model="form.college" placeholder="请输入毕业院校" /></el-form-item><el-form-item label="面试分值" prop="score"><el-input v-model="form.score" placeholder="请输入面试分值" /></el-form-item><el-form-item label="面试情况" prop="condition"><el-input v-model="form.condition" placeholder="请输入面试情况" /></el-form-item><el-form-item label="面试是否通过" prop="pass"><el-select v-model="form.pass" placeholder="请选择面试是否通过"><el-optionv-for="dict in dict.type.interview_state":key="dict.value":label="dict.label":value="parseInt(dict.value)"></el-option></el-select></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 { listInterview, getInterview, delInterview, addInterview, updateInterview } from "@/api/hrm/interview";export default {name: "Interview",dicts: ['interview_state', 'tiptop_degree', 'sys_user_sex'],data() {return {// 遮罩层loading: true,// 选中数组ids: [],// 非单个禁用single: true,// 非多个禁用multiple: true,// 显示搜索条件showSearch: true,// 总条数total: 0,// 面试情况表格数据interviewList: [],// 弹出层标题title: "",// 是否显示弹出层open: false,// 查询参数queryParams: {pageNum: 1,pageSize: 10,name: null,gender: null,highestEdu: null,college: null,score: null,condition: null,pass: null,},// 表单参数form: {},// 表单校验rules: {}};},created() {this.getList();},methods: {/** 查询面试情况列表 */getList() {this.loading = true;listInterview(this.queryParams).then(response => {this.interviewList = response.rows;this.total = response.total;this.loading = false;});},// 取消按钮cancel() {this.open = false;this.reset();},// 表单重置reset() {this.form = {id: null,name: null,gender: null,highestEdu: null,college: null,score: null,condition: null,pass: null,remark: 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!==1this.multiple = !selection.length},/** 新增按钮操作 */handleAdd() {this.reset();this.open = true;this.title = "添加面试情况";},/** 修改按钮操作 */handleUpdate(row) {this.reset();const id = row.id || this.idsgetInterview(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) {updateInterview(this.form).then(response => {this.$modal.msgSuccess("修改成功");this.open = false;this.getList();});} else {addInterview(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 delInterview(ids);}).then(() => {this.getList();this.$modal.msgSuccess("删除成功");}).catch(() => {});},/** 导出按钮操作 */handleExport() {this.download('hrm/interview/export', {...this.queryParams}, `interview_${new Date().getTime()}.xlsx`)}}
};
</script>
<!-- el-form-item 组件,用于展示需求部门的输入框和标签 -->
<el-form-item label="需求部门" prop="dept"> <!-- el-select 组件,用于选择部门,v-model 绑定了 form 对象中的 dept 属性 --><el-select v-model="form.dept" placeholder="请选择部门"> <!-- 使用 v-for 指令遍历 options 数组来生成选项 --><el-optionv-for="item in options":key="item.value"  <!-- 为每个选项提供唯一的 key 值,这里使用 item.value -->:label="item.label"  <!-- 选项显示的文本内容,来自 item.label -->:value="item.value">  <!-- 选项的值,来自 item.value --></el-option></el-select>
</el-form-item>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/39765.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Richtek立锜科技车规级器件选型

芯片按照应用场景&#xff0c;通常可以分为消费级、工业级、车规级和军工级四个等级&#xff0c;其要求依次为军工>车规>工业>消费。 所谓“车规级元器件”--即通过AEC-Q认证 汽车不同于消费级产品&#xff0c;会运行在户外、高温、高寒、潮湿等苛刻的环境&#xff0c…

澳蓝荣耀时刻,6款产品入选2024年第一批《福州市名优产品目录》

近日&#xff0c;福州市工业和信息化局公布2024年第一批《福州市名优产品目录》&#xff0c;澳蓝自主研发生产的直接蒸发冷却空调、直接蒸发冷却组合式空调机组、间接蒸发冷水机组、高效间接蒸发冷却空调机、热泵式热回收型溶液调湿新风机组、防火湿帘6款产品成功入选。 以上新…

飞利浦的台灯值得入手吗?书客、松下多维度横评大分享!

随着生活品质的持续提升&#xff0c;人们对于健康的追求日益趋向精致与高端化。在这一潮流的推动下&#xff0c;护眼台灯以其卓越的护眼功效与便捷的操作体验&#xff0c;迅速在家电领域崭露头角&#xff0c;更成为了众多家庭书房中不可或缺的视力守护者。这些台灯以其精心设计…

(vue)eslint-plugin-vue版本问题 安装axios时npm ERR! code ERESOLVE

(vue)eslint-plugin-vue版本问题 安装axios时npm ERR! code ERESOLVE 解决方法&#xff1a;在命令后面加上 -legacy-peer-deps结果&#xff1a; 解决参考&#xff1a;https://blog.csdn.net/qq_43799531/article/details/131403987

【C语言】指针剖析(完结)

©作者:末央&#xff06; ©系列:C语言初阶(适合小白入门) ©说明:以凡人之笔墨&#xff0c;书写未来之大梦 目录 回调函数概念回调函数的使用 - qsort函数 sizeof/strlen深度理解概念手脑并用1.sizeof-数组/指针专题2.strlen-数组/指针专题 指针面试题专题 回调函…

云服务器linux系统安装配置docker

在我们拿到一个纯净的linux系统时&#xff0c;我需要进行一些基础环境的配置 &#xff08;如果是云服务器可以用XShell远程连接&#xff0c;如果连接不上可能是服务器没开放22端口&#xff09; 下面是配置环境的步骤 sudo -s进入root权限&#xff1a;退出使用exit sudo -i进入…

process.env.VUE_APP_BASE_API

前端&#xff1a;process.env.VUE_APP_BASE_API 在Vue.js项目中&#xff0c;特别是使用Vue CLI进行配置的项目&#xff0c;process.env.VUE_APP_BASE_API 是一个环境变量的引用。Vue CLI允许开发者在不同环境下配置不同的环境变量&#xff0c;这对于管理API基础路径、切换开发…

MySQL调优的五个方向

客户端与连接层的优化&#xff1a;调整客户端DB连接池的参数和DB连接层的参数。MySQL结构的优化&#xff1a;合理的设计库表结构&#xff0c;表中字段根据业务选择合适的数据类型、索引。MySQL参数优化&#xff1a;调整参数的默认值&#xff0c;根据业务将各类参数调整到合适的…

【leetcode78-81贪心算法、技巧96-100】

贪心算法【78-81】 技巧【96-100】

谷粒商城-个人笔记(集群部署篇二)

前言 ​学习视频&#xff1a;​Java项目《谷粒商城》架构师级Java项目实战&#xff0c;对标阿里P6-P7&#xff0c;全网最强​学习文档&#xff1a; 谷粒商城-个人笔记(基础篇一)谷粒商城-个人笔记(基础篇二)谷粒商城-个人笔记(基础篇三)谷粒商城-个人笔记(高级篇一)谷粒商城-个…

【数据结构】02.顺序表

一、顺序表的概念与结构 1.1线性表 线性表&#xff08;linear list&#xff09;是n个具有相同特性的数据元素的有限序列。线性表是⼀种在实际中广泛使用的数据结构&#xff0c;常见的线性表&#xff1a;顺序表、链表、栈、队列、字符串… 线性表在逻辑上是线性结构&#xff0…

GEE计算遥感生态指数RSEI

目录 RESI湿度绿度热度干度源代码归一化函数代码解释整体的代码功能解释:导出RSEI计算结果参考文献RESI RSEI = f (Greenness,Wetness,Heat,Dryness)其遥感定义为: RSEI = f (VI,Wet,LST,SI)式中:Greenness 为绿度;Wetness 为湿度;Thermal为热度;Dryness 为干度;VI 为植被指数…

【多媒体】Java实现MP4和MP3音视频播放器【JavaFX】【音视频播放】

在Java中播放音视频可以使用多种方案&#xff0c;最常见的是通过Swing组件JFrame和JLabel来嵌入JMF(Java Media Framework)或Xuggler。不过&#xff0c;JMF已经不再被推荐使用&#xff0c;而Xuggler是基于DirectX的&#xff0c;不适用于跨平台。而且上述方案都需要使用第三方库…

拒绝信息差!一篇文章说清Stable Diffusion 3到底值不值得冲

前言 就在几天前&#xff0c;Stability AI正式开源了Stable Diffusion 3 Medium&#xff08;以下简称SD3M&#xff09;模型和适配CLIP文件。这家身处风雨飘摇中的公司&#xff0c;在最近的一年里一直处于破产边缘&#xff0c;就连创始人兼CEO也顶不住压力提桶跑路。 即便这样&…

[leetcode]minimum-absolute-difference-in-bst 二叉搜索树的最小绝对差

. - 力扣&#xff08;LeetCode&#xff09; /*** Definition for a binary tree node.* struct TreeNode {* int val;* TreeNode *left;* TreeNode *right;* TreeNode() : val(0), left(nullptr), right(nullptr) {}* TreeNode(int x) : val(x), left(null…

java如何在字符串中间插入字符串

java在字符串中插入字符串&#xff0c;需要用到insert语句 语法格式为 sbf.insert(offset,str) 其中,sbf是任意字符串 offset是插入的索引 str是插入的字符串 public class Insert {public static void main(String[] args) {// 将字符串插入到指定索引StringBuffer sbfn…

FFmpeg5.0源码阅读——格式检测

摘要&#xff1a;在拿到一个新的格式后&#xff0c;FFmpeg总是能够足够正确的判断格式的内容并进行相应的处理。本文在描述FFmpeg如何进行格式检测来确认正在处理的媒体格式类型&#xff0c;并进行相应的处理。   关键字&#xff1a;FFmpeg,format,probe 在调用FFmpeg的APIav…

变量的定义和使用

1.定义 变量&#xff0c;就是用来表示数据的名字 Python 中定义变量非常简单&#xff0c;只需将数据通过等号()赋值给一个符合命名规范的标识符即可 name"Camille" name 123 变量的使用 变量的使用是指在程序中引用一个已经定义的变量。 例如&#xff0c;如果…

LeetCode 196, 73, 105

目录 196. 删除重复的电子邮箱题目链接表要求知识点思路代码 73. 矩阵置零题目链接标签简单版思路代码 优化版思路代码 105. 从前序与中序遍历序列构造二叉树题目链接标签思路代码 196. 删除重复的电子邮箱 题目链接 196. 删除重复的电子邮箱 表 表Person的字段为id和email…

昇思MindSpore学习总结七——模型训练

1、模型训练 模型训练一般分为四个步骤&#xff1a; 构建数据集。定义神经网络模型。定义超参、损失函数及优化器。输入数据集进行训练与评估。 现在我们有了数据集和模型后&#xff0c;可以进行模型的训练与评估。 2、构建数据集 首先从数据集 Dataset加载代码&#xff0…