change - add打印机信息维护

master
yinq 8 months ago
parent 6322c2fd0a
commit c98db88e02

@ -0,0 +1,99 @@
package com.hw.system.common.controller;
import java.util.List;
import java.io.IOException;
import javax.servlet.http.HttpServletResponse;
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.hw.common.log.annotation.Log;
import com.hw.common.log.enums.BusinessType;
import com.hw.common.security.annotation.RequiresPermissions;
import com.hw.system.common.domain.HwPrinterInfo;
import com.hw.system.common.service.IHwPrinterInfoService;
import com.hw.common.core.web.controller.BaseController;
import com.hw.common.core.web.domain.AjaxResult;
import com.hw.common.core.utils.poi.ExcelUtil;
import com.hw.common.core.web.page.TableDataInfo;
/**
* Controller
*
* @author Yinq
* @date 2024-03-25
*/
@RestController
@RequestMapping("/hwPrinterInfo")
public class HwPrinterInfoController extends BaseController {
@Autowired
private IHwPrinterInfoService hwPrinterInfoService;
/**
*
*/
@RequiresPermissions("system:hwPrinterInfo:list")
@GetMapping("/list")
public TableDataInfo list(HwPrinterInfo hwPrinterInfo) {
startPage();
List<HwPrinterInfo> list = hwPrinterInfoService.selectHwPrinterInfoList(hwPrinterInfo);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("system:hwPrinterInfo:export")
@Log(title = "打印机信息", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, HwPrinterInfo hwPrinterInfo) {
List<HwPrinterInfo> list = hwPrinterInfoService.selectHwPrinterInfoList(hwPrinterInfo);
ExcelUtil<HwPrinterInfo> util = new ExcelUtil<HwPrinterInfo>(HwPrinterInfo.class);
util.exportExcel(response, list, "打印机信息数据");
}
/**
*
*/
@RequiresPermissions("system:hwPrinterInfo:query")
@GetMapping(value = "/{printerInfoId}")
public AjaxResult getInfo(@PathVariable("printerInfoId") Long printerInfoId) {
return success(hwPrinterInfoService.selectHwPrinterInfoByPrinterInfoId(printerInfoId));
}
/**
*
*/
@RequiresPermissions("system:hwPrinterInfo:add")
@Log(title = "打印机信息", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody HwPrinterInfo hwPrinterInfo) {
return toAjax(hwPrinterInfoService.insertHwPrinterInfo(hwPrinterInfo));
}
/**
*
*/
@RequiresPermissions("system:hwPrinterInfo:edit")
@Log(title = "打印机信息", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody HwPrinterInfo hwPrinterInfo) {
return toAjax(hwPrinterInfoService.updateHwPrinterInfo(hwPrinterInfo));
}
/**
*
*/
@RequiresPermissions("system:hwPrinterInfo:remove")
@Log(title = "打印机信息", businessType = BusinessType.DELETE)
@DeleteMapping("/{printerInfoIds}")
public AjaxResult remove(@PathVariable Long[] printerInfoIds) {
return toAjax(hwPrinterInfoService.deleteHwPrinterInfoByPrinterInfoIds(printerInfoIds));
}
}

@ -0,0 +1,101 @@
package com.hw.system.common.domain;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.hw.common.core.annotation.Excel;
import com.hw.common.core.web.domain.BaseEntity;
/**
* hw_printer_info
*
* @author Yinq
* @date 2024-03-25
*/
public class HwPrinterInfo extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
* ID
*/
private Long printerInfoId;
/**
*
*/
@Excel(name = "打印机编号")
private String printerInfoCode;
/**
*
*/
@Excel(name = "打印机名称")
private String printerInfoName;
/**
*
*/
@Excel(name = "打印机位置")
private String printerInfoAddress;
/**
* IP
*/
@Excel(name = "IP地址")
private String printerInfoIp;
public void setPrinterInfoId(Long printerInfoId) {
this.printerInfoId = printerInfoId;
}
public Long getPrinterInfoId() {
return printerInfoId;
}
public void setPrinterInfoCode(String printerInfoCode) {
this.printerInfoCode = printerInfoCode;
}
public String getPrinterInfoCode() {
return printerInfoCode;
}
public void setPrinterInfoName(String printerInfoName) {
this.printerInfoName = printerInfoName;
}
public String getPrinterInfoName() {
return printerInfoName;
}
public void setPrinterInfoAddress(String printerInfoAddress) {
this.printerInfoAddress = printerInfoAddress;
}
public String getPrinterInfoAddress() {
return printerInfoAddress;
}
public void setPrinterInfoIp(String printerInfoIp) {
this.printerInfoIp = printerInfoIp;
}
public String getPrinterInfoIp() {
return printerInfoIp;
}
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("printerInfoId", getPrinterInfoId())
.append("printerInfoCode", getPrinterInfoCode())
.append("printerInfoName", getPrinterInfoName())
.append("printerInfoAddress", getPrinterInfoAddress())
.append("printerInfoIp", getPrinterInfoIp())
.append("remark", getRemark())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.toString();
}
}

