Files
fastbee/vue/src/views/iot/device/device-timer.vue
2026-03-19 17:36:53 +08:00

781 lines
32 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div style="padding-left: 20px">
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="70px">
<el-form-item :label="$t('device.device-timer.433369-0')" prop="jobName">
<el-input v-model="queryParams.jobName" :placeholder="$t('device.device-timer.433369-1')" clearable size="small"
@keyup.enter.native="handleQuery" />
</el-form-item>
<el-form-item :label="$t('device.device-timer.433369-2')" prop="status" style="margin-left: 20px">
<el-select v-model="queryParams.status" :placeholder="$t('device.device-timer.433369-3')" clearable size="small">
<el-option v-for="dict in dict.type.sys_job_status" :key="dict.value" :label="dict.label" :value="dict.value" />
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">{{ $t('device.device-timer.433369-4') }}</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">{{ $t('device.device-timer.433369-5') }}</el-button>
</el-form-item>
<el-form-item style="float: right">
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
v-hasPermi="['iot:device:timer']">{{ $t('device.device-timer.433369-6') }}</el-button>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="jobList" @selection-change="handleSelectionChange" size="small">
<el-table-column type="selection" width="55" align="center" />
<el-table-column :label="$t('device.device-timer.433369-7')" align="center" prop="jobName" :show-overflow-tooltip="true" />
<el-table-column :label="$t('device.device-timer.433369-8')" align="center" prop="cronText">
<template slot-scope="scope">
<div v-html="formatCronDisplay(scope.row)"></div>
</template>
</el-table-column>
<el-table-column :label="$t('device.device-timer.433369-9')" align="center" prop="cronExpression" :show-overflow-tooltip="true" />
<el-table-column :label="$t('device.device-timer.433369-10')" align="left" prop="actions" :show-overflow-tooltip="true">
<template slot-scope="scope">
<div v-html="formatActionsDisplay(scope.row.actions)" style="overflow: hidden; white-space: nowrap"></div>
</template>
</el-table-column>
<el-table-column :label="$t('device.device-timer.433369-11')" align="center">
<template slot-scope="scope">
<el-switch v-model="scope.row.status" active-value="0" inactive-value="1" :active-text="$t('device.device-timer.433369-12')"
@change="handleStatusChange(scope.row)"></el-switch>
</template>
</el-table-column>
<el-table-column :label="$t('device.index.105953-34')" 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="['iot:device:timer']">{{ $t('device.device-timer.433369-33') }}</el-button>
<el-button size="mini" type="text" icon="el-icon-caret-right" @click="handleView(scope.row)"
v-hasPermi="['iot:device:timer']">{{ $t('device.device-timer.433369-15') }}</el-button>
<br />
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
v-hasPermi="['iot:device:timer']">{{ $t('device.device-timer.433369-16') }}</el-button>
<el-button size="mini" type="text" icon="el-icon-caret-right" @click="handleRun(scope.row)"
v-hasPermi="['iot:device:timer']">{{ $t('device.device-timer.433369-17') }}</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="800px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
<el-form-item :label="$t('device.device-timer.433369-0')" prop="jobName">
<el-input v-model="form.jobName" :placeholder="$t('device.device-timer.433369-1')" style="width: 340px" />
</el-form-item>
<el-form-item :label="$t('device.device-timer.433369-18')" required>
<el-time-picker v-model="timerTimeValue" value-format="HH:mm" format="HH:mm" :placeholder="$t('device.device-timer.433369-19')" :editable="false"
style="width: 340px" @change="timeChange" :disabled="form.isAdvance == 1"></el-time-picker>
</el-form-item>
<el-form-item :label="$t('device.device-timer.433369-20')" prop="timerWeek">
<el-row>
<el-col :span="18">
<el-select v-model="timerWeekValue" :placeholder="$t('device.device-timer.433369-21')" multiple style="width: 100%" @change="weekChange"
:disabled="form.isAdvance == 1">
<el-option v-for="item in timerWeeks" :key="item.value" :label="item.label"
:value="item.value"></el-option>
</el-select>
</el-col>
</el-row>
</el-form-item>
<el-form-item :label="$t('device.device-timer.433369-22')" prop="cron">
<el-row>
<el-col :span="18">
<el-input v-model="form.cronExpression" :placeholder="$t('device.device-timer.433369-23')" :disabled="form.isAdvance == 0">
<template slot="append">
<el-button type="primary" @click="handleShowCron" :disabled="form.isAdvance == 0">
{{ $t('device.device-timer.433369-24') }}
<i class="el-icon-time el-icon--right"></i>
</el-button>
</template>
</el-input>
</el-col>
<el-col :span="4" :offset="1">
<el-checkbox v-model="form.isAdvance" :true-label="1" :false-label="0"
@change="customerCronChange">{{ $t('device.device-timer.433369-25') }}</el-checkbox>
</el-col>
</el-row>
</el-form-item>
<el-form-item :label="$t('device.device-timer.433369-2')" prop="status">
<el-radio-group v-model="form.status">
<el-radio v-for="dict in dict.type.sys_job_status" :key="dict.value" :label="dict.value">{{ dict.label
}}</el-radio>
</el-radio-group>
</el-form-item>
<div style="padding-bottom: 15px; padding: 0 20px">
<el-divider></el-divider>
</div>
<el-form-item :label="$t('device.device-timer.433369-26')" required>
<el-row v-for="(actionItem, index) in actionList" :key="index + 'action'" style="margin-bottom: 10px">
<el-col :span="4">
<el-select v-model="actionItem.type" :placeholder="$t('device.device-timer.433369-27')" @change="actionTypeChange($event, index)">
<el-option v-for="(subItem, subIndex) in modelTypes" :key="subIndex + 'type'" :label="subItem.label"
:value="subItem.value"></el-option>
</el-select>
</el-col>
<el-col :span="4" :offset="1">
<el-select v-model="actionItem.id" :placeholder="$t('device.device-timer.433369-21')" v-if="actionItem.type == 1"
@change="thingsModelItemChange($event, index)">
<el-option v-for="(subItem, subIndex) in thingsModel.properties" :key="subIndex + 'property'"
:label="subItem.name" :value="subItem.id"></el-option>
</el-select>
<el-select v-model="actionItem.id" :placeholder="$t('device.device-timer.433369-21')" v-else-if="actionItem.type == 2"
@change="thingsModelItemChange($event, index)">
<el-option v-for="(subItem, subIndex) in thingsModel.functions" :key="subIndex + 'func'"
:label="subItem.name" :value="subItem.id"></el-option>
</el-select>
<el-select v-model="form.id" :placeholder="$t('device.device-timer.433369-21')" v-else-if="actionItem.type == 3"
@change="thingsModelItemChange($event, index)">
<el-option v-for="(subItem, subIndex) in thingsModel.functions" :key="subIndex + 'func'"
:label="subItem.name" :value="subItem.id"></el-option>
</el-select>
</el-col>
<el-col :span="10" :offset="1">
<!--物模型项的值-->
<span
v-if="actionItem.thingsModelItem && (actionItem.thingsModelItem.datatype.type == 'integer' || actionItem.thingsModelItem.datatype.type == 'decimal')">
<el-input v-model="actionItem.value" :placeholder="$t('device.device-timer.433369-29')" :max="actionItem.thingsModelItem.datatype.max"
:min="actionItem.thingsModelItem.datatype.min" type="number" size="small">
<template slot="append">{{ actionItem.thingsModelItem.datatype.unit }}</template>
</el-input>
</span>
<span v-else-if="actionItem.thingsModelItem && actionItem.thingsModelItem.datatype.type == 'bool'">
<el-switch v-model="actionItem.value" :active-text="actionItem.thingsModelItem.datatype.trueText"
:inactive-text="actionItem.thingsModelItem.datatype.falseText" active-value="1"
inactive-value="0"></el-switch>
</span>
<span v-else-if="actionItem.thingsModelItem && actionItem.thingsModelItem.datatype.type == 'enum'">
<el-select v-model="actionItem.value" :placeholder="$t('device.device-timer.433369-21')" style="width: 100%">
<el-option v-for="(subItem, subIndex) in actionItem.thingsModelItem.datatype.enumList"
:key="subIndex + 'things'" :label="subItem.text" :value="subItem.value"></el-option>
</el-select>
</span>
<span v-else-if="actionItem.thingsModelItem && actionItem.thingsModelItem.datatype.type == 'string'">
<el-input v-model="actionItem.value" :placeholder="$t('device.device-timer.433369-30')"
:max="actionItem.thingsModelItem.datatype.maxLength" />
</span>
<span v-else-if="actionItem.thingsModelItem && actionItem.thingsModelItem.datatype.type == 'array'">
<el-input v-model="actionItem.value" :placeholder="$t('device.device-timer.433369-97')" />
</span>
</el-col>
<el-col :span="2" :offset="1" v-if="index != 0"><a style="color: #f56c6c"
@click="removeEnumItem(index)">{{ $t('del') }}</a></el-col>
</el-row>
<div>
+
<a style="color: #409eff" @click="addEnumItem()">{{ $t('device.device-timer.433369-31') }}</a>
</div>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm" :loading="submitButtonLoading">{{ $t('confirm') }}</el-button>
<el-button @click="cancel">{{ $t('cancel') }}</el-button>
</div>
</el-dialog>
<el-dialog :title="$t('device.device-timer.433369-35')" :visible.sync="openCron" append-to-body destroy-on-close class="scrollbar">
<crontab @hide="openCron = false" @fill="crontabFill" :expression="expression" style="padding-bottom: 80px">
</crontab>
</el-dialog>
<!-- 定时日志详细 -->
<el-dialog :title="$t('device.device-timer.433369-15')" :visible.sync="openView" width="700px" append-to-body>
<el-form ref="form" :model="form" label-width="120px" size="mini">
<el-row>
<el-col :span="12">
<el-form-item :label="$t('device.device-timer.433369-36')">{{ form.jobId }}</el-form-item>
<el-form-item :label="$t('device.device-timer.433369-37')">{{ form.jobName }}</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item :label="$t('device.device-timer.433369-38')">{{ jobGroupFormat(form) }}</el-form-item>
<el-form-item :label="$t('device.device-timer.433369-39')">{{ form.createTime }}</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item :label="$t('device.device-timer.433369-40')">
<div v-if="form.concurrent == 0">{{ $t('device.device-timer.433369-41') }}</div>
<div v-else-if="form.concurrent == 1">{{ $t('device.device-timer.433369-42') }}</div>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item :label="$t('device.device-timer.433369-43')">{{ form.cronExpression }}</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item :label="$t('device.device-timer.433369-44')">
<div v-if="form.misfirePolicy == 0">{{ $t('device.device-timer.433369-45') }}</div>
<div v-else-if="form.misfirePolicy == 1">{{ $t('device.device-timer.433369-46') }}</div>
<div v-else-if="form.misfirePolicy == 2">{{ $t('device.device-timer.433369-17') }}</div>
<div v-else-if="form.misfirePolicy == 3">{{ $t('device.device-timer.433369-47') }}</div>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item :label="$t('device.device-timer.433369-48')">{{ parseTime(form.nextValidTime) }}</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item :label="$t('device.device-timer.433369-49')">
<div v-if="form.status == 0">{{ $t('device.device-timer.433369-50') }}</div>
<div v-else-if="form.status == 1">{{ $t('device.device-timer.433369-51') }}</div>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item :label="$t('device.device-timer.433369-52')">
<div v-html="formatActionsDisplay(form.actions)"
style="border: 1px solid #ddd; padding: 10px; border-radius: 5px; width: 465px"></div>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="openView = false">{{ $t('device.device-timer.433369-53') }}</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listJob, getJob, delJob, addJob, updateJob, runJob, changeJobStatus } from '@/api/iot/deviceJob';
import Crontab from '@/components/Crontab';
export default {
components: {
Crontab,
},
name: 'device-timer',
dicts: ['sys_job_group', 'sys_job_status'],
props: {
device: {
type: Object,
default: null,
},
},
watch: {
// 获取到父组件传递的device后
device: function (newVal, oldVal) {
this.deviceInfo = newVal;
if (this.deviceInfo && this.deviceInfo.deviceId != 0) {
this.thingsModel = this.deviceInfo.cacheThingsModel;
this.queryParams.deviceId = this.deviceInfo.deviceId;
}
},
},
data() {
return {
// 物模型JSON
thingsModel: {},
// 动作列表
actionList: [],
// 设备
deviceInfo: {},
// 遮罩层
loading: false,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 定时定时表格数据
jobList: [],
// 弹出层标题
title: '',
// 是否显示弹出层
open: false,
// 是否显示详细弹出层
openView: false,
// 是否显示Cron表达式弹出层
openCron: false,
// 传入的表达式
expression: '',
// 提交按钮加载
submitButtonLoading: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
deviceId: 0,
jobName: undefined,
jobGroup: undefined,
status: undefined,
},
// 周
timerWeeks: [
{
value: 1,
label: this.$t('device.device-timer.433369-54'),
},
{
value: 2,
label: this.$t('device.device-timer.433369-55'),
},
{
value: 3,
label: this.$t('device.device-timer.433369-56'),
},
{
value: 4,
label: this.$t('device.device-timer.433369-57'),
},
{
value: 5,
label: this.$t('device.device-timer.433369-58'),
},
{
value: 6,
label: this.$t('device.device-timer.433369-59'),
},
{
value: 7,
label: this.$t('device.device-timer.433369-60'),
},
],
timerWeekValue: [1, 2, 3, 4, 5, 6, 7],
// 时间
timerTimeValue: '',
// 物模型类别
modelTypes: [
{
value: 1,
label: this.$t('device.device-timer.433369-61'),
},
{
value: 2,
label: this.$t('device.device-timer.433369-62'),
},
],
// 表单参数
form: {},
// 表单校验
rules: {
jobName: [
{
required: true,
message: this.$t('device.device-timer.433369-63'),
trigger: 'blur',
},
],
},
};
},
created() {
this.getList();
},
methods: {
/** 查询定时定时列表 */
getList() {
this.loading = true;
listJob(this.queryParams).then((response) => {
this.jobList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 定时组名字典翻译
jobGroupFormat(row, column) {
return this.selectDictLabel(this.dict.type.sys_job_group, row.jobGroup);
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
jobId: undefined,
jobName: undefined,
cronExpression: undefined,
status: '0',
jobGroup: 'DEFAULT', // 定时分组
misfirePolicy: 2, // 1=立即执行2=执行一次3=放弃执行
concurrent: 1, // 是否并发1=禁止0=允许
isAdvance: 0, // 是否详细cron表达式
jobType: 1, // 任务类型 1=设备定时2=设备告警3=场景联动
productId: 0,
productName: '',
sceneId: 0, //场景ID
alertId: 0, // 告警ID
actions: '',
};
this.submitButtonLoading = false;
this.timerWeekValue = [1, 2, 3, 4, 5, 6, 7];
this.timerTimeValue = '';
this.actionList = [
{
id: '',
name: '',
value: '',
type: 2, // 1=属性2=功能3=事件5=设备上线6=设备下线
deviceId: this.deviceInfo.deviceId,
deviceName: this.deviceInfo.deviceName,
thingsModelItem: {
id: '',
name: '',
datatype: {
type: '',
},
},
},
];
// 物模型项,对应actions
this.resetForm('form');
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm('queryForm');
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.jobId);
this.single = selection.length != 1;
this.multiple = !selection.length;
},
// 定时状态修改
handleStatusChange(row) {
let text = row.status === '0' ? this.$t('device.device-timer.433369-12') : this.$t('device.device-timer.433369-64');
this.$modal
.confirm(this.$t('device.device-timer.433369-65', [text]))
.then(function () {
return changeJobStatus(row.jobId, row.status);
})
.then(() => {
this.$modal.msgSuccess(text + this.$t('device.device-timer.433369-67'));
})
.catch(function () {
row.status = row.status === '0' ? '1' : '0';
});
},
/* 立即执行一次 */
handleRun(row) {
this.$modal
.confirm(this.$t('device.device-timer.433369-68', [row.jobName]))
.then(function () {
return runJob(row.jobId, row.jobGroup);
})
.then(() => {
this.$modal.msgSuccess(this.$t('device.device-timer.433369-69'));
})
.catch(() => { });
},
/** 定时详细信息 */
handleView(row) {
getJob(row.jobId).then((response) => {
this.form = response.data;
this.openView = true;
});
},
/** cron表达式按钮操作 */
handleShowCron() {
this.expression = this.form.cronExpression;
this.openCron = true;
},
/** 确定后回传值 */
crontabFill(value) {
this.form.cronExpression = value;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = this.$t('device.device-timer.433369-70');
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const jobId = row.jobId || this.ids;
getJob(jobId).then((response) => {
this.form = response.data;
// actionList赋值
this.actionList = JSON.parse(this.form.actions);
for (let i = 0; i < this.actionList.length; i++) {
if (this.actionList[i].type == 1) {
for (let j = 0; j < this.thingsModel.properties.length; j++) {
if (this.actionList[i].id == this.thingsModel.properties[j].id) {
this.actionList[i].thingsModelItem = this.thingsModel.properties[j];
break;
}
}
} else if (this.actionList[i].type == 2) {
for (let j = 0; j < this.thingsModel.functions.length; j++) {
if (this.actionList[i].id == this.thingsModel.functions[j].id) {
this.actionList[i].thingsModelItem = this.thingsModel.functions[j];
break;
}
}
}
}
if (this.form.isAdvance == 0) {
let arrayValue = this.form.cronExpression.substring(12).split(',').map(Number);
this.timerWeekValue = arrayValue;
this.timerTimeValue = this.form.cronExpression.substring(5, 7) + ':' + this.form.cronExpression.substring(2, 4);
}
this.open = true;
this.title = this.$t('device.device-timer.433369-71');
});
},
/** 提交按钮 */
submitForm: function () {
this.$refs['form'].validate((valid) => {
if (valid) {
// 验证不能为空
if (this.form.isAdvance == 0) {
if (this.timerTimeValue == '' || this.timerTimeValue == null) {
this.$modal.alertError(this.$t('device.device-timer.433369-87'));
return;
}
if (this.timerWeekValue == null || this.timerWeekValue == '') {
this.$modal.alertError(this.$t('device.device-timer.433369-88'));
return;
}
} else if (this.form.isAdvance == 1) {
if (this.form.cronExpression == '') {
this.$modal.alertError(this.$t('device.device-timer.433369-89'));
return;
}
}
for (let i = 0; i < this.actionList.length; i++) {
if (this.actionList[i].id == '' || this.actionList[i].name == '' || this.actionList[i].value == '') {
this.$modal.alertError(this.$t('device.device-timer.433369-90'));
return;
}
}
// 动作
this.actionList[0].deviceId = this.deviceInfo.deviceId;
this.actionList[0].deviceName = this.deviceInfo.deviceName;
// 删除对象中的物模型属性
for (let i = 0; i < this.actionList.length; i++) {
this.$delete(this.actionList[i], 'thingsModelItem');
}
this.form.actions = JSON.stringify(this.actionList);
// 设备信息
this.form.deviceId = this.deviceInfo.deviceId;
this.form.deviceName = this.deviceInfo.deviceName;
this.form.serialNumber = this.deviceInfo.serialNumber;
this.form.productId = this.deviceInfo.productId;
this.form.productName = this.deviceInfo.productName;
// 按钮等待后端加载完
this.submitButtonLoading = true;
if (this.form.jobId != undefined) {
updateJob(this.form).then((response) => {
this.$modal.msgSuccess(this.$t('device.device-timer.433369-91'));
this.submitButtonLoading = false;
this.open = false;
this.getList();
});
} else {
addJob(this.form).then((response) => {
this.$modal.msgSuccess(this.$t('device.device-timer.433369-92'));
this.submitButtonLoading = false;
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const jobIds = row.jobId || this.ids;
this.$modal
.confirm(this.$t('device.device-timer.433369-73', [jobIds]))
.then(function () {
return delJob(jobIds);
})
.then(() => {
this.getList();
this.$modal.msgSuccess(this.$t('device.device-timer.433369-75'));
})
.catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download(
'iot/job/export',
{
...this.queryParams,
},
`job_${new Date().getTime()}.xlsx`
);
},
/** 添加枚举项 */
addEnumItem() {
this.actionList.push({
id: '',
name: '',
value: '',
type: 2, // 1=属性2=功能3=事件5=设备上线6=设备下线
deviceId: this.deviceInfo.deviceId,
deviceName: this.deviceInfo.deviceName,
thingsModelItem: {
id: '',
name: '',
datatype: {
type: '',
},
},
});
},
/** 删除枚举项 */
removeEnumItem(index) {
this.actionList.splice(index, 1);
},
/** 星期改变事件 **/
weekChange(data) {
this.gentCronExpression();
},
/** 时间改变事件 **/
timeChange(data) {
this.gentCronExpression();
},
/**自定义cron表达式选项改变事件 */
customerCronChange(data) {
if (data == 0) {
this.gentCronExpression();
}
},
/** 生成cron表达式**/
gentCronExpression() {
let hour = '00';
let minute = '00';
if (this.timerTimeValue != null && this.timerTimeValue != '') {
hour = this.timerTimeValue.substring(0, 2);
minute = this.timerTimeValue.substring(3);
}
let week = '*';
if (this.timerWeekValue.length > 0) {
week = this.timerWeekValue.sort();
}
this.form.cronExpression = '0 ' + minute + ' ' + hour + ' ? * ' + week;
},
/** 动作类型改变事件 **/
actionTypeChange(data, index) {
this.actionList[index].id = '';
this.actionList[index].value = '';
this.actionList[index].thingsModelItem = null;
},
/** 物模型项改变事件 **/
thingsModelItemChange(identifier, index) {
this.actionList[index].value = '';
if (this.actionList[index].type == 1) {
//属性
for (let i = 0; i < this.thingsModel.properties.length; i++) {
if (this.thingsModel.properties[i].id == identifier) {
this.actionList[index].name = this.thingsModel.properties[i].name;
this.actionList[index].thingsModelItem = this.thingsModel.properties[i];
break;
}
}
} else if (this.actionList[index].type == 2) {
//事件
for (let i = 0; i < this.thingsModel.functions.length; i++) {
if (this.thingsModel.functions[i].id == identifier) {
this.actionList[index].name = this.thingsModel.functions[i].name;
this.actionList[index].thingsModelItem = this.thingsModel.functions[i];
break;
}
}
}
},
/** 格式化显示动作 */
formatActionsDisplay(json) {
if (json == null || json == '') {
return;
}
let actions = JSON.parse(json);
let result = '';
for (let i = 0; i < actions.length; i++) {
let value = actions[i].value;
if (actions[i].type == 1) {
// 属性
for (let j = 0; j < this.thingsModel.properties.length; j++) {
if (actions[i].id == this.thingsModel.properties[j].id) {
if (this.thingsModel.properties[j].datatype.type == 'decimal' || this.thingsModel.properties[j].datatype.type == 'integer') {
value = actions[i].value + this.thingsModel.properties[j].datatype.unit;
} else if (this.thingsModel.properties[j].datatype.type == 'enum') {
for (let k = 0; k < this.thingsModel.properties[j].datatype.enumList.length; k++) {
if (actions[i].value == this.thingsModel.properties[j].datatype.enumList[k].value) {
value = this.thingsModel.properties[j].datatype.enumList[k].text;
break;
}
}
} else if (this.thingsModel.properties[j].datatype.type == 'bool') {
value = actions[i].value == '1' ? this.thingsModel.properties[j].datatype.trueText : this.thingsModel.properties[j].datatype.falseText;
}
break;
}
}
} else if (actions[i].type == 2) {
// 功能
for (let j = 0; j < this.thingsModel.functions.length; j++) {
if (actions[i].id == this.thingsModel.functions[j].id) {
if (this.thingsModel.functions[j].datatype.type == 'decimal' || this.thingsModel.functions[j].datatype.type == 'integer') {
value = actions[i].value + this.thingsModel.functions[j].datatype.unit;
} else if (this.thingsModel.functions[j].datatype.type == 'enum') {
for (let k = 0; k < this.thingsModel.functions[j].datatype.enumList.length; k++) {
if (actions[i].value == this.thingsModel.functions[j].datatype.enumList[k].value) {
value = this.thingsModel.functions[j].datatype.enumList[k].text;
break;
}
}
} else if (this.thingsModel.functions[j].datatype.type == 'bool') {
value = actions[i].value == '1' ? this.thingsModel.functions[j].datatype.trueText : this.thingsModel.functions[j].datatype.falseText;
}
break;
}
}
}
result = result + actions[i].name + ': <span style="color:#F56C6C">' + value + '</span><br />';
}
return result;
},
/** 格式化显示CRON描述 */
formatCronDisplay(item) {
let result = '';
if (item.isAdvance == 0) {
let time = '<br /><span style="color:#F56C6C">' + this.$t('device.device-timer.433369-76') + ' ' + item.cronExpression.substring(5, 7) + ':' + item.cronExpression.substring(2, 4) + '</span>';
let week = item.cronExpression.substring(12);
if (week == '1,2,3,4,5,6,7') {
result = this.$t('device.device-timer.433369-77') + ' ' + time;
} else {
let weekArray = week.split(',');
for (let i = 0; i < weekArray.length; i++) {
if (weekArray[i] == '1') {
result = result + this.$t('device.device-timer.433369-78');
} else if (weekArray[i] == '2') {
result = result + this.$t('device.device-timer.433369-79');
} else if (weekArray[i] == '3') {
result = result + this.$t('device.device-timer.433369-80');
} else if (weekArray[i] == '4') {
result = result + this.$t('device.device-timer.433369-81');
} else if (weekArray[i] == '5') {
result = result + this.$t('device.device-timer.433369-82');
} else if (weekArray[i] == '6') {
result = result + this.$t('device.device-timer.433369-83');
} else if (weekArray[i] == '7') {
result = result + this.$t('device.device-timer.433369-84');
}
}
result = result.substring(0, result.length - 1) + ' ' + time;
}
} else {
result = this.$t('device.device-timer.433369-85');
}
return result;
},
},
};
</script>