467 lines
17 KiB
Vue
467 lines
17 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
|
|
<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="['print:printerconfig: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="['print:printerconfig: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="['print:printerconfig:remove']"
|
|
>删除</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
<el-table v-loading="loading" :data="printerconfigList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column label="打印机编号" align="center" prop="printerCode" >
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
type="text"
|
|
@click="handleView(scope.row)"
|
|
v-hasPermi="['print:printerconfig:query']"
|
|
>{{scope.row.printerCode}}</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="打印机类型" align="center" prop="printerType">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.mes_printer_type" :value="scope.row.printerType"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="打印机名称" align="center" prop="printerName" />
|
|
<el-table-column label="品牌" align="center" prop="brand" />
|
|
<el-table-column label="型号" align="center" prop="printerModel" />
|
|
<el-table-column label="连接类型" align="center" prop="connectionType">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.mes_conn_type" :value="scope.row.connectionType"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="打印机IP" align="center" prop="printerIp" />
|
|
<el-table-column label="打印机端口" align="center" prop="printerPort" />
|
|
<el-table-column label="客户端IP" align="center" prop="clientIp" />
|
|
<el-table-column label="客户端端口" align="center" prop="clientPort" />
|
|
<el-table-column label="启用状态" align="center" prop="enableFlag">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.sys_yes_no" :value="scope.row.enableFlag"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="打印机状态" align="center" prop="status">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.mes_printer_status" :value="scope.row.status"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" width="200px" 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="['print:printerconfig:edit']"
|
|
>修改</el-button>
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(scope.row)"
|
|
v-hasPermi="['print:printerconfig:remove']"
|
|
>删除</el-button>
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-star-off"
|
|
@click="handleDefault(scope.row)"
|
|
v-hasPermi="['print:printerconfig:list']"
|
|
>设置为默认</el-button>
|
|
<printLabel :printerCode="scope.row.printerCode" labelText="测试" businessType = "PRINTTEST"></printLabel>
|
|
</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="960px" append-to-body>
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
|
<el-row>
|
|
<el-col :span="16">
|
|
<el-row>
|
|
<el-col :span="16">
|
|
<el-form-item label="打印机编号" prop="printerCode">
|
|
<el-input v-model="form.printerCode" placeholder="请输入打印机编号" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label-width="80">
|
|
<el-switch v-model="autoGenFlag"
|
|
active-color="#13ce66"
|
|
active-text="自动生成"
|
|
@change="handleAutoGenChange(autoGenFlag)" v-if="optType != 'view'">
|
|
</el-switch>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<el-form-item label="打印机名称" prop="printerName">
|
|
<el-input v-model="form.printerName" placeholder="请输入打印机名称" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="打印机类型" prop="printerType">
|
|
<el-select v-model="form.printerType" placeholder="请选择打印机类型">
|
|
<el-option
|
|
v-for="dict in dict.type.mes_printer_type"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="启用状态" prop="enableFlag">
|
|
<el-radio-group v-model="form.enableFlag">
|
|
<el-radio
|
|
v-for="dict in dict.type.sys_yes_no"
|
|
:key="dict.value"
|
|
:label="dict.value"
|
|
>{{dict.label}}</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="品牌" prop="brand">
|
|
<el-input v-model="form.brand" placeholder="请输入品牌" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="型号" prop="printerModel">
|
|
<el-input v-model="form.printerModel" placeholder="请输入型号" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="打印机IP" prop="printerIp">
|
|
<el-input v-model="form.printerIp" placeholder="请输入打印机IP" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="打印机端口" prop="printerPort">
|
|
<el-input v-model="form.printerPort" placeholder="请输入打印机端口" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="图片URL" prop="printerUrl">
|
|
<ImageUpload :limit="1" :value="form.printerUrl" :fileSize="5" @onUploaded="handleImgUplaoded" @onRemoved="handleImgRemoved" ></ImageUpload>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="8">
|
|
<el-form-item label="客户端IP" prop="clientIp">
|
|
<el-input v-model="form.clientIp" placeholder="请输入打印客户端IP" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="客户端端口" prop="clientPort">
|
|
<el-input v-model="form.clientPort" placeholder="请输入打印客户端端口" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="客户端">
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-download"
|
|
@click="handleDownloadClient()"
|
|
>客户端下载</el-button>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="连接类型">
|
|
<el-radio-group v-model="form.connectionType">
|
|
<el-radio
|
|
v-for="dict in dict.type.mes_conn_type"
|
|
:key="dict.value"
|
|
:label="dict.value"
|
|
>{{dict.label}}</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="打印机状态">
|
|
<el-radio-group v-model="form.status">
|
|
<el-radio
|
|
v-for="dict in dict.type.mes_printer_status"
|
|
:key="dict.value"
|
|
:label="dict.value"
|
|
>{{dict.label}}</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<el-form-item label="备注" prop="remark">
|
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="submitForm" v-if="optType !='view'">确 定</el-button>
|
|
<el-button @click="cancel">关 闭</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { listPrinterconfig, getPrinterconfig, delPrinterconfig, addPrinterconfig, updatePrinterconfig } from "@/api/print/printerconfig";
|
|
import {genCode} from "@/api/system/autocode/rule"
|
|
import printLabel from "@/components/printerLabel/index.vue"
|
|
export default {
|
|
name: "Printerconfig",
|
|
dicts: ['mes_printer_status', 'mes_printer_type', 'mes_conn_type','sys_yes_no'],
|
|
components: { printLabel },
|
|
data() {
|
|
return {
|
|
//自动生成编码
|
|
autoGenFlag:false,
|
|
optType: undefined,
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 打印机配置表格数据
|
|
printerconfigList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
printerType: null, printerCode: null, printerName: null, brand: null, printerModel: null, connectionType: null, printerUrl: null, printerIp: null, printerPort: null, clientSid: null, clientIp: null, clientPort: null, enableFlag: null, status: null, },
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
printerCode: [
|
|
{ required: true, message: "打印机编号不能为空", trigger: "blur" }
|
|
],
|
|
|
|
printerName: [
|
|
{ required: true, message: "打印机名称不能为空", trigger: "blur" }
|
|
],
|
|
|
|
printerIp: [
|
|
{ required: true, message: "打印机IP地址不能为空", trigger: "blur" }
|
|
],
|
|
printerPort: [
|
|
{ required: true, message: "打印机端口地址不能为空", trigger: "blur" }
|
|
],
|
|
remark: [
|
|
{ max: 250, message: '长度必须小于250个字符', trigger: 'blur' }
|
|
]
|
|
}
|
|
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 查询打印机配置列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listPrinterconfig(this.queryParams).then(response => {
|
|
this.printerconfigList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
printerId: null, printerCode: null, printerType: null, printerName: null, brand: null, printerModel: null, connectionType: "0", printerUrl: null, printerIp: null, printerPort: null, clientSid: null, clientIp: null, clientPort: null, enableFlag: 'Y', status: "READY", remark: null, attr1: null, attr2: null, attr3: null, attr4: 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.printerId)
|
|
this.single = selection.length!==1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加打印机配置";
|
|
this.optType = 'add';
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset();
|
|
const printerId = row.printerId || this.ids
|
|
getPrinterconfig(printerId).then(response => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改打印机配置";
|
|
this.optType = 'edit';
|
|
});
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleView(row) {
|
|
this.reset();
|
|
const printerId = row.printerId || this.ids
|
|
getPrinterconfig(printerId).then(response => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "查看打印机配置";
|
|
this.optType = 'view';
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
if (this.form.printerId != null) {
|
|
updatePrinterconfig(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
addPrinterconfig(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const printerIds = row.printerId || this.ids;
|
|
this.$modal.confirm('是否确认删除打印机配置编号为"' + printerIds + '"的数据项?').then(function() {
|
|
return delPrinterconfig(printerIds);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download('print/printerconfig/export', {
|
|
...this.queryParams
|
|
}, `printerconfig_${new Date().getTime()}.xlsx`)
|
|
},
|
|
//图片上传成功
|
|
handleImgUplaoded(imgUrl){
|
|
this.form.printerUrl = imgUrl;
|
|
},
|
|
//图片移除
|
|
handleImgRemoved(imgUrl){
|
|
this.form.printerUrl = null;
|
|
},
|
|
handleDownloadClient(){
|
|
const resource = "http://101.43.244.58:9090/api/v1/buckets/printtool/objects/download?prefix=UHJpbnQuZXhl";
|
|
this.$download.saveAs(resource,'client');
|
|
},
|
|
/**
|
|
* 将指定打印机作为默认打印机,存储在浏览器本地
|
|
* @param row
|
|
*/
|
|
handleDefault(row){
|
|
const key = 'defaultPrinter';
|
|
const value = JSON.stringify(row);
|
|
localStorage.setItem(key, value);
|
|
this.$modal.msgSuccess("设置成功!");
|
|
},
|
|
//自动生成编码
|
|
handleAutoGenChange(autoGenFlag){
|
|
if(autoGenFlag){
|
|
genCode('PRINTER_CODE').then(response =>{
|
|
this.form.printerCode = response;
|
|
});
|
|
}else{
|
|
this.form.printerCode = null;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
|
|
.printer-card{
|
|
width: 300px;
|
|
}
|
|
|
|
</style>
|