356 lines
10 KiB
Vue
356 lines
10 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form
|
|
v-show="showSearch"
|
|
ref="queryRef"
|
|
:inline="true"
|
|
:model="queryParams"
|
|
label-width="68px"
|
|
label-position="left"
|
|
>
|
|
<el-form-item v-if="!productSn" label="产品SN" prop="productSn">
|
|
<el-input
|
|
v-model="queryParams.productSn"
|
|
clearable
|
|
placeholder="请输入产品SN"
|
|
@keyup.enter="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item v-if="!deviceSn" label="设备SN" prop="deviceSn">
|
|
<el-input
|
|
v-model="queryParams.deviceSn"
|
|
clearable
|
|
placeholder="请输入设备SN"
|
|
@keyup.enter="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<!-- <el-form-item label="当前版本" prop="currentVersion">-->
|
|
<!-- <el-input-->
|
|
<!-- v-model="queryParams.currentVersion"-->
|
|
<!-- clearable-->
|
|
<!-- placeholder="请输入当前版本"-->
|
|
<!-- @keyup.enter="handleQuery"-->
|
|
<!-- />-->
|
|
<!-- </el-form-item>-->
|
|
<!-- <el-form-item label="目标版本" prop="targetVersion">-->
|
|
<!-- <el-input-->
|
|
<!-- v-model="queryParams.targetVersion"-->
|
|
<!-- clearable-->
|
|
<!-- placeholder="请输入目标版本"-->
|
|
<!-- @keyup.enter="handleQuery"-->
|
|
<!-- />-->
|
|
<!-- </el-form-item>-->
|
|
<el-form-item label="结果" prop="result">
|
|
<el-select
|
|
v-model="queryParams.result"
|
|
clearable
|
|
placeholder="请选择结果"
|
|
>
|
|
<el-option label="成功" value="1" />
|
|
<el-option label="失败" value="2" />
|
|
</el-select>
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
<el-button icon="Search" type="primary" @click="handleQuery"
|
|
>搜索</el-button
|
|
>
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<!-- <el-col :span="1.5">-->
|
|
<!-- <el-button-->
|
|
<!-- v-hasPermi="['firmware:log:add']"-->
|
|
<!-- icon="Plus"-->
|
|
<!-- plain-->
|
|
<!-- type="primary"-->
|
|
<!-- @click="handleAdd"-->
|
|
<!-- >新增-->
|
|
<!-- </el-button>-->
|
|
<!-- </el-col>-->
|
|
<!-- <el-col :span="1.5">-->
|
|
<!-- <el-button-->
|
|
<!-- v-hasPermi="['firmware:log:edit']"-->
|
|
<!-- :disabled="single"-->
|
|
<!-- icon="Edit"-->
|
|
<!-- plain-->
|
|
<!-- type="success"-->
|
|
<!-- @click="handleUpdate"-->
|
|
<!-- >修改-->
|
|
<!-- </el-button>-->
|
|
<!-- </el-col>-->
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
v-hasPermi="['firmware:log:remove']"
|
|
:disabled="multiple"
|
|
icon="Delete"
|
|
plain
|
|
type="danger"
|
|
@click="handleDelete"
|
|
>删除
|
|
</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
v-hasPermi="['firmware:log:export']"
|
|
icon="Download"
|
|
plain
|
|
type="warning"
|
|
@click="handleExport"
|
|
>导出
|
|
</el-button>
|
|
</el-col>
|
|
<right-toolbar
|
|
v-model:showSearch="showSearch"
|
|
@queryTable="getList"
|
|
></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table
|
|
v-loading="loading"
|
|
:data="logList"
|
|
class="custom-table-style"
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
<el-table-column align="center" type="selection" width="55" />
|
|
<!-- <el-table-column align="center" label="" prop="logId" />-->
|
|
<el-table-column align="center" label="产品SN" prop="productSn" />
|
|
<el-table-column align="center" label="产品名称" prop="productName" />
|
|
<el-table-column align="center" label="设备SN" prop="deviceSn" />
|
|
<el-table-column align="center" label="设备名称" prop="deviceName" />
|
|
<el-table-column align="center" label="当前版本" prop="currentVersion" />
|
|
<el-table-column align="center" label="目标版本" prop="targetVersion" />
|
|
|
|
<el-table-column align="center" label="结果" prop="result">
|
|
<template #default="{ row }">
|
|
<dict-tag :options="firmwareUpgradeStatus" :value="[row.result]" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" label="升级时间" prop="createTime" />
|
|
<el-table-column
|
|
align="center"
|
|
class-name="small-padding fixed-width"
|
|
label="操作"
|
|
>
|
|
<template #default="scope">
|
|
<!-- <el-button v-hasPermi="['firmware:log:edit']" icon="Edit" link type="primary"-->
|
|
<!-- @click="handleUpdate(scope.row)">修改-->
|
|
<!-- </el-button>-->
|
|
<el-button
|
|
v-hasPermi="['firmware:log:remove']"
|
|
icon="Delete"
|
|
link
|
|
type="primary"
|
|
@click="handleDelete(scope.row)"
|
|
>删除
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<pagination
|
|
v-show="total > 0"
|
|
v-model:limit="queryParams.pageSize"
|
|
v-model:page="queryParams.pageNum"
|
|
:total="total"
|
|
@pagination="getList"
|
|
/>
|
|
|
|
<!-- 添加或修改设备升级历史对话框 -->
|
|
<el-dialog v-model="open" :title="title" append-to-body width="500px">
|
|
<el-form ref="logRef" :model="form" :rules="rules" label-width="80px">
|
|
<el-form-item label="产品SN" prop="productSn">
|
|
<el-input v-model="form.productSn" placeholder="请输入产品SN" />
|
|
</el-form-item>
|
|
<el-form-item label="设备SN" prop="deviceSn">
|
|
<el-input v-model="form.deviceSn" placeholder="请输入设备SN" />
|
|
</el-form-item>
|
|
<el-form-item label="当前版本" prop="currentVersion">
|
|
<el-input
|
|
v-model="form.currentVersion"
|
|
placeholder="请输入当前版本"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="目标版本" prop="targetVersion">
|
|
<el-input v-model="form.targetVersion" placeholder="请输入目标版本" />
|
|
</el-form-item>
|
|
<el-form-item label="结果1成功2失败" prop="result">
|
|
<el-input v-model="form.result" placeholder="请输入结果1成功2失败" />
|
|
</el-form-item>
|
|
<el-form-item label="租户ID" prop="tenantId">
|
|
<el-input v-model="form.tenantId" placeholder="请输入租户ID" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<template #footer>
|
|
<div class="dialog-footer">
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
<el-button @click="cancel">取 消</el-button>
|
|
</div>
|
|
</template>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script name="Log" setup>
|
|
import { addLog, delLog, getLog, listLog, updateLog } from "@/api/firmware/log";
|
|
import DictTag from "@/components/DictTag/index.vue";
|
|
import { firmwareUpgradeStatus } from "@/constant/dict";
|
|
|
|
const props = defineProps({
|
|
productSn: {
|
|
type: String,
|
|
},
|
|
deviceSn: {
|
|
type: String,
|
|
},
|
|
});
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
const logList = ref([]);
|
|
const open = ref(false);
|
|
const loading = ref(true);
|
|
const showSearch = ref(true);
|
|
const ids = ref([]);
|
|
const single = ref(true);
|
|
const multiple = ref(true);
|
|
const total = ref(0);
|
|
const title = ref("");
|
|
|
|
const data = reactive({
|
|
form: {},
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
productSn: props.productSn,
|
|
deviceSn: props.deviceSn,
|
|
currentVersion: null,
|
|
targetVersion: null,
|
|
result: null,
|
|
tenantId: null,
|
|
},
|
|
rules: {},
|
|
});
|
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
|
|
|
/** 查询设备升级历史列表 */
|
|
function getList() {
|
|
loading.value = true;
|
|
listLog(queryParams.value).then((response) => {
|
|
logList.value = response.rows;
|
|
total.value = response.total;
|
|
loading.value = false;
|
|
});
|
|
}
|
|
|
|
// 取消按钮
|
|
function cancel() {
|
|
open.value = false;
|
|
reset();
|
|
}
|
|
|
|
// 表单重置
|
|
function reset() {
|
|
form.value = {
|
|
logId: null,
|
|
productSn: null,
|
|
deviceSn: null,
|
|
currentVersion: null,
|
|
targetVersion: null,
|
|
createTime: null,
|
|
result: null,
|
|
tenantId: null,
|
|
};
|
|
proxy.resetForm("logRef");
|
|
}
|
|
|
|
/** 搜索按钮操作 */
|
|
function handleQuery() {
|
|
queryParams.value.pageNum = 1;
|
|
getList();
|
|
}
|
|
|
|
/** 重置按钮操作 */
|
|
function resetQuery() {
|
|
proxy.resetForm("queryRef");
|
|
handleQuery();
|
|
}
|
|
|
|
// 多选框选中数据
|
|
function handleSelectionChange(selection) {
|
|
ids.value = selection.map((item) => item.logId);
|
|
single.value = selection.length != 1;
|
|
multiple.value = !selection.length;
|
|
}
|
|
|
|
/** 新增按钮操作 */
|
|
function handleAdd() {
|
|
reset();
|
|
open.value = true;
|
|
title.value = "添加设备升级历史";
|
|
}
|
|
|
|
/** 修改按钮操作 */
|
|
function handleUpdate(row) {
|
|
reset();
|
|
const _logId = row.logId || ids.value;
|
|
getLog(_logId).then((response) => {
|
|
form.value = response.data;
|
|
open.value = true;
|
|
title.value = "修改设备升级历史";
|
|
});
|
|
}
|
|
|
|
/** 提交按钮 */
|
|
function submitForm() {
|
|
proxy.$refs["logRef"].validate((valid) => {
|
|
if (valid) {
|
|
if (form.value.logId != null) {
|
|
updateLog(form.value).then((response) => {
|
|
proxy.$modal.msgSuccess("修改成功");
|
|
open.value = false;
|
|
getList();
|
|
});
|
|
} else {
|
|
addLog(form.value).then((response) => {
|
|
proxy.$modal.msgSuccess("新增成功");
|
|
open.value = false;
|
|
getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
function handleDelete(row) {
|
|
const _logIds = row.logId || ids.value;
|
|
proxy.$modal
|
|
.confirm('是否确认删除设备升级历史编号为"' + _logIds + '"的数据项?')
|
|
.then(function () {
|
|
return delLog(_logIds);
|
|
})
|
|
.then(() => {
|
|
getList();
|
|
proxy.$modal.msgSuccess("删除成功");
|
|
})
|
|
.catch(() => {});
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
function handleExport() {
|
|
proxy.download(
|
|
"firmware/log/export",
|
|
{
|
|
...queryParams.value,
|
|
},
|
|
`log_${new Date().getTime()}.xlsx`
|
|
);
|
|
}
|
|
|
|
getList();
|
|
</script>
|