@ -0,0 +1,61 @@
package com.hw.system.common.mapper;
import java.util.List;
import com.hw.system.common.domain.HwPrinterInfo;
/**
* Mapper
*
* @author Yinq
* @date 2024-03-25
*/
public interface HwPrinterInfoMapper {
/**
*
*
* @param printerInfoId
* @return
*/
public HwPrinterInfo selectHwPrinterInfoByPrinterInfoId(Long printerInfoId);
/**
*
*
* @param hwPrinterInfo
* @return
*/
public List<HwPrinterInfo> selectHwPrinterInfoList(HwPrinterInfo hwPrinterInfo);
/**
*
*
* @param hwPrinterInfo
* @return
*/
public int insertHwPrinterInfo(HwPrinterInfo hwPrinterInfo);
/**
*
*
* @param hwPrinterInfo
* @return
*/
public int updateHwPrinterInfo(HwPrinterInfo hwPrinterInfo);
/**
*
*
* @param printerInfoId
* @return
*/
public int deleteHwPrinterInfoByPrinterInfoId(Long printerInfoId);
/**
*
*
* @param printerInfoIds
* @return
*/
public int deleteHwPrinterInfoByPrinterInfoIds(Long[] printerInfoIds);
}

@ -0,0 +1,61 @@
package com.hw.system.common.service;
import java.util.List;
import com.hw.system.common.domain.HwPrinterInfo;
/**
* Service
*
* @author Yinq
* @date 2024-03-25
*/
public interface IHwPrinterInfoService {
/**
*
*
* @param printerInfoId
* @return
*/
public HwPrinterInfo selectHwPrinterInfoByPrinterInfoId(Long printerInfoId);
/**
*
*
* @param hwPrinterInfo
* @return
*/
public List<HwPrinterInfo> selectHwPrinterInfoList(HwPrinterInfo hwPrinterInfo);
/**
*
*
* @param hwPrinterInfo
* @return
*/
public int insertHwPrinterInfo(HwPrinterInfo hwPrinterInfo);
/**
*
*
* @param hwPrinterInfo
* @return
*/
public int updateHwPrinterInfo(HwPrinterInfo hwPrinterInfo);
/**
*
*
* @param printerInfoIds
* @return
*/
public int deleteHwPrinterInfoByPrinterInfoIds(Long[] printerInfoIds);
/**
*
*
* @param printerInfoId
* @return
*/
public int deleteHwPrinterInfoByPrinterInfoId(Long printerInfoId);
}

