<template>
|
<div class="app-container">
|
<el-card class="box-card">
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
<el-form-item label="产品系列" prop="productSeries">
|
<el-input
|
v-model="queryParams.productSeries"
|
placeholder="请输入产品系列"
|
clearable
|
@keyup.enter.native="handleQuery"
|
/>
|
</el-form-item>
|
|
<el-form-item label="瓦名称" prop="tileName">
|
<el-input
|
v-model="queryParams.tileName"
|
placeholder="请输入瓦名称"
|
clearable
|
@keyup.enter.native="handleQuery"
|
/>
|
</el-form-item>
|
|
<el-form-item label="状态" prop="state">
|
<el-select v-model="queryParams.state" placeholder="请选择状态" clearable>
|
<el-option
|
v-for="dict in dict.type.sys_normal_disable"
|
:key="dict.value"
|
:label="dict.label"
|
:value="dict.value"
|
/>
|
</el-select>
|
</el-form-item>
|
<el-form-item style="float: right">
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<el-button type="warning" icon="el-icon-copy-document" size="mini" @click="advancedQuery">高级查询</el-button>
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
</el-form-item>
|
</el-form>
|
<el-form :model="queryParams" ref="queryParams" size="small" :inline="true" v-show="advancedShowSearch" label-width="68px">
|
<el-form-item label="颈名称" prop="neckName">
|
<el-input v-model="queryParams.neckName" placeholder="请输入颈名称" clearable @keyup.enter.native="handleQuery"/>
|
</el-form-item>
|
<el-form-item label="轴名称" prop="axisName">
|
<el-input v-model="queryParams.axisName" placeholder="请输入轴名称" clearable @keyup.enter.native="handleQuery"/>
|
</el-form-item>
|
</el-form>
|
</el-card>
|
|
<el-card style="margin-top: 10px" class="box-card">
|
<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="['da:tileMatchRules: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="['da:tileMatchRules: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="['da:tileMatchRules: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="['da:tileMatchRules:export']"
|
>导出</el-button>
|
</el-col>
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
</el-row>
|
|
<el-table border v-loading="loading" :data="tileMatchRulesList" @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="productSeries" width="90">
|
</el-table-column>
|
<el-table-column label="扫码对象1" align="center" prop="scanObject1" width="90">
|
</el-table-column>
|
<el-table-column label="扫码对象2" align="center" prop="scanObject2" width="90">
|
</el-table-column>
|
<el-table-column label="轴名称" align="center" prop="axisName">
|
</el-table-column>
|
<el-table-column label="颈名称" align="center" prop="neckName">
|
</el-table-column>
|
<el-table-column label="瓦名称" align="center" prop="tileName">
|
</el-table-column>
|
<el-table-column label="轴参数位置" align="center" prop="axisParameterNoPosition" width="90">
|
</el-table-column>
|
<el-table-column label="颈参数位置" align="center" prop="neckParameterPosition" width="90">
|
</el-table-column>
|
<el-table-column label="轴值" align="center" prop="axisValue">
|
</el-table-column>
|
<el-table-column label="颈值" align="center" prop="neckValue">
|
</el-table-column>
|
<el-table-column label="瓦颜色" align="center" prop="tileColor" >
|
<template slot-scope="scope">
|
<dict-tag :options="dict.type.colour_hex" :value="scope.row.tileColor" :style="{ backgroundColor: scope.row.tileColor }"/>
|
</template>
|
</el-table-column>
|
<!-- <el-table-column label="创建用户" align="center" prop="createUser">-->
|
|
<!-- </el-table-column>-->
|
<!-- <el-table-column label="更改用户" align="center" prop="updateUser">-->
|
|
<!-- </el-table-column>-->
|
<el-table-column label="状态" align="center" prop="state">
|
<template slot-scope="scope">
|
<dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.state"/>
|
</template>
|
</el-table-column>
|
<el-table-column fixed="right" width="200" label="操作" align="center" class-name="small-padding fixed-width">
|
<template slot-scope="scope">
|
<el-button
|
size="mini"
|
type="success"
|
plain
|
style="width: 72px"
|
icon="el-icon-edit"
|
@click="handleUpdate(scope.row)"
|
v-hasPermi="['da:tileMatchRules:edit']"
|
>修改</el-button>
|
<el-button
|
size="mini"
|
type="danger"
|
plain
|
style="width: 72px"
|
icon="el-icon-delete"
|
@click="handleDelete(scope.row)"
|
v-hasPermi="['da:tileMatchRules:remove']"
|
>删除</el-button>
|
</template>
|
</el-table-column>
|
</el-table>
|
</el-card>
|
|
<pagination
|
v-show="total>0"
|
:total="total"
|
:page.sync="queryParams.pageNum"
|
:limit.sync="queryParams.pageSize"
|
@pagination="getList"
|
/>
|
|
<!-- 添加或修改配瓦规则对话框 -->
|
<el-dialog v-dialogpop-up :title="title" :visible.sync="open" width="700px" append-to-body>
|
<span slot="title">
|
<i class="el-icon-s-order"></i>
|
{{titleName}}
|
</span>
|
<el-form ref="form" inline :model="form" :rules="rules" label-width="80px">
|
<el-form-item label="产品系列" prop="productSeries">
|
<el-input v-model="form.productSeries" placeholder="请输入产品系列" />
|
</el-form-item>
|
<el-form-item label="扫码对象1" prop="scanObject1">
|
<el-input v-model="form.scanObject1" placeholder="请输入扫码对象1" />
|
</el-form-item>
|
<el-form-item label="扫码对象2" prop="scanObject2">
|
<el-input v-model="form.scanObject2" placeholder="请输入扫码对象2" />
|
</el-form-item>
|
<el-form-item label="轴名称" prop="axisName">
|
<el-input v-model="form.axisName" placeholder="请输入轴名称" />
|
</el-form-item>
|
<el-form-item label="颈名称" prop="neckName">
|
<el-input v-model="form.neckName" placeholder="请输入颈名称" />
|
</el-form-item>
|
<el-form-item label="瓦名称" prop="tileName">
|
<el-input v-model="form.tileName" placeholder="请输入瓦名称" />
|
</el-form-item>
|
<el-form-item label="轴参数位置" prop="axisParameterNoPosition" label-width="120">
|
<el-input v-model="form.axisParameterNoPosition" placeholder="请输入轴参数位置" />
|
</el-form-item>
|
<el-form-item label="颈参数位置" prop="neckParameterPosition" label-width="120">
|
<el-input v-model="form.neckParameterPosition" placeholder="请输入颈参数位置" />
|
</el-form-item>
|
<el-form-item label="轴值" prop="axisValue">
|
<el-input v-model="form.axisValue" placeholder="请输入轴值" />
|
</el-form-item>
|
<el-form-item label="颈值" prop="neckValue">
|
<el-input v-model="form.neckValue" placeholder="请输入颈值" />
|
</el-form-item>
|
<!-- <el-form-item label="瓦颜色" prop="tileColor">
|
<el-input v-model="form.tileColor" placeholder="请输入瓦颜色" />
|
</el-form-item>-->
|
<!-- <el-form-item label="瓦颜色" prop="tileColor" required>
|
<el-color-picker v-model="form.tileColor" size="medium"></el-color-picker>
|
</el-form-item>-->
|
<el-form-item label="瓦颜色" prop="tileColor">
|
<el-select v-model="form.tileColor" placeholder="请选择状态">
|
<el-option
|
v-for="dict in dict.type.colour_hex"
|
:key="dict.value"
|
:label="dict.label"
|
:value="dict.value"
|
></el-option>
|
</el-select>
|
</el-form-item>
|
<!-- <el-form-item label="创建用户" prop="createUser">-->
|
<!-- <el-input v-model="form.createUser" placeholder="请输入创建用户" />-->
|
<!-- </el-form-item>-->
|
<!-- <el-form-item label="更改用户" prop="updateUser">-->
|
<!-- <el-input v-model="form.updateUser" placeholder="请输入更改用户" />-->
|
<!-- </el-form-item>-->
|
<el-form-item label="状态" prop="state">
|
<el-select v-model="form.state" placeholder="请选择状态">
|
<el-option
|
v-for="dict in dict.type.sys_normal_disable"
|
:key="dict.value"
|
:label="dict.label"
|
:value="parseInt(dict.value)"
|
></el-option>
|
</el-select>
|
</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 { listTileMatchRules, getTileMatchRules, delTileMatchRules, addTileMatchRules, updateTileMatchRules } from "@/api/main/bs/tileMatchRules/tileMatchRules";
|
|
export default {
|
name: "TileMatchRules",
|
dicts: ['subscription_type', 'sys_yes_no', 'data_type','sys_normal_disable','colour_hex'],
|
data() {
|
return {
|
advancedShowSearch: false,
|
// 遮罩层
|
loading: true,
|
titleName: "",
|
// 选中数组
|
ids: [],
|
// 非单个禁用
|
single: true,
|
// 非多个禁用
|
multiple: true,
|
// 显示搜索条件
|
showSearch: true,
|
// 总条数
|
total: 0,
|
// 配瓦规则表格数据
|
tileMatchRulesList: [],
|
// 弹出层标题
|
title: "",
|
// 是否显示弹出层
|
open: false,
|
// 查询参数
|
queryParams: {
|
pageNum: 1,
|
pageSize: 10,
|
productSeries: null,
|
scanObject1: null,
|
scanObject2: null,
|
axisName: null,
|
neckName: null,
|
tileName: null,
|
axisParameterNoPosition: null,
|
neckParameterPosition: null,
|
axisValue: null,
|
neckValue: null,
|
tileColor: null,
|
createUser: null,
|
updateUser: null,
|
state: null
|
},
|
// 表单参数
|
form: {},
|
// 表单校验
|
rules: {
|
id: [
|
{ required: true, message: "主键id不能为空", trigger: "blur" }
|
],
|
productSeries: [
|
{ required: true, message: "产品系列不能为空", trigger: "blur" }
|
],
|
axisName: [
|
{ required: true, message: "轴名称不能为空", trigger: "blur" }
|
],
|
neckName: [
|
{ required: true, message: "颈名称不能为空", trigger: "blur" }
|
],
|
tileName: [
|
{ required: true, message: "瓦名称不能为空", trigger: "blur" }
|
],
|
axisParameterNoPosition: [
|
{ required: true, message: "轴参数位置不能为空", trigger: "blur" }
|
],
|
neckParameterPosition: [
|
{ required: true, message: "颈参数位置不能为空", trigger: "blur" }
|
],
|
axisValue: [
|
{ required: true, message: "轴值不能为空", trigger: "blur" }
|
],
|
neckValue: [
|
{ required: true, message: "颈值不能为空", trigger: "blur" }
|
],
|
tileColor: [
|
{ required: true, message: "瓦值不能为空", trigger: "blur" }
|
],
|
state: [
|
{ required: true, message: "状态不能为空", trigger: "blur" }
|
]
|
}
|
};
|
},
|
created() {
|
this.getList();
|
},
|
methods: {
|
advancedQuery(){
|
this.advancedShowSearch = (this.advancedShowSearch) ? this.advancedShowSearch = false : this.advancedShowSearch = true;
|
},
|
/** 查询配瓦规则列表 */
|
getList() {
|
this.loading = true;
|
listTileMatchRules(this.queryParams).then(response => {
|
this.tileMatchRulesList = response.rows;
|
this.total = response.total;
|
this.loading = false;
|
});
|
},
|
// 取消按钮
|
cancel() {
|
this.open = false;
|
this.reset();
|
},
|
// 表单重置
|
reset() {
|
this.form = {
|
id: null,
|
productSeries: null,
|
scanObject1: null,
|
scanObject2: null,
|
axisName: null,
|
neckName: null,
|
tileName: null,
|
axisParameterNoPosition: null,
|
neckParameterPosition: null,
|
axisValue: null,
|
neckValue: null,
|
tileColor: null,
|
createUser: null,
|
createTime: null,
|
updateUser: null,
|
updateTime: null,
|
state: 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.titleName = "添加配瓦规则";
|
},
|
/** 修改按钮操作 */
|
handleUpdate(row) {
|
this.reset();
|
const id = row.id || this.ids
|
getTileMatchRules(id).then(response => {
|
this.form = response.data;
|
this.open = true;
|
this.titleName = "修改配瓦规则";
|
});
|
},
|
/** 提交按钮 */
|
submitForm() {
|
this.$refs["form"].validate(valid => {
|
if (valid) {
|
if (this.form.id != null) {
|
updateTileMatchRules(this.form).then(response => {
|
this.$modal.msgSuccess("修改成功");
|
this.open = false;
|
this.getList();
|
});
|
} else {
|
addTileMatchRules(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 delTileMatchRules(ids);
|
}).then(() => {
|
this.getList();
|
this.$modal.msgSuccess("删除成功");
|
}).catch(() => {});
|
},
|
/** 导出按钮操作 */
|
handleExport() {
|
this.download('da/tileMatchRules/export', {
|
...this.queryParams
|
}, `tileMatchRules_${new Date().getTime()}.xlsx`)
|
}
|
}
|
};
|
</script>
|