mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-18 08:55:53 +08:00
前端功能完善
This commit is contained in:
File diff suppressed because it is too large
Load Diff
321
vue/src/views/system/group/index.vue
Normal file
321
vue/src/views/system/group/index.vue
Normal file
@@ -0,0 +1,321 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="用户" prop="userId">
|
||||
<el-input
|
||||
v-model="queryParams.userId"
|
||||
placeholder="请输入用户"
|
||||
clearable
|
||||
size="small"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="分组名称" prop="groupName">
|
||||
<el-input
|
||||
v-model="queryParams.groupName"
|
||||
placeholder="请输入分组名称"
|
||||
clearable
|
||||
size="small"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="创建时间">
|
||||
<el-date-picker
|
||||
v-model="daterangeCreateTime"
|
||||
size="small"
|
||||
style="width: 240px"
|
||||
value-format="yyyy-MM-dd"
|
||||
type="daterange"
|
||||
range-separator="-"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
></el-date-picker>
|
||||
</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:group: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:group: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:group: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:group:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="groupList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="设备分组" align="center" prop="groupId" />
|
||||
<el-table-column label="用户" align="center" prop="userId" />
|
||||
<el-table-column label="分组名称" align="center" prop="groupName" />
|
||||
<el-table-column label="排序" align="center" prop="groupOrder" />
|
||||
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<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="['system:group:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['system:group: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="userId">
|
||||
<el-input v-model="form.userId" placeholder="请输入用户" />
|
||||
</el-form-item>
|
||||
<el-form-item label="分组名称" prop="groupName">
|
||||
<el-input v-model="form.groupName" placeholder="请输入分组名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="排序" prop="groupOrder">
|
||||
<el-input v-model="form.groupOrder" placeholder="请输入排序" />
|
||||
</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 { listGroup, getGroup, delGroup, addGroup, updateGroup, exportGroup } from "@/api/system/group";
|
||||
|
||||
export default {
|
||||
name: "Group",
|
||||
components: {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 分组表格数据
|
||||
groupList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 创建时间时间范围
|
||||
daterangeCreateTime: [],
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
userId: null,
|
||||
groupName: null,
|
||||
createTime: null,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
userId: [
|
||||
{ required: true, message: "用户不能为空", trigger: "blur" }
|
||||
],
|
||||
groupName: [
|
||||
{ required: true, message: "分组名称不能为空", trigger: "blur" }
|
||||
],
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询分组列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
this.queryParams.params = {};
|
||||
if (null != this.daterangeCreateTime && '' != this.daterangeCreateTime) {
|
||||
this.queryParams.params["beginCreateTime"] = this.daterangeCreateTime[0];
|
||||
this.queryParams.params["endCreateTime"] = this.daterangeCreateTime[1];
|
||||
}
|
||||
listGroup(this.queryParams).then(response => {
|
||||
this.groupList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
groupId: null,
|
||||
userId: null,
|
||||
groupName: null,
|
||||
groupOrder: null,
|
||||
delFlag: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
remark: null
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.daterangeCreateTime = [];
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.groupId)
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加分组";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const groupId = row.groupId || this.ids
|
||||
getGroup(groupId).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改分组";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.groupId != null) {
|
||||
updateGroup(this.form).then(response => {
|
||||
this.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addGroup(this.form).then(response => {
|
||||
this.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const groupIds = row.groupId || this.ids;
|
||||
this.$confirm('是否确认删除分组编号为"' + groupIds + '"的数据项?', "警告", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning"
|
||||
}).then(function() {
|
||||
return delGroup(groupIds);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.msgSuccess("删除成功");
|
||||
})
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
const queryParams = this.queryParams;
|
||||
this.$confirm('是否确认导出所有分组数据项?', "警告", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning"
|
||||
}).then(function() {
|
||||
return exportGroup(queryParams);
|
||||
}).then(response => {
|
||||
this.download(response.msg);
|
||||
})
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
@@ -22,7 +22,7 @@
|
||||
<el-form-item label="报警" prop="isAlarm">
|
||||
<el-select v-model="queryParams.isAlarm" placeholder="请选择报警" clearable size="small">
|
||||
<el-option
|
||||
v-for="dict in isAlarmOptions"
|
||||
v-for="dict in isOpenCloseOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
@@ -32,7 +32,7 @@
|
||||
<el-form-item label="雷达感应" prop="isRadar">
|
||||
<el-select v-model="queryParams.isRadar" placeholder="请选择雷达感应" clearable size="small">
|
||||
<el-option
|
||||
v-for="dict in isRadarOptions"
|
||||
v-for="dict in isOpenCloseOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
@@ -42,7 +42,7 @@
|
||||
<el-form-item label="托管" prop="isHost">
|
||||
<el-select v-model="queryParams.isHost" placeholder="请选择托管" clearable size="small">
|
||||
<el-option
|
||||
v-for="dict in isHostOptions"
|
||||
v-for="dict in isYesNoOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
@@ -52,7 +52,7 @@
|
||||
<el-form-item label="射频遥控" prop="isRfControl">
|
||||
<el-select v-model="queryParams.isRfControl" placeholder="请选择射频遥控" clearable size="small">
|
||||
<el-option
|
||||
v-for="dict in isRfControlOptions"
|
||||
v-for="dict in isOpenCloseOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
@@ -95,7 +95,7 @@
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<!-- <el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="primary"
|
||||
@@ -139,18 +139,21 @@
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
</el-row> -->
|
||||
|
||||
<el-table v-loading="loading" :data="setList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<!-- <el-table-column type="selection" width="55" align="center" /> -->
|
||||
<el-table-column label="序号" align="center" prop="deviceSetId" />
|
||||
<el-table-column label="设备ID" align="center" prop="deviceId" />
|
||||
<el-table-column label="设备编号" align="center" prop="deviceNum" />
|
||||
<el-table-column label="报警" align="center" prop="isAlarm" />
|
||||
<el-table-column label="雷达感应" align="center" prop="isRadar" />
|
||||
<el-table-column label="托管" align="center" prop="isHost" />
|
||||
<!-- <el-table-column label="托管" align="center" prop="isHost" /> -->
|
||||
<el-table-column label="重启" align="center" prop="isReset" />
|
||||
<el-table-column label="打开AP" align="center" prop="isAp" />
|
||||
<!-- <el-table-column label="离线模式" align="center" prop="isWifiOffline" /> -->
|
||||
<!-- <el-table-column label="使用证书" align="center" prop="isOpenCertifi" /> -->
|
||||
<el-table-column label="智能配网" align="center" prop="isSmartConfig" />
|
||||
<el-table-column label="射频遥控" align="center" prop="isRfControl" />
|
||||
<el-table-column label="遥控配对" align="center" prop="isRfLearn" />
|
||||
<el-table-column label="遥控清码" align="center" prop="isRfClear" />
|
||||
@@ -161,7 +164,8 @@
|
||||
<el-table-column label="用户" align="center" prop="ownerId" />
|
||||
<el-table-column label="配网地址" align="center" prop="networkAddress" />
|
||||
<el-table-column label="配网IP" align="center" prop="networkIp" />
|
||||
<el-table-column label="备注" align="center" prop="remark" />
|
||||
<el-table-column label="雷达感应间隔" align="center" prop="radarInterval" />
|
||||
<!-- <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
|
||||
@@ -178,7 +182,7 @@
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['system:set:remove']"
|
||||
>删除</el-button>
|
||||
</template>
|
||||
</template> -->
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
@@ -202,7 +206,7 @@
|
||||
<el-form-item label="报警" prop="isAlarm">
|
||||
<el-select v-model="form.isAlarm" placeholder="是否启动报警">
|
||||
<el-option
|
||||
v-for="dict in isAlarmOptions"
|
||||
v-for="dict in isOpenCloseOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
@@ -212,7 +216,7 @@
|
||||
<el-form-item label="雷达感应" prop="isRadar">
|
||||
<el-select v-model="form.isRadar" placeholder="是否启动雷达感应">
|
||||
<el-option
|
||||
v-for="dict in isRadarOptions"
|
||||
v-for="dict in isOpenCloseOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
@@ -222,7 +226,7 @@
|
||||
<el-form-item label="托管" prop="isHost">
|
||||
<el-select v-model="form.isHost" placeholder="是否托管">
|
||||
<el-option
|
||||
v-for="dict in isHostOptions"
|
||||
v-for="dict in isYesNoOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
@@ -232,7 +236,7 @@
|
||||
<el-form-item label="重启" prop="isReset">
|
||||
<el-select v-model="form.isReset" placeholder="是否重启">
|
||||
<el-option
|
||||
v-for="dict in isResetOptions"
|
||||
v-for="dict in isYesNoOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
@@ -242,7 +246,37 @@
|
||||
<el-form-item label="打开AP" prop="isAp">
|
||||
<el-select v-model="form.isAp" placeholder="是否打开AP">
|
||||
<el-option
|
||||
v-for="dict in isApOptions"
|
||||
v-for="dict in isYesNoOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="离线模式" prop="isWifiOffline">
|
||||
<el-select v-model="form.isWifiOffline" placeholder="离线模式">
|
||||
<el-option
|
||||
v-for="dict in isYesNoOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="使用证书" prop="isOpenCertifi">
|
||||
<el-select v-model="form.isOpenCertifi" placeholder="是否使用证书">
|
||||
<el-option
|
||||
v-for="dict in isYesNoOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="智能配网" prop="isSmartConfig">
|
||||
<el-select v-model="form.isSmartConfig" placeholder="智能配网">
|
||||
<el-option
|
||||
v-for="dict in isYesNoOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
@@ -252,7 +286,7 @@
|
||||
<el-form-item label="射频遥控" prop="isRfControl">
|
||||
<el-select v-model="form.isRfControl" placeholder="是否启动射频遥控">
|
||||
<el-option
|
||||
v-for="dict in isRfControlOptions"
|
||||
v-for="dict in isOpenCloseOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
@@ -262,7 +296,7 @@
|
||||
<el-form-item label="遥控配对" prop="isRfLearn">
|
||||
<el-select v-model="form.isRfLearn" placeholder="是否遥控配对">
|
||||
<el-option
|
||||
v-for="dict in isRfLearnOptions"
|
||||
v-for="dict in isYesNoOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
@@ -272,7 +306,7 @@
|
||||
<el-form-item label="遥控清码" prop="isRfClear">
|
||||
<el-select v-model="form.isRfClear" placeholder="是否遥控清码">
|
||||
<el-option
|
||||
v-for="dict in isRfClearOptions"
|
||||
v-for="dict in isYesNoOptions"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
@@ -282,7 +316,7 @@
|
||||
<el-form-item label="按键一" prop="rfOneFunc">
|
||||
<el-select v-model="form.rfOneFunc" placeholder="请选择按键一">
|
||||
<el-option
|
||||
v-for="dict in rfOneFuncOptions"
|
||||
v-for="dict in rfFuncOptions"
|
||||
:key="dict.dictValue"
|
||||
:label="dict.dictLabel"
|
||||
:value="parseInt(dict.dictValue)"
|
||||
@@ -292,7 +326,7 @@
|
||||
<el-form-item label="按键二" prop="rfTwoFunc">
|
||||
<el-select v-model="form.rfTwoFunc" placeholder="请选择按键二">
|
||||
<el-option
|
||||
v-for="dict in rfTwoFuncOptions"
|
||||
v-for="dict in rfFuncOptions"
|
||||
:key="dict.dictValue"
|
||||
:label="dict.dictLabel"
|
||||
:value="parseInt(dict.dictValue)"
|
||||
@@ -302,7 +336,7 @@
|
||||
<el-form-item label="按键三" prop="rfThreeFunc">
|
||||
<el-select v-model="form.rfThreeFunc" placeholder="请选择按键三">
|
||||
<el-option
|
||||
v-for="dict in rfThreeFuncOptions"
|
||||
v-for="dict in rfFuncOptions"
|
||||
:key="dict.dictValue"
|
||||
:label="dict.dictLabel"
|
||||
:value="parseInt(dict.dictValue)"
|
||||
@@ -312,7 +346,7 @@
|
||||
<el-form-item label="按键四" prop="rfFourFunc">
|
||||
<el-select v-model="form.rfFourFunc" placeholder="请选择按键四">
|
||||
<el-option
|
||||
v-for="dict in rfFourFuncOptions"
|
||||
v-for="dict in rfFuncOptions"
|
||||
:key="dict.dictValue"
|
||||
:label="dict.dictLabel"
|
||||
:value="parseInt(dict.dictValue)"
|
||||
@@ -328,6 +362,9 @@
|
||||
<el-form-item label="配网IP" prop="networkIp">
|
||||
<el-input v-model="form.networkIp" placeholder="请输入配网IP" />
|
||||
</el-form-item>
|
||||
<el-form-item label="雷达感应间隔" prop="radarInterval">
|
||||
<el-input v-model="form.radarInterval" placeholder="请输入雷达感应间隔" />
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
||||
</el-form-item>
|
||||
@@ -367,64 +404,16 @@ export default {
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 报警字典
|
||||
isAlarmOptions: [{
|
||||
// 打开关闭字典
|
||||
isOpenCloseOptions: [{
|
||||
"label": "打开",
|
||||
"value": 1
|
||||
}, {
|
||||
"label": "关闭",
|
||||
"value": 0
|
||||
}],
|
||||
// 雷达感应字典
|
||||
isRadarOptions: [{
|
||||
"label": "打开",
|
||||
"value": 1
|
||||
}, {
|
||||
"label": "关闭",
|
||||
"value": 0
|
||||
}],
|
||||
// 托管字典
|
||||
isHostOptions: [{
|
||||
"label": "是",
|
||||
"value": 1
|
||||
}, {
|
||||
"label": "否",
|
||||
"value": 0
|
||||
}],
|
||||
// 重启字典
|
||||
isResetOptions: [{
|
||||
"label": "是",
|
||||
"value": 1
|
||||
}, {
|
||||
"label": "否",
|
||||
"value": 0
|
||||
}],
|
||||
// 打开AP字典
|
||||
isApOptions: [{
|
||||
"label": "是",
|
||||
"value": 1
|
||||
}, {
|
||||
"label": "否",
|
||||
"value": 0
|
||||
}],
|
||||
// 射频遥控字典
|
||||
isRfControlOptions: [{
|
||||
"label": "打开",
|
||||
"value": 1
|
||||
}, {
|
||||
"label": "关闭",
|
||||
"value": 0
|
||||
}],
|
||||
// 遥控配对字典
|
||||
isRfLearnOptions: [{
|
||||
"label": "是",
|
||||
"value": 1
|
||||
}, {
|
||||
"label": "否",
|
||||
"value": 0
|
||||
}],
|
||||
// 遥控清码字典
|
||||
isRfClearOptions: [{
|
||||
// 是否字典
|
||||
isYesNoOptions: [{
|
||||
"label": "是",
|
||||
"value": 1
|
||||
}, {
|
||||
@@ -432,13 +421,7 @@ export default {
|
||||
"value": 0
|
||||
}],
|
||||
// 按键一字典
|
||||
rfOneFuncOptions: [],
|
||||
// 按键二字典
|
||||
rfTwoFuncOptions: [],
|
||||
// 按键三字典
|
||||
rfThreeFuncOptions: [],
|
||||
// 按键四字典
|
||||
rfFourFuncOptions: [],
|
||||
rfFuncOptions: [],
|
||||
// 创建时间时间范围
|
||||
daterangeCreateTime: [],
|
||||
// 查询参数
|
||||
@@ -468,16 +451,7 @@ export default {
|
||||
created() {
|
||||
this.getList();
|
||||
this.getDicts("rf_function").then(response => {
|
||||
this.rfOneFuncOptions = response.data;
|
||||
});
|
||||
this.getDicts("rf_function").then(response => {
|
||||
this.rfTwoFuncOptions = response.data;
|
||||
});
|
||||
this.getDicts("rf_function").then(response => {
|
||||
this.rfThreeFuncOptions = response.data;
|
||||
});
|
||||
this.getDicts("rf_function").then(response => {
|
||||
this.rfFourFuncOptions = response.data;
|
||||
this.rfFuncOptions = response.data;
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
@@ -497,19 +471,19 @@ export default {
|
||||
},
|
||||
// 按键一字典翻译
|
||||
rfOneFuncFormat(row, column) {
|
||||
return this.selectDictLabel(this.rfOneFuncOptions, row.rfOneFunc);
|
||||
return this.selectDictLabel(this.rfFuncOptions, row.rfOneFunc);
|
||||
},
|
||||
// 按键二字典翻译
|
||||
rfTwoFuncFormat(row, column) {
|
||||
return this.selectDictLabel(this.rfTwoFuncOptions, row.rfTwoFunc);
|
||||
return this.selectDictLabel(this.rfFuncOptions, row.rfTwoFunc);
|
||||
},
|
||||
// 按键三字典翻译
|
||||
rfThreeFuncFormat(row, column) {
|
||||
return this.selectDictLabel(this.rfThreeFuncOptions, row.rfThreeFunc);
|
||||
return this.selectDictLabel(this.rfFuncOptions, row.rfThreeFunc);
|
||||
},
|
||||
// 按键四字典翻译
|
||||
rfFourFuncFormat(row, column) {
|
||||
return this.selectDictLabel(this.rfFourFuncOptions, row.rfFourFunc);
|
||||
return this.selectDictLabel(this.rfFuncOptions, row.rfFourFunc);
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
@@ -527,6 +501,9 @@ export default {
|
||||
isHost: null,
|
||||
isReset: null,
|
||||
isAp: null,
|
||||
isWifiOffline: null,
|
||||
isOpenCertifi: null,
|
||||
isSmartConfig: null,
|
||||
isRfControl: null,
|
||||
isRfLearn: null,
|
||||
isRfClear: null,
|
||||
@@ -537,6 +514,7 @@ export default {
|
||||
ownerId: null,
|
||||
networkAddress: null,
|
||||
networkIp: null,
|
||||
radarInterval: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
|
||||
@@ -78,7 +78,7 @@
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<!-- <el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="primary"
|
||||
@@ -122,28 +122,29 @@
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
</el-row> -->
|
||||
|
||||
<el-table v-loading="loading" :data="statusList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<!-- <el-table-column type="selection" width="55" align="center" /> -->
|
||||
<el-table-column label="序号" align="center" prop="deviceStatusId" />
|
||||
<el-table-column label="设备ID" align="center" prop="deviceId" />
|
||||
<el-table-column label="设备编号" align="center" prop="deviceNum" />
|
||||
<el-table-column label="继电器" align="center" prop="relayStatus" />
|
||||
<el-table-column label="灯状态" align="center" prop="lightStatus" />
|
||||
<el-table-column label="在线" align="center" prop="isOnline" />
|
||||
<el-table-column label="设备温度" align="center" prop="deviceTemperature" />
|
||||
<el-table-column label="设备湿度" align="center" prop="deviceHumidity" />
|
||||
<el-table-column label="信号" align="center" prop="rssi" />
|
||||
<el-table-column label="设备温度" align="center" prop="deviceTemperature" />
|
||||
<el-table-column label="空气温度" align="center" prop="airTemperature" />
|
||||
<el-table-column label="空气湿度" align="center" prop="airHumidity" />
|
||||
<el-table-column label="触发源" align="center" prop="triggerSource" :formatter="triggerSourceFormat" />
|
||||
<el-table-column label="彩灯亮度" align="center" prop="brightness" />
|
||||
<el-table-column label="渐变间隔" align="center" prop="lightInterval" />
|
||||
<el-table-column label="彩灯模式" align="center" prop="lightMode" :formatter="lightModeFormat" />
|
||||
<el-table-column label="渐变时间" align="center" prop="fadeTime" />
|
||||
<el-table-column label="红灯" align="center" prop="red" />
|
||||
<el-table-column label="绿灯" align="center" prop="green" />
|
||||
<el-table-column label="蓝灯" align="center" prop="blue" />
|
||||
<el-table-column label="备注" align="center" prop="remark" />
|
||||
<!-- <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
|
||||
@@ -160,7 +161,7 @@
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['system:status:remove']"
|
||||
>删除</el-button>
|
||||
</template>
|
||||
</template> -->
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
@@ -211,12 +212,12 @@
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="信号" prop="rssi">
|
||||
<el-input v-model="form.rssi" placeholder="请输入信号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="设备温度" prop="deviceTemperature">
|
||||
<el-input v-model="form.deviceTemperature" placeholder="请输入设备温度" />
|
||||
</el-form-item>
|
||||
<el-form-item label="设备湿度" prop="deviceHumidity">
|
||||
<el-input v-model="form.deviceHumidity" placeholder="请输入设备湿度" />
|
||||
</el-form-item>
|
||||
<el-form-item label="空气温度" prop="airTemperature">
|
||||
<el-input v-model="form.airTemperature" placeholder="请输入空气温度" />
|
||||
</el-form-item>
|
||||
@@ -239,6 +240,9 @@
|
||||
<el-form-item label="渐变间隔" prop="lightInterval">
|
||||
<el-input v-model="form.lightInterval" placeholder="请输入渐变间隔" />
|
||||
</el-form-item>
|
||||
<el-form-item label="渐变时间" prop="fadeTime">
|
||||
<el-input v-model="form.fadeTime" placeholder="请输入渐变时间" />
|
||||
</el-form-item>
|
||||
<el-form-item label="彩灯模式" prop="lightMode">
|
||||
<el-select v-model="form.lightMode" placeholder="请选择彩灯模式">
|
||||
<el-option
|
||||
@@ -397,12 +401,13 @@ export default {
|
||||
lightStatus: null,
|
||||
isOnline: null,
|
||||
deviceTemperature: null,
|
||||
deviceHumidity: null,
|
||||
rssi: null,
|
||||
airTemperature: null,
|
||||
airHumidity: null,
|
||||
triggerSource: null,
|
||||
brightness: null,
|
||||
lightInterval: null,
|
||||
fadeTime: null,
|
||||
lightMode: null,
|
||||
red: null,
|
||||
green: null,
|
||||
|
||||
Reference in New Issue
Block a user