@ -0,0 +1,93 @@
package com.hw.system.common.service.impl;
import java.util.List;
import com.hw.common.core.utils.DateUtils;
import com.hw.common.security.utils.SecurityUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.hw.system.common.mapper.HwPrinterInfoMapper;
import com.hw.system.common.domain.HwPrinterInfo;
import com.hw.system.common.service.IHwPrinterInfoService;
/**
* Service
*
* @author Yinq
* @date 2024-03-25
*/
@Service
public class HwPrinterInfoServiceImpl implements IHwPrinterInfoService {
@Autowired
private HwPrinterInfoMapper hwPrinterInfoMapper;
/**
*
*
* @param printerInfoId
* @return
*/
@Override
public HwPrinterInfo selectHwPrinterInfoByPrinterInfoId(Long printerInfoId) {
return hwPrinterInfoMapper.selectHwPrinterInfoByPrinterInfoId(printerInfoId);
}
/**
*
*
* @param hwPrinterInfo
* @return
*/
@Override
public List<HwPrinterInfo> selectHwPrinterInfoList(HwPrinterInfo hwPrinterInfo) {
return hwPrinterInfoMapper.selectHwPrinterInfoList(hwPrinterInfo);
}
/**
*
*
* @param hwPrinterInfo
* @return
*/
@Override
public int insertHwPrinterInfo(HwPrinterInfo hwPrinterInfo) {
hwPrinterInfo.setCreateBy(SecurityUtils.getUsername());
hwPrinterInfo.setCreateTime(DateUtils.getNowDate());
return hwPrinterInfoMapper.insertHwPrinterInfo(hwPrinterInfo);
}
/**
*
*
* @param hwPrinterInfo
* @return
*/
@Override
public int updateHwPrinterInfo(HwPrinterInfo hwPrinterInfo) {
hwPrinterInfo.setUpdateBy(SecurityUtils.getUsername());
hwPrinterInfo.setUpdateTime(DateUtils.getNowDate());
return hwPrinterInfoMapper.updateHwPrinterInfo(hwPrinterInfo);
}
/**
*
*
* @param printerInfoIds
* @return
*/
@Override
public int deleteHwPrinterInfoByPrinterInfoIds(Long[] printerInfoIds) {
return hwPrinterInfoMapper.deleteHwPrinterInfoByPrinterInfoIds(printerInfoIds);
}
/**
*
*
* @param printerInfoId
* @return
*/
@Override
public int deleteHwPrinterInfoByPrinterInfoId(Long printerInfoId) {
return hwPrinterInfoMapper.deleteHwPrinterInfoByPrinterInfoId(printerInfoId);
}
}

@ -0,0 +1,113 @@
<?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.hw.system.common.mapper.HwPrinterInfoMapper">
<resultMap type="HwPrinterInfo" id="HwPrinterInfoResult">
<result property="printerInfoId" column="printer_info_id"/>
<result property="printerInfoCode" column="printer_info_code"/>
<result property="printerInfoName" column="printer_info_name"/>
<result property="printerInfoAddress" column="printer_info_address"/>
<result property="printerInfoIp" column="printer_info_ip"/>
<result property="remark" column="remark"/>
<result property="createBy" column="create_by"/>
<result property="createTime" column="create_time"/>
<result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/>
</resultMap>
<sql id="selectHwPrinterInfoVo">
select printer_info_id,
printer_info_code,
printer_info_name,
printer_info_address,
printer_info_ip,
remark,
create_by,
create_time,
update_by,
update_time
from hw_printer_info
</sql>
<select id="selectHwPrinterInfoList" parameterType="HwPrinterInfo" resultMap="HwPrinterInfoResult">
<include refid="selectHwPrinterInfoVo"/>
<where>
<if test="printerInfoCode != null and printerInfoCode != ''">and printer_info_code = #{printerInfoCode}
</if>
<if test="printerInfoName != null and printerInfoName != ''">and printer_info_name like concat('%',
#{printerInfoName}, '%')
</if>
<if test="printerInfoAddress != null and printerInfoAddress != ''">and printer_info_address like
concat('%', #{printerInfoAddress}, '%')
</if>
<if test="printerInfoIp != null and printerInfoIp != ''">and printer_info_ip = #{printerInfoIp}</if>
<if test="remark != null and remark != ''">and remark = #{remark}</if>
<if test="createBy != null and createBy != ''">and create_by = #{createBy}</if>
<if test="createTime != null ">and create_time = #{createTime}</if>
<if test="updateBy != null and updateBy != ''">and update_by = #{updateBy}</if>
<if test="updateTime != null ">and update_time = #{updateTime}</if>
</where>
</select>
<select id="selectHwPrinterInfoByPrinterInfoId" parameterType="Long" resultMap="HwPrinterInfoResult">
<include refid="selectHwPrinterInfoVo"/>
where printer_info_id = #{printerInfoId}
</select>
<insert id="insertHwPrinterInfo" parameterType="HwPrinterInfo" useGeneratedKeys="true" keyProperty="printerInfoId">
insert into hw_printer_info
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="printerInfoCode != null and printerInfoCode != ''">printer_info_code,</if>
<if test="printerInfoName != null">printer_info_name,</if>
<if test="printerInfoAddress != null">printer_info_address,</if>
<if test="printerInfoIp != null">printer_info_ip,</if>
<if test="remark != null">remark,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="printerInfoCode != null and printerInfoCode != ''">#{printerInfoCode},</if>
<if test="printerInfoName != null">#{printerInfoName},</if>
<if test="printerInfoAddress != null">#{printerInfoAddress},</if>
<if test="printerInfoIp != null">#{printerInfoIp},</if>
<if test="remark != null">#{remark},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<update id="updateHwPrinterInfo" parameterType="HwPrinterInfo">
update hw_printer_info
<trim prefix="SET" suffixOverrides=",">
<if test="printerInfoCode != null and printerInfoCode != ''">printer_info_code = #{printerInfoCode},</if>
<if test="printerInfoName != null">printer_info_name = #{printerInfoName},</if>
<if test="printerInfoAddress != null">printer_info_address = #{printerInfoAddress},</if>
<if test="printerInfoIp != null">printer_info_ip = #{printerInfoIp},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
</trim>
where printer_info_id = #{printerInfoId}
</update>
<delete id="deleteHwPrinterInfoByPrinterInfoId" parameterType="Long">
delete
from hw_printer_info
where printer_info_id = #{printerInfoId}
</delete>
<delete id="deleteHwPrinterInfoByPrinterInfoIds" parameterType="String">
delete from hw_printer_info where printer_info_id in
<foreach item="printerInfoId" collection="array" open="(" separator="," close=")">
#{printerInfoId}
</foreach>
</delete>
</mapper>

@ -0,0 +1,44 @@
import request from '@//utils/request'
// 查询打印机信息列表
export function listHwPrinterInfo(query) {
return request({
url: '/system/hwPrinterInfo/list',
method: 'get',
params: query
})
}
// 查询打印机信息详细
export function getHwPrinterInfo(printerInfoId) {
return request({
url: '/system/hwPrinterInfo/' + printerInfoId,
method: 'get'
})
}
// 新增打印机信息
export function addHwPrinterInfo(data) {
return request({
url: '/system/hwPrinterInfo',
method: 'post',
data: data
})
}
// 修改打印机信息
export function updateHwPrinterInfo(data) {
return request({
url: '/system/hwPrinterInfo',
method: 'put',
data: data
})
}
// 删除打印机信息
export function delHwPrinterInfo(printerInfoId) {
return request({
url: '/system/hwPrinterInfo/' + printerInfoId,
method: 'delete'
})
}

@ -0,0 +1,325 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="90px">
<el-form-item label="打印机编号" prop="printerInfoCode">
<el-input
v-model="queryParams.printerInfoCode"
placeholder="请输入打印机编号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="打印机名称" prop="printerInfoName">
<el-input
v-model="queryParams.printerInfoName"
placeholder="请输入打印机名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['system:hwPrinterInfo: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="['system:hwPrinterInfo: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="['system:hwPrinterInfo: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="['system:hwPrinterInfo:export']"
>导出
</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="hwPrinterInfoList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center"/>
<el-table-column label="打印机ID" align="center" prop="printerInfoId" v-if="columns[0].visible"/>
<el-table-column label="打印机编号" align="center" prop="printerInfoCode" v-if="columns[1].visible"/>
<el-table-column label="打印机名称" align="center" prop="printerInfoName" v-if="columns[2].visible"/>
<el-table-column label="打印机位置" align="center" prop="printerInfoAddress" v-if="columns[3].visible"/>
<el-table-column label="IP地址" align="center" prop="printerInfoIp" v-if="columns[4].visible"/>
<el-table-column label="备注" align="center" prop="remark" v-if="columns[5].visible"/>
<el-table-column label="创建人" align="center" prop="createBy" v-if="columns[6].visible"/>
<el-table-column label="创建时间" align="center" prop="createTime" width="180" v-if="columns[7].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="更新人" align="center" prop="updateBy" v-if="columns[8].visible"/>
<el-table-column label="更新时间" align="center" prop="updateTime" width="180" v-if="columns[9].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['system:hwPrinterInfo:edit']"
>修改
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['system:hwPrinterInfo:remove']"
>删除
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改打印机信息对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item label="打印机编号" prop="printerInfoCode">
<el-input v-model="form.printerInfoCode" placeholder="请输入打印机编号"/>
</el-form-item>
<el-form-item label="打印机名称" prop="printerInfoName">
<el-input v-model="form.printerInfoName" placeholder="请输入打印机名称"/>
</el-form-item>
<el-form-item label="打印机位置" prop="printerInfoAddress">
<el-input v-model="form.printerInfoAddress" placeholder="请输入打印机位置"/>
</el-form-item>
<el-form-item label="IP地址" prop="printerInfoIp">
<el-input v-model="form.printerInfoIp" placeholder="请输入IP地址"/>
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" 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 {
listHwPrinterInfo,
getHwPrinterInfo,
delHwPrinterInfo,
addHwPrinterInfo,
updateHwPrinterInfo
} from "@//api/system/common/hwPrinterInfo";
export default {
name: "HwPrinterInfo",
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
hwPrinterInfoList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
printerInfoCode: null,
printerInfoName: null,
printerInfoAddress: null,
printerInfoIp: null,
remark: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null
},
//
form: {},
//
rules: {
printerInfoCode: [
{required: true, message: "打印机编号不能为空", trigger: "blur"}
],
},
columns: [
{key: 0, label: `打印机ID`, visible: true},
{key: 1, label: `打印机编号`, visible: true},
{key: 2, label: `打印机名称`, visible: true},
{key: 3, label: `打印机位置`, visible: true},
{key: 4, label: `IP地址`, visible: true},
{key: 5, label: `备注`, visible: true},
{key: 6, label: `创建人`, visible: true},
{key: 7, label: `创建时间`, visible: true},
{key: 8, label: `更新人`, visible: true},
{key: 9, label: `更新时间`, visible: true},
],
};
},
created() {
this.getList();
},
methods: {
/** 查询打印机信息列表 */
getList() {
this.loading = true;
listHwPrinterInfo(this.queryParams).then(response => {
this.hwPrinterInfoList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
printerInfoId: null,
printerInfoCode: null,
printerInfoName: null,
printerInfoAddress: null,
printerInfoIp: null,
remark: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: 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.printerInfoId)
this.single = selection.length !== 1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加打印机信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const printerInfoId = row.printerInfoId || this.ids
getHwPrinterInfo(printerInfoId).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改打印机信息";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.printerInfoId != null) {
updateHwPrinterInfo(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addHwPrinterInfo(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const printerInfoIds = row.printerInfoId || this.ids;
this.$modal.confirm('是否确认删除打印机信息编号为"' + printerInfoIds + '"的数据项?').then(function () {
return delHwPrinterInfo(printerInfoIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
});
},
/** 导出按钮操作 */
handleExport() {
this.download('system/hwPrinterInfo/export', {
...this.queryParams
}, `hwPrinterInfo_${new Date().getTime()}.xlsx`)
}
}
};
</script>
Loading…
Cancel
Save