939 lines
27 KiB
Vue
939 lines
27 KiB
Vue
<template>
|
||
<div class="app-container iot-device">
|
||
<component :is="componectVal" :isTenant="false" :sourceId="sourceId"></component>
|
||
<div v-show="componectVal === ''">
|
||
<el-form
|
||
v-show="showSearch"
|
||
ref="queryForm"
|
||
:inline="true"
|
||
:model="queryParams"
|
||
label-width="68px"
|
||
>
|
||
<!-- <el-form-item label="所属型号" prop="modelId">
|
||
<el-select v-model="queryParams.modelId" placeholder="所属型号" clearable size="small" @change="handleQuery">
|
||
<el-option
|
||
:label="doct.modelName"
|
||
v-for="doct in queryModelOpt"
|
||
:key="doct.modelId"
|
||
:value="doct.modelId"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>-->
|
||
|
||
<el-form-item label="型号名称" prop="modelName">
|
||
<el-input
|
||
v-model="queryParams.modelName"
|
||
clearable
|
||
placeholder="请输入型号名称"
|
||
size="small"
|
||
@keyup.enter.native="handleQuery"
|
||
/>
|
||
</el-form-item>
|
||
|
||
<el-form-item label="设备名称" prop="deviceName">
|
||
<el-input
|
||
v-model="queryParams.deviceName"
|
||
clearable
|
||
placeholder="请输入设备名称"
|
||
size="small"
|
||
@keyup.enter.native="handleQuery"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="设备状态" prop="deviceState">
|
||
<el-select
|
||
v-model="queryParams.deviceState"
|
||
clearable
|
||
placeholder="请选择设备状态"
|
||
size="small"
|
||
@change="handleQuery"
|
||
>
|
||
<el-option
|
||
v-for="(keys, vals) in deviceStatusOpt"
|
||
:key="vals"
|
||
:label="keys"
|
||
:value="vals"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<!-- <el-form-item label="设备类型" prop="deviceType">
|
||
<el-select
|
||
v-model="queryParams.deviceType"
|
||
placeholder="请选择设备类型"
|
||
@change="handleQuery"
|
||
clearable
|
||
size="small"
|
||
>
|
||
<el-option
|
||
:label="keys"
|
||
:value="vals"
|
||
v-for="(keys, vals) in deviceTypeList"
|
||
:key="vals"
|
||
/>
|
||
</el-select>
|
||
</el-form-item> -->
|
||
<el-form-item>
|
||
<el-button icon="el-icon-search" size="mini" type="primary" @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
|
||
v-hasPermi="['iot:device:add']"
|
||
icon="el-icon-plus"
|
||
plain
|
||
size="mini"
|
||
type="primary"
|
||
@click="handleAdd"
|
||
>新增</el-button>
|
||
</el-col>
|
||
<el-col :span="1.5">
|
||
<el-button
|
||
icon="el-icon-download"
|
||
plain
|
||
size="mini"
|
||
type="warning"
|
||
@click="handleExport"
|
||
>导出</el-button>
|
||
</el-col>
|
||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||
</el-row>
|
||
|
||
<el-table
|
||
v-loading="loading"
|
||
:data="deviceList"
|
||
:default-sort="{prop: 'createTime', order: 'descending'}"
|
||
@sort-change="sortChange"
|
||
>
|
||
<el-table-column
|
||
:index="indexFormatter"
|
||
align="center"
|
||
label="序号"
|
||
type="index"
|
||
width="80px"
|
||
></el-table-column>
|
||
<el-table-column align="left" label="设备名称" prop="deviceName" />
|
||
<el-table-column align="left" label="所属型号" prop="modelName" />
|
||
<el-table-column align="left" label="设备key" prop="deviceKey" />
|
||
<el-table-column align="left" label="设备类型" prop="deviceTypeName" width="120px" />
|
||
<!-- <el-table-column label="父设备" align="left" prop="parentName" /> -->
|
||
<el-table-column align="center" label="设备状态" prop="deviceState" width="120">
|
||
<template slot-scope="scope">
|
||
<el-tag v-if="scope.row.deviceState === 'ONLINE'" type="success">在线</el-tag>
|
||
<el-tag v-else-if="scope.row.deviceState === 'OFFLINE'" type="danger">离线</el-tag>
|
||
<el-tag v-else-if="scope.row.deviceState === 'OUTLINE'" type="danger">脱线</el-tag>
|
||
<el-tag v-else-if="scope.row.deviceState === 'UNACTIVE'" type="info">未激活</el-tag>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column
|
||
align="center"
|
||
label="创建时间"
|
||
prop="createTime"
|
||
sortable="custom"
|
||
width="160px"
|
||
/>
|
||
<el-table-column
|
||
align="center"
|
||
class-name="small-padding fixed-width"
|
||
label="操作"
|
||
width="200px"
|
||
>
|
||
<template slot-scope="scope">
|
||
<el-button
|
||
icon="el-icon-search"
|
||
size="mini"
|
||
type="text"
|
||
@click="handleDetails(scope.row)"
|
||
>详情</el-button>
|
||
<el-button
|
||
v-hasPermi="['iot:device:edit']"
|
||
icon="el-icon-edit"
|
||
size="mini"
|
||
type="text"
|
||
@click="handleUpdate(scope.row)"
|
||
>修改</el-button>
|
||
<el-button
|
||
v-hasPermi="['iot:device:remove']"
|
||
icon="el-icon-delete"
|
||
size="mini"
|
||
type="text"
|
||
@click="handleDelete(scope.row)"
|
||
>删除</el-button>
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
|
||
<pagination
|
||
v-show="total > 0"
|
||
:limit.sync="queryParams.pageSize"
|
||
:page.sync="queryParams.pageNum"
|
||
:total="total"
|
||
@pagination="getList"
|
||
/>
|
||
</div>
|
||
|
||
<!-- 添加或修改设备对话框 -->
|
||
<dialog-template
|
||
:close-on-click-modal="false"
|
||
:title="title"
|
||
:visible="open"
|
||
width="500px"
|
||
@close="open = false"
|
||
>
|
||
<el-form ref="form" slot="dialog-center" :model="form" :rules="rules" label-width="100px">
|
||
<el-form-item label="所属型号:" prop="modelId">
|
||
<el-input
|
||
v-model="form.modelName"
|
||
placeholder="点击选择型号"
|
||
@focus="openModelTableSelectDialog()"
|
||
/>
|
||
</el-form-item>
|
||
|
||
<el-form-item label="设备类型:" prop="deviceType">
|
||
<el-select
|
||
v-model="form.deviceType"
|
||
clearable
|
||
disabled
|
||
placeholder="请选择设备类型"
|
||
style="width: 100%;"
|
||
>
|
||
<el-option
|
||
v-for="(keys, vals) in deviceTypeList"
|
||
:key="vals"
|
||
:label="keys"
|
||
:value="vals"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item v-if="form.deviceType === 'MINIATURE_BREAKER'" label="父设备:" prop="parentId">
|
||
<el-input
|
||
v-model="form.parentName"
|
||
placeholder="点击选择父设备"
|
||
@focus="openTableSelectDialog()"
|
||
/>
|
||
</el-form-item>
|
||
|
||
<el-form-item v-if="form.deviceType === 'MINIATURE_BREAKER'" label="线路类型:" prop="lineType">
|
||
<el-select v-model="form.lineType" clearable placeholder="请选择线路类型" style="width: 100%;">
|
||
<el-option v-for="(keys, vals) in lineTypeOpt" :key="vals" :label="keys" :value="vals" />
|
||
</el-select>
|
||
</el-form-item>
|
||
|
||
<el-form-item label="设备名称:" prop="deviceName">
|
||
<el-input v-model="form.deviceName" placeholder="请输入设备名称" />
|
||
</el-form-item>
|
||
|
||
<el-form-item label="设备KEY:" prop="deviceKey">
|
||
<el-input v-model="form.deviceKey" placeholder="请输入设备KEY" />
|
||
</el-form-item>
|
||
|
||
<el-form-item label="参数设置:">
|
||
<span style="color: red; font-size: 12px;">*注意:锁定即参数不可修改;未锁则可以修改。</span>
|
||
<div class="form-params-wrap">
|
||
<param-wrap v-if="open" ref="paramWrap" typeKeys></param-wrap>
|
||
</div>
|
||
</el-form-item>
|
||
</el-form>
|
||
<div slot="dialog-footer" class="dialog-footer">
|
||
<el-button size="mini" type="primary" @click="submitForm">确 定</el-button>
|
||
<el-button size="mini" @click="cancel">取 消</el-button>
|
||
</div>
|
||
</dialog-template>
|
||
|
||
<el-dialog
|
||
:close-on-click-modal="false"
|
||
:visible.sync="selectTableShow"
|
||
class="select-table-dialog"
|
||
title="选择"
|
||
top="10vh"
|
||
width="75%"
|
||
>
|
||
<select-table-wrap
|
||
v-if="selectTableShow"
|
||
:otherOption="tableSelectOption.otherOption"
|
||
:queryOption="tableSelectOption.queryOpt"
|
||
:tableList="tableSelectOption.tableList"
|
||
:tableOption="tableSelectOption.tableOpt"
|
||
@parentGetList="childGetList($event)"
|
||
@returnEvent="returnEvent($event)"
|
||
/>
|
||
|
||
<div slot="footer" class="dialog-footer">
|
||
<el-button size="mini" type="primary" @click="resuleClick">确 定</el-button>
|
||
<el-button size="mini" @click="() =>{selectTableShow = false}">取 消</el-button>
|
||
</div>
|
||
</el-dialog>
|
||
|
||
<div v-show="componectVal !== ''" class="to-home-wrap2-circuit" @click="toTableClick">
|
||
<el-button circle icon="el-icon-d-arrow-left" title="返回列表">返回列表</el-button>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import {
|
||
listDevice,
|
||
getDevice,
|
||
delDevice,
|
||
addDevice,
|
||
updateDevice,
|
||
exportDevice,
|
||
listDeviceTypeList
|
||
} from "@/api/iot/device";
|
||
import { listModel, getModel } from "@/api/iot/model";
|
||
import SelectTableWrap from "@/components/SelectTable/index";
|
||
import DetailsWrap from "@/views/profile/DeviceDetailsView/index";
|
||
import ParamWrap from "@/components/ParamWrap/deviceParam";
|
||
import DialogTemplate from "@/components/DialogTemplate";
|
||
const deviceStatusOpt = {
|
||
ONLINE: "在线",
|
||
OFFLINE: "离线",
|
||
OUTLINE: "脱线",
|
||
UNACTIVE: "未激活"
|
||
};
|
||
const lineTypeOpt = {
|
||
MAIN: "总路",
|
||
BRANCH: "支路"
|
||
};
|
||
|
||
export default {
|
||
name: "circuitBreaker",
|
||
components: {
|
||
SelectTableWrap,
|
||
DetailsWrap,
|
||
ParamWrap,
|
||
DialogTemplate
|
||
},
|
||
data() {
|
||
return {
|
||
deviceStatusOpt,
|
||
lineTypeOpt,
|
||
sourceId: "",
|
||
componectVal: "",
|
||
selectTableShow: false,
|
||
tableSelectOption: {},
|
||
selectResult: {},
|
||
queryModelOpt: [],
|
||
// 遮罩层
|
||
loading: true,
|
||
// 选中数组
|
||
ids: [],
|
||
// 非单个禁用
|
||
single: true,
|
||
// 非多个禁用
|
||
multiple: true,
|
||
// 显示搜索条件
|
||
showSearch: true,
|
||
// 总条数
|
||
total: 0,
|
||
// 设备表格数据
|
||
deviceList: [],
|
||
// 弹出层标题
|
||
title: "",
|
||
// 是否显示弹出层
|
||
open: false,
|
||
// 查询参数
|
||
queryParams: {
|
||
pageNum: 1,
|
||
pageSize: 10,
|
||
modelId: null,
|
||
parentId: null,
|
||
deviceName: null,
|
||
deviceState: null,
|
||
deviceType: null,
|
||
modelName: null,
|
||
orderByColumn: "createTime",
|
||
isAsc: "desc",
|
||
},
|
||
// 表单参数
|
||
form: {},
|
||
// 表单校验
|
||
rules: {
|
||
modelId: [
|
||
{ required: true, message: "所属型号不能为空", trigger: "blur" }
|
||
],
|
||
deviceType: [
|
||
{ required: true, message: "设备类型不能为空", trigger: "blur" }
|
||
],
|
||
parentId: [
|
||
{ required: true, message: "父设备不能为空", trigger: "blur" }
|
||
],
|
||
deviceName: [
|
||
{ required: true, message: "设备名称不能为空", trigger: "blur" }
|
||
],
|
||
lineType: [
|
||
{ required: true, message: "线路类型不能为空", trigger: "blur" }
|
||
],
|
||
deviceKey: [
|
||
{
|
||
required: true,
|
||
validator: this.chenking_deviceKey,
|
||
trigger: "blur"
|
||
}
|
||
]
|
||
},
|
||
deviceTypeList: {}
|
||
};
|
||
},
|
||
created() {
|
||
this.getDeviceTypeList();
|
||
this.initGetModelList();
|
||
this.getList();
|
||
},
|
||
methods: {
|
||
sortChange(column) {
|
||
const sort = {
|
||
isAsc: column.order === "descending" ? "desc" : "asc",
|
||
orderByColumn: column.prop
|
||
};
|
||
this.queryParams = Object.assign(this.queryParams, sort);
|
||
this.handleQuery();
|
||
},
|
||
indexFormatter(val) {
|
||
return (
|
||
val + 1 + (this.queryParams.pageNum - 1) * this.queryParams.pageSize
|
||
);
|
||
},
|
||
handleDetails(row) {
|
||
this.sourceId = row.deviceId;
|
||
this.componectVal = "DetailsWrap";
|
||
},
|
||
// 跳转详情页
|
||
toTableClick() {
|
||
this.componectVal = "";
|
||
},
|
||
// 打开厂商选择窗口 ——表格
|
||
openModelTableSelectDialog() {
|
||
this.selectResult = {};
|
||
this.tableSelectOption = {
|
||
otherOption: {
|
||
tableType: "model"
|
||
},
|
||
queryOpt: {
|
||
disable: false,
|
||
labelWidth: "68px",
|
||
params: {
|
||
protocolType: "",
|
||
modelName: "",
|
||
deviceType: 'GATEWAY_CONTROLLER'
|
||
},
|
||
page: {
|
||
pageSize: 10,
|
||
pageNum: 1,
|
||
total: 0
|
||
},
|
||
inline: true,
|
||
queryChilds: [
|
||
{
|
||
style: "",
|
||
placeholder: "型号名称",
|
||
clearable: true,
|
||
label: "型号名称",
|
||
type: "input",
|
||
key: "modelName",
|
||
size: "small",
|
||
value: ""
|
||
},
|
||
{
|
||
style: "",
|
||
placeholder: "协议类型",
|
||
clearable: true,
|
||
label: "协议类型",
|
||
type: "select",
|
||
key: "protocolType",
|
||
size: "small",
|
||
value: "",
|
||
options: [
|
||
{
|
||
key: "IOTOS",
|
||
label: "iot平台",
|
||
value: "IOTOS"
|
||
},
|
||
{
|
||
key: "ONENET",
|
||
label: "ONENET",
|
||
value: "ONENET"
|
||
}
|
||
],
|
||
optionKey: {
|
||
key: "key",
|
||
label: "label",
|
||
value: "value"
|
||
}
|
||
}
|
||
]
|
||
},
|
||
tableOpt: {
|
||
loading: false,
|
||
rowKey: "deviceId",
|
||
selection: false,
|
||
maxHeight: "45vh",
|
||
childs: [
|
||
{
|
||
style: "",
|
||
label: "厂商名称",
|
||
type: "",
|
||
prop: "vendorName",
|
||
align: "left",
|
||
width: "200",
|
||
"show-overflow-tooltip": false,
|
||
tempType: "span"
|
||
},
|
||
{
|
||
style: "",
|
||
label: "型号名称",
|
||
type: "",
|
||
prop: "modelName",
|
||
align: "left",
|
||
width: "200",
|
||
"show-overflow-tooltip": false,
|
||
tempType: "span"
|
||
},
|
||
{
|
||
style: "",
|
||
label: "设备类型",
|
||
type: "",
|
||
prop: "deviceTypeName",
|
||
align: "left",
|
||
width: "120",
|
||
"show-overflow-tooltip": false,
|
||
tempType: "span"
|
||
},
|
||
{
|
||
style: "",
|
||
label: "产品PK",
|
||
type: "",
|
||
prop: "prodKey",
|
||
align: "left",
|
||
width: "",
|
||
"show-overflow-tooltip": false,
|
||
tempType: "span"
|
||
},
|
||
{
|
||
style: "",
|
||
label: "产品密钥",
|
||
type: "",
|
||
prop: "prodSecret",
|
||
align: "left",
|
||
width: "",
|
||
"show-overflow-tooltip": false,
|
||
tempType: "span"
|
||
}
|
||
],
|
||
tableList: {
|
||
type: Array
|
||
}
|
||
},
|
||
tableList: []
|
||
};
|
||
this.selectTableShow = true;
|
||
},
|
||
// 打开设备选择窗口 ——表格
|
||
openTableSelectDialog() {
|
||
this.selectResult = {};
|
||
this.tableSelectOption = {
|
||
otherOption: {
|
||
tableType: "device"
|
||
},
|
||
queryOpt: {
|
||
disable: false,
|
||
labelWidth: "68px",
|
||
params: {
|
||
deviceName: "",
|
||
modelId: "",
|
||
parentId: 0,
|
||
deviceType: "GATEWAY_CONTROLLER"
|
||
},
|
||
page: {
|
||
pageSize: 10,
|
||
pageNum: 1,
|
||
total: 0
|
||
},
|
||
inline: true,
|
||
queryChilds: [
|
||
{
|
||
style: "",
|
||
placeholder: "设备名称",
|
||
clearable: true,
|
||
label: "设备名称",
|
||
type: "input",
|
||
key: "deviceName",
|
||
size: "small",
|
||
value: ""
|
||
}
|
||
]
|
||
},
|
||
tableOpt: {
|
||
loading: false,
|
||
rowKey: "deviceId",
|
||
selection: false,
|
||
maxHeight: "45vh",
|
||
childs: [
|
||
{
|
||
style: "",
|
||
label: "所属型号",
|
||
type: "",
|
||
prop: "modelName",
|
||
align: "left",
|
||
width: "",
|
||
"show-overflow-tooltip": false,
|
||
tempType: "span"
|
||
},
|
||
{
|
||
style: "",
|
||
label: "设备名称",
|
||
type: "",
|
||
prop: "deviceName",
|
||
align: "left",
|
||
width: "",
|
||
"show-overflow-tooltip": false,
|
||
tempType: "span"
|
||
},
|
||
{
|
||
style: "",
|
||
label: "设备Key",
|
||
type: "",
|
||
prop: "deviceKey",
|
||
align: "left",
|
||
width: "",
|
||
"show-overflow-tooltip": false,
|
||
tempType: "span"
|
||
},
|
||
{
|
||
style: "",
|
||
label: "创建时间",
|
||
type: "time",
|
||
prop: "createTime",
|
||
align: "center",
|
||
width: "160",
|
||
"show-overflow-tooltip": false,
|
||
tempType: "span"
|
||
}
|
||
],
|
||
tableList: {
|
||
type: Array
|
||
}
|
||
},
|
||
tableList: []
|
||
};
|
||
this.selectTableShow = true;
|
||
},
|
||
// 查询回调
|
||
childGetList(data) {
|
||
if (data.otherOption.tableType === "device") {
|
||
this.deviceChildList(data);
|
||
} else if (data.otherOption.tableType === "model") {
|
||
this.modelChildList(data);
|
||
}
|
||
},
|
||
initGetModelList() {
|
||
listModel({
|
||
pageNum: 1,
|
||
pageSize: 99999
|
||
}).then(response => {
|
||
this.queryModelOpt = response.rows;
|
||
});
|
||
},
|
||
modelChildList(data) {
|
||
listModel(Object.assign(data.page, data.param, { selected: 1 })).then(
|
||
response => {
|
||
this.tableSelectOption.tableList = response.rows;
|
||
this.tableSelectOption.queryOpt.page.total = Number(response.total);
|
||
}
|
||
);
|
||
},
|
||
deviceChildList(data) {
|
||
listDevice(Object.assign(data.page, data.param, { selected: 1 })).then(
|
||
response => {
|
||
this.tableSelectOption.tableList = response.rows;
|
||
this.tableSelectOption.queryOpt.page.total = Number(response.total);
|
||
}
|
||
);
|
||
},
|
||
// 根据 型号id 获取 型号详情
|
||
getModelInfoById(modelId) {
|
||
getModel(modelId).then(res => {
|
||
this.$refs.paramWrap.setList(res.data.paramList || []);
|
||
});
|
||
},
|
||
// 点击或者双击数据回调
|
||
returnEvent(data) {
|
||
if (data.type === "dblclick") {
|
||
if (data.otherOption.tableType === "device") {
|
||
this.form.parentId = data.value.deviceId;
|
||
this.form.parentName = data.value.deviceName;
|
||
} else if (data.otherOption.tableType === "model") {
|
||
this.getModelInfoById(data.value.modelId);
|
||
this.form.modelId = data.value.modelId;
|
||
this.form.modelName = data.value.modelName;
|
||
this.form.deviceType = data.value.deviceType;
|
||
this.form.prodKey = data.value.prodKey;
|
||
this.deviceTypeChange(this.form.deviceType);
|
||
}
|
||
this.selectTableShow = false;
|
||
} else if (data.type === "click") {
|
||
this.selectResult = {};
|
||
if (data.otherOption.tableType === "device") {
|
||
this.selectResult.parentId = data.value.deviceId;
|
||
this.selectResult.parentName = data.value.deviceName;
|
||
} else if (data.otherOption.tableType === "model") {
|
||
this.selectResult.modelId = data.value.modelId;
|
||
this.selectResult.modelName = data.value.modelName;
|
||
this.selectResult.deviceType = data.value.deviceType;
|
||
// this.selectResult.paramList = data.value.paramList;
|
||
this.selectResult.prodKey = data.value.prodKey;
|
||
}
|
||
this.selectResult.tableType = data.otherOption.tableType;
|
||
}
|
||
},
|
||
// 点击确定按钮
|
||
resuleClick() {
|
||
if (this.selectResult.tableType === "device") {
|
||
this.form.parentId = this.selectResult.parentId;
|
||
this.form.parentName = this.selectResult.parentName;
|
||
} else if (this.selectResult.tableType === "model") {
|
||
this.form.modelId = this.selectResult.modelId;
|
||
this.form.prodKey = this.selectResult.prodKey;
|
||
this.form.modelName = this.selectResult.modelName;
|
||
this.form.deviceType = this.selectResult.deviceType;
|
||
this.deviceTypeChange(this.form.deviceType);
|
||
this.getModelInfoById(this.selectResult.modelId);
|
||
// this.$refs.paramWrap.setList(this.selectResult.paramList || []);
|
||
}
|
||
this.selectTableShow = false;
|
||
},
|
||
deviceTypeChange(val) {
|
||
if (val !== "MINIATURE_BREAKER") {
|
||
this.form.parentId = 0;
|
||
this.form.parentName = "";
|
||
} else if (!val) {
|
||
this.form.parentId = "";
|
||
this.form.parentName = "";
|
||
}
|
||
},
|
||
// 查询设备类型列表
|
||
getDeviceTypeList() {
|
||
listDeviceTypeList().then(response => {
|
||
this.deviceTypeList = response.data;
|
||
});
|
||
},
|
||
/** 查询设备列表 */
|
||
getList() {
|
||
this.loading = true;
|
||
listDevice(Object.assign(this.queryParams , {
|
||
deviceType: 'GATEWAY_CONTROLLER'
|
||
})).then(response => {
|
||
this.deviceList = response.rows;
|
||
this.total = response.total;
|
||
this.loading = false;
|
||
});
|
||
},
|
||
// 取消按钮
|
||
cancel() {
|
||
this.open = false;
|
||
this.reset();
|
||
},
|
||
// 表单重置
|
||
reset() {
|
||
this.form = {
|
||
modelId: null,
|
||
modelName: "",
|
||
parentName: "",
|
||
parentId: null,
|
||
deviceName: null,
|
||
deviceType: null,
|
||
paramList: [],
|
||
deviceKey: "",
|
||
lineType: undefined
|
||
};
|
||
this.resetForm("form");
|
||
},
|
||
/** 搜索按钮操作 */
|
||
handleQuery() {
|
||
this.queryParams.pageNum = 1;
|
||
this.getList();
|
||
},
|
||
/** 重置按钮操作 */
|
||
resetQuery() {
|
||
this.resetForm("queryForm");
|
||
this.handleQuery();
|
||
},
|
||
/** 新增按钮操作 */
|
||
handleAdd() {
|
||
this.reset();
|
||
this.open = true;
|
||
this.title = "添加设备";
|
||
},
|
||
/** 修改按钮操作 */
|
||
handleUpdate(row) {
|
||
this.reset();
|
||
const deviceId = row.deviceId || this.ids;
|
||
const _this = this;
|
||
getDevice(deviceId).then(response => {
|
||
_this.form = response.data;
|
||
_this.open = true;
|
||
_this.title = "修改设备";
|
||
setTimeout(() => {
|
||
_this.$refs.paramWrap.setList(response.data.paramList || []);
|
||
}, 100);
|
||
});
|
||
},
|
||
/** 提交按钮 */
|
||
submitForm() {
|
||
this.$refs["form"].validate(valid => {
|
||
if (valid) {
|
||
this.form.paramList = this.$refs.paramWrap.getResult();
|
||
this.form.lineType =
|
||
this.form.deviceType === "MINIATURE_BREAKER"
|
||
? this.form.lineType
|
||
: undefined;
|
||
if (this.form.deviceId != null) {
|
||
updateDevice(this.form).then(response => {
|
||
this.msgSuccess("修改成功");
|
||
this.open = false;
|
||
this.getList();
|
||
});
|
||
} else {
|
||
addDevice(this.form).then(response => {
|
||
this.msgSuccess("新增成功");
|
||
this.open = false;
|
||
this.getList();
|
||
});
|
||
}
|
||
}
|
||
});
|
||
},
|
||
/** 删除按钮操作 */
|
||
handleDelete(row) {
|
||
const deviceIds = row.deviceId || this.ids;
|
||
this.$confirm("是否删除该选项?", "警告", {
|
||
confirmButtonText: "确定",
|
||
cancelButtonText: "取消",
|
||
type: "warning"
|
||
})
|
||
.then(function() {
|
||
return delDevice(deviceIds);
|
||
})
|
||
.then(() => {
|
||
this.getList();
|
||
this.msgSuccess("删除成功");
|
||
});
|
||
},
|
||
/** 导出按钮操作 */
|
||
handleExport() {
|
||
const queryParams = this.queryParams;
|
||
this.$confirm("是否确认导出所有设备数据项?", "警告", {
|
||
confirmButtonText: "确定",
|
||
cancelButtonText: "取消",
|
||
type: "warning"
|
||
})
|
||
.then(function() {
|
||
return exportDevice(queryParams);
|
||
})
|
||
.then(response => {
|
||
this.download(response.msg);
|
||
});
|
||
},
|
||
chenking_deviceKey(rule, value, callback) {
|
||
const isExp = /^[A-Z a-z 0-9 _ - $]{0,36}$/;
|
||
if (this.form.deviceKey && !isExp.test(this.form.deviceKey)) {
|
||
callback(new Error("格式不正确(数字,英文字母大小写,36个字符)!"));
|
||
} else {
|
||
callback();
|
||
}
|
||
}
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.iot-device {
|
||
.eldialog-wrap {
|
||
.el-dialog__header {
|
||
|
||
}
|
||
.el-dialog__body {
|
||
padding: 0px;
|
||
}
|
||
.el-form {
|
||
padding: 20px;
|
||
padding-right: 40px;
|
||
}
|
||
.el-dialog__footer {
|
||
height: 60px;
|
||
|
||
text-align: right;
|
||
width: 100%;
|
||
padding: 0px;
|
||
padding-top: 15px;
|
||
.el-button + .el-button {
|
||
margin-right: 10px;
|
||
}
|
||
.el-button {
|
||
padding-top: 8px;
|
||
}
|
||
}
|
||
.form-params-wrap {
|
||
height: 100%;
|
||
width: calc(100% + 110px);
|
||
position: relative;
|
||
top: 15px;
|
||
left: -90px;
|
||
max-height: 250px;
|
||
overflow: auto;
|
||
padding: 10px;
|
||
border: 1px solid #009688;
|
||
border-radius: 5px;
|
||
}
|
||
}
|
||
.to-home-wrap2-circuit {
|
||
width: 100px;
|
||
height: 30px;
|
||
position: absolute;
|
||
right: 30px;
|
||
top: 220px;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
z-index: 100;
|
||
color: #656363;
|
||
font-size: 20px;
|
||
cursor: default;
|
||
.el-button--medium.is-circle {
|
||
width: 25px;
|
||
height: 20px;
|
||
padding: 0;
|
||
background: #f26a6a;
|
||
color: #fff;
|
||
font-size: 16px;
|
||
border-radius: 5px;
|
||
height: 30px;
|
||
width: 100%;
|
||
font-size: 14px;
|
||
}
|
||
}
|
||
.to-home-wrap2-circuit:hover {
|
||
color: #1890ff;
|
||
font-size: 30px;
|
||
}
|
||
}
|
||
.form-params-wrap::-webkit-scrollbar {
|
||
/*滚动条整体样式*/
|
||
width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
|
||
height: 5px;
|
||
}
|
||
.form-params-wrap::-webkit-scrollbar-thumb {
|
||
/*滚动条里面小方块*/
|
||
border-radius: 10px;
|
||
box-shadow: inset 0 0 5px #c4c4c4;
|
||
background: #dededea6;
|
||
}
|
||
.form-params-wrap::-webkit-scrollbar-track {
|
||
/*滚动条里面轨道*/
|
||
box-shadow: inset 0 0 5px #f6f6f6;
|
||
border-radius: 10px;
|
||
background: #ffffff;
|
||
}
|
||
</style>
|