2 changed files with 771 additions and 30 deletions
@ -1,3 +1,518 @@ |
|||
<template> |
|||
<div>标识标牌</div> |
|||
<div class="app-container"> |
|||
<el-form |
|||
:model="queryParams" |
|||
ref="queryForm" |
|||
:inline="true" |
|||
v-show="showSearch" |
|||
label-width="68px" |
|||
> |
|||
<el-form-item label="标志名称" prop="markName"> |
|||
<el-input |
|||
v-model="queryParams.data.markName" |
|||
placeholder="请输入标志名称" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="水闸id" prop="suliceId"> |
|||
<el-input |
|||
v-model="queryParams.data.suliceId" |
|||
placeholder="请输入水闸id" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="标识位置" prop="markLocation"> |
|||
<el-input |
|||
v-model="queryParams.data.markLocation" |
|||
placeholder="请输入标识位置" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="标牌类型" prop="type"> |
|||
<el-select |
|||
v-model="queryParams.data.type" |
|||
placeholder="请选择标牌类型" |
|||
clearable |
|||
size="small" |
|||
> |
|||
<el-option label="请选择字典生成" value="" /> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item label="标识类型" prop="markType"> |
|||
<el-select |
|||
v-model="queryParams.data.markType" |
|||
placeholder="请选择标识类型" |
|||
clearable |
|||
size="small" |
|||
> |
|||
<el-option label="请选择字典生成" value="" /> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item label="上传图片" prop="photo"> |
|||
<el-input |
|||
v-model="queryParams.data.photo" |
|||
placeholder="请输入上传图片" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="标牌编号" prop="markCode"> |
|||
<el-input |
|||
v-model="queryParams.data.markCode" |
|||
placeholder="请输入标牌编号" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="标牌编号" prop="proNo"> |
|||
<el-input |
|||
v-model="queryParams.data.proNo" |
|||
placeholder="请输入标牌编号" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="标牌编号" prop="proCode"> |
|||
<el-input |
|||
v-model="queryParams.data.proCode" |
|||
placeholder="请输入标牌编号" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="标牌编号" prop="createUid"> |
|||
<el-input |
|||
v-model="queryParams.data.createUid" |
|||
placeholder="请输入标牌编号" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="标牌编号" prop="updateUid"> |
|||
<el-input |
|||
v-model="queryParams.data.updateUid" |
|||
placeholder="请输入标牌编号" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="标牌编号" prop="owerDept"> |
|||
<el-input |
|||
v-model="queryParams.data.owerDept" |
|||
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="['yg.sz:sluiceMark: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="['yg.sz:sluiceMark: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="['yg.sz:sluiceMark:remove']" |
|||
>删除</el-button |
|||
> |
|||
</el-col> |
|||
<el-col :span="1.5"> |
|||
<el-button |
|||
type="warning" |
|||
icon="el-icon-download" |
|||
size="mini" |
|||
@click="handleExport" |
|||
v-hasPermi="['yg.sz:sluiceMark:export']" |
|||
>导出</el-button |
|||
> |
|||
</el-col> |
|||
<right-toolbar |
|||
:showSearch.sync="showSearch" |
|||
@queryTable="getList" |
|||
></right-toolbar> |
|||
</el-row> |
|||
|
|||
<el-table |
|||
v-loading="loading" |
|||
:data="sluiceMarkList" |
|||
@selection-change="handleSelectionChange" |
|||
> |
|||
<el-table-column type="selection" width="55" align="center" /> |
|||
<el-table-column label="序号" type="index" width="50" align="center" /> |
|||
|
|||
<el-table-column label="标志名称" align="center" prop="markName" /> |
|||
<el-table-column label="水闸id" align="center" prop="suliceId" /> |
|||
<el-table-column label="标识位置" align="center" prop="markLocation" /> |
|||
<el-table-column label="标牌类型" align="center" prop="type" /> |
|||
<el-table-column label="标识类型" align="center" prop="markType" /> |
|||
<el-table-column label="上传图片" align="center" prop="photo" /> |
|||
<el-table-column label="标牌编号" align="center" prop="markCode" /> |
|||
<el-table-column label="标牌编号" align="center" prop="proNo" /> |
|||
<el-table-column label="标牌编号" align="center" prop="proCode" /> |
|||
<el-table-column label="标牌编号" align="center" prop="createUid" /> |
|||
<el-table-column label="标牌编号" align="center" prop="updateUid" /> |
|||
<el-table-column label="标牌编号" align="center" prop="owerDept" /> |
|||
<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-button |
|||
size="mini" |
|||
type="text" |
|||
icon="el-icon-edit" |
|||
@click="handleUpdate(scope.row)" |
|||
v-hasPermi="['yg.sz:sluiceMark:edit']" |
|||
>修改</el-button |
|||
> |
|||
<el-button |
|||
size="mini" |
|||
type="text" |
|||
icon="el-icon-delete" |
|||
@click="handleDelete(scope.row)" |
|||
v-hasPermi="['yg.sz:sluiceMark: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="markName"> |
|||
<el-input v-model="form.markName" placeholder="请输入标志名称" /> |
|||
</el-form-item> |
|||
<el-form-item label="水闸编码" prop="sluiceId"> |
|||
<el-input v-model="form.suliceId" placeholder="请输入水闸编码" /> |
|||
</el-form-item> |
|||
<el-form-item label="标识位置" prop="markLocation"> |
|||
<el-input v-model="form.markLocation" placeholder="请输入标识位置" /> |
|||
</el-form-item> |
|||
<el-form-item label="标牌类型" prop="type"> |
|||
<el-select v-model="form.type" placeholder="请选择标牌类型"> |
|||
<el-option label="请选择字典生成" value="" /> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item label="标识类型" prop="markType"> |
|||
<el-select v-model="form.markType" placeholder="请选择标识类型"> |
|||
<el-option label="请选择字典生成" value="" /> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item label="上传图片" prop="photo"> |
|||
<el-input v-model="form.photo" placeholder="请输入上传图片" /> |
|||
</el-form-item> |
|||
<el-form-item label="标牌编号" prop="markCode"> |
|||
<el-input v-model="form.markCode" placeholder="请输入标牌编号" /> |
|||
</el-form-item> |
|||
<el-form-item label="标牌编号" prop="proNo"> |
|||
<el-input v-model="form.proNo" placeholder="请输入标牌编号" /> |
|||
</el-form-item> |
|||
<el-form-item label="标牌编号" prop="proCode"> |
|||
<el-input v-model="form.proCode" placeholder="请输入标牌编号" /> |
|||
</el-form-item> |
|||
<el-form-item label="标牌编号" prop="createUid"> |
|||
<el-input v-model="form.createUid" placeholder="请输入标牌编号" /> |
|||
</el-form-item> |
|||
<el-form-item label="标牌编号" prop="updateUid"> |
|||
<el-input v-model="form.updateUid" placeholder="请输入标牌编号" /> |
|||
</el-form-item> |
|||
<el-form-item label="标牌编号" prop="owerDept"> |
|||
<el-input v-model="form.owerDept" placeholder="请输入标牌编号" /> |
|||
</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 { |
|||
listSluiceMark, |
|||
getSluiceMark, |
|||
delSluiceMark, |
|||
addSluiceMark, |
|||
updateSluiceMark, |
|||
exportSluiceMark, |
|||
} from "@/api/yg/sluiceMark"; |
|||
|
|||
export default { |
|||
name: "SluiceMark", |
|||
data() { |
|||
return { |
|||
// 遮罩层 |
|||
loading: true, |
|||
// 选中数组 |
|||
ids: [], |
|||
// 非单个禁用 |
|||
single: true, |
|||
// 非多个禁用 |
|||
multiple: true, |
|||
// 显示搜索条件 |
|||
showSearch: true, |
|||
// 总条数 |
|||
total: 0, |
|||
// 水闸标识标牌表格数据 |
|||
sluiceMarkList: [], |
|||
// 弹出层标题 |
|||
title: "", |
|||
// 是否显示弹出层 |
|||
open: false, |
|||
// 查询参数 |
|||
queryParams: { |
|||
pageNum: 1, |
|||
pageSize: 10, |
|||
ids: null, |
|||
data: { |
|||
markName: null, |
|||
suliceId: null, |
|||
markLocation: null, |
|||
type: null, |
|||
markType: null, |
|||
photo: null, |
|||
markCode: null, |
|||
proNo: null, |
|||
proCode: null, |
|||
createUid: null, |
|||
updateUid: null, |
|||
owerDept: null, |
|||
}, |
|||
}, |
|||
// 表单参数 |
|||
form: {}, |
|||
// 表单校验 |
|||
rules: {}, |
|||
}; |
|||
}, |
|||
created() { |
|||
this.getList(); |
|||
}, |
|||
methods: { |
|||
/** 查询水闸标识标牌列表 */ |
|||
getList() { |
|||
this.loading = true; |
|||
listSluiceMark(this.queryParams).then((response) => { |
|||
this.sluiceMarkList = response.records; |
|||
this.total = response.total; |
|||
this.loading = false; |
|||
}); |
|||
}, |
|||
// 取消按钮 |
|||
cancel() { |
|||
this.open = false; |
|||
this.reset(); |
|||
}, |
|||
// 表单重置 |
|||
reset() { |
|||
this.form = { |
|||
id: null, |
|||
markName: null, |
|||
suliceId: null, |
|||
markLocation: null, |
|||
type: null, |
|||
markType: null, |
|||
photo: null, |
|||
markCode: null, |
|||
proNo: null, |
|||
proCode: null, |
|||
createUid: null, |
|||
updateUid: null, |
|||
createTime: null, |
|||
updateTime: null, |
|||
owerDept: null, |
|||
remark: null, |
|||
}; |
|||
this.resetForm("form"); |
|||
}, |
|||
// 查询表单重置 |
|||
resetQueryForm() { |
|||
this.queryParams = { |
|||
pageNum: 1, |
|||
pageSize: 10, |
|||
data: { |
|||
id: null, |
|||
markName: null, |
|||
suliceId: null, |
|||
markLocation: null, |
|||
type: null, |
|||
markType: null, |
|||
photo: null, |
|||
markCode: null, |
|||
proNo: null, |
|||
proCode: null, |
|||
createUid: null, |
|||
updateUid: null, |
|||
createTime: null, |
|||
updateTime: null, |
|||
owerDept: null, |
|||
remark: null, |
|||
}, |
|||
}; |
|||
this.resetForm("form"); |
|||
}, |
|||
/** 搜索按钮操作 */ |
|||
handleQuery() { |
|||
this.queryParams.pageNum = 1; |
|||
this.getList(); |
|||
}, |
|||
/** 重置按钮操作 */ |
|||
resetQuery() { |
|||
this.resetQueryForm(); |
|||
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; |
|||
getSluiceMark(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) { |
|||
updateSluiceMark(this.form).then((response) => { |
|||
if (response.code === 200) { |
|||
this.msgSuccess("修改成功"); |
|||
this.open = false; |
|||
this.getList(); |
|||
} |
|||
}); |
|||
} else { |
|||
addSluiceMark(this.form).then((response) => { |
|||
if (response.code === 200) { |
|||
this.msgSuccess("新增成功"); |
|||
this.open = false; |
|||
this.getList(); |
|||
} |
|||
}); |
|||
} |
|||
} |
|||
}); |
|||
}, |
|||
/** 删除按钮操作 */ |
|||
handleDelete(row) { |
|||
const ids = row.id || this.ids; |
|||
if (ids) { |
|||
this.$confirm("是否删除选中的数据?", "警告", { |
|||
confirmButtonText: "确定", |
|||
cancelButtonText: "取消", |
|||
type: "warning", |
|||
}) |
|||
.then(function () { |
|||
return delSluiceMark(ids); |
|||
}) |
|||
.then(() => { |
|||
this.getList(); |
|||
this.msgSuccess("删除成功"); |
|||
}) |
|||
.catch(function () {}); |
|||
} else { |
|||
this.$message.warning("请选择要删除的数据!!"); |
|||
} |
|||
}, |
|||
/** 导出按钮操作 */ |
|||
handleExport() { |
|||
const queryParams = this.queryParams; |
|||
let message = "是否确认导出所有的数据项?"; |
|||
if (this.ids) { |
|||
message = "是否确认导出选中的数据项?"; |
|||
queryParams.ids = this.ids; |
|||
} |
|||
this.$confirm(message, "警告", { |
|||
confirmButtonText: "确定", |
|||
cancelButtonText: "取消", |
|||
type: "warning", |
|||
}) |
|||
.then(function () { |
|||
return exportSluiceMark(queryParams); |
|||
}) |
|||
.then((response) => { |
|||
this.downloadFile(response, true, response.msg); |
|||
// this.download(response.msg); |
|||
}) |
|||
.catch(function () {}); |
|||
}, |
|||
}, |
|||
}; |
|||
</script> |
|||
|
Loading…
Reference in new issue