Files
FastBee/vue/src/views/iot/firmware/index.vue
2022-06-05 00:18:42 +08:00

339 lines
13 KiB
Vue

<template>
<div style="padding:6px;">
<el-card v-show="showSearch" style="margin-bottom:6px;">
<el-form :model="queryParams" ref="queryForm" :inline="true" label-width="68px" style="margin-bottom:-20px;">
<el-form-item label="固件名称" prop="firmwareName">
<el-input v-model="queryParams.firmwareName" placeholder="请输入固件名称" clearable size="small" @keyup.enter.native="handleQuery" />
</el-form-item>
<el-form-item label="产品名称" prop="productName">
<el-input v-model="queryParams.productName" placeholder="请输入产品名称" clearable size="small" @keyup.enter.native="handleQuery" />
</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-item style="float:right;">
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd" v-hasPermi="['iot:firmware:add']">新增</el-button>
</el-form-item>
</el-form>
</el-card>
<el-card style="padding-bottom:100px;">
<el-table v-loading="loading" :data="firmwareList" @selection-change="handleSelectionChange">
<el-table-column label="固件名称" align="center" prop="firmwareName" />
<el-table-column label="产品名称" align="center" prop="productName" />
<el-table-column label="固件版本" align="center" prop="version">
<template slot-scope="scope">
<span>Version </span> {{scope.row.version}}
</template>
</el-table-column>
<el-table-column label="路径" align="left" prop="filePath" />
<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" width="200">
<template slot-scope="scope">
<el-button size="small" type="info" style="padding:5px;" icon="el-icon-download" @click="handleDownload(scope.row)">下载</el-button>
<el-button size="small" type="primary" style="padding:5px;" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['iot:firmware:edit']">修改</el-button>
<el-button size="small" type="danger" style="padding:5px;" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['iot:firmware: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="firmwareName">
<el-input v-model="form.firmwareName" placeholder="请输入固件名称" />
</el-form-item>
<el-form-item label="所属产品" prop="productId">
<el-select v-model="form.productId" placeholder="请选择产品" @change="selectProduct">
<el-option v-for="product in productShortList" :key="product.id" :label="product.name" :value="product.id"></el-option>
</el-select>
</el-form-item>
<el-form-item label="固件版本" prop="version">
<el-input v-model="form.version" placeholder="请输入固件版本" type="number" />
</el-form-item>
<el-form-item label="固件上传" prop="filePath">
<fileUpload ref="file-upload" :value="form.filePath" :limit="1" :fileSize="10" :fileType='["bin", "zip", "pdf"]' @input="getFilePath($event)"></fileUpload>
</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>
</el-card>
</div>
</template>
<script>
import {
download
} from '@/api/iot/tool'
import fileUpload from '../../../components/FileUpload/index'
import {
listShortProduct
} from "@/api/iot/product"
import {
listFirmware,
getFirmware,
delFirmware,
addFirmware,
updateFirmware
} from "@/api/iot/firmware";
import {
getToken
} from "@/utils/auth";
export default {
name: "Firmware",
dicts: ["iot_yes_no"],
components: {
fileUpload
},
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 产品固件表格数据
firmwareList: [],
// 产品简短列表
productShortList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
firmwareName: null,
productName: null,
tenantName: null,
isSys: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
firmwareName: [{
required: true,
message: "固件名称不能为空",
trigger: "blur"
}],
productId: [{
required: true,
message: "产品ID不能为空",
trigger: "blur"
}],
productName: [{
required: true,
message: "产品名称不能为空",
trigger: "blur"
}],
version: [{
required: true,
message: "固件版本不能为空",
trigger: "blur"
}],
filePath: [{
required: true,
message: "文件路径不能为空",
trigger: "blur"
}],
},
// 上传参数
upload: {
// 是否禁用上传
isUploading: false,
// 设置上传的请求头部
headers: {
Authorization: "Bearer " + getToken()
},
// 上传的地址
url: process.env.VUE_APP_BASE_API + "/iot/tool/upload",
// 上传的文件列表
fileList: []
},
};
},
created() {
this.getList();
this.getProductShortList();
},
methods: {
/** 查询产品固件列表 */
getList() {
this.loading = true;
listFirmware(this.queryParams).then(response => {
this.firmwareList = response.rows;
this.total = response.total;
this.loading = false;
});
},
/** 查询产品简短列表 */
getProductShortList() {
listShortProduct().then(response => {
this.productShortList = response.data;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
firmwareId: null,
firmwareName: null,
productId: null,
productName: null,
tenantId: null,
tenantName: null,
isSys: null,
version: null,
filePath: 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.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.firmwareId)
this.single = selection.length !== 1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加产品固件";
this.upload.fileList = [];
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const firmwareId = row.firmwareId || this.ids
getFirmware(firmwareId).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改产品固件";
this.upload.fileList = [{
name: this.form.firmwareName,
url: this.form.filePath
}];
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.firmwareId != null) {
updateFirmware(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addFirmware(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const firmwareIds = row.firmwareId || this.ids;
this.$modal.confirm('是否确认删除产品固件编号为"' + firmwareIds + '"的数据项?').then(function () {
return delFirmware(firmwareIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('iot/firmware/export', {
...this.queryParams
}, `firmware_${new Date().getTime()}.xlsx`)
},
/** 选择产品 */
selectProduct(val) {
for (var i = 0; i < this.productShortList.length; i++) {
if (this.productShortList[i].id == val) {
this.form.productName = this.productShortList[i].name;
return;
}
}
},
// 获取文件路径
getFilePath(data) {
console.log(data);
this.form.filePath = data;
},
// 文件提交处理
submitUpload() {
this.$refs.upload.submit();
},
// 文件上传中处理
handleFileUploadProgress(event, file, fileList) {
this.upload.isUploading = true;
},
// 文件上传成功处理
handleFileSuccess(response, file, fileList) {
this.upload.isUploading = false;
this.form.filePath = response.url;
this.$modal.msgSuccess(response.msg);
},
// 文件下载处理
handleDownload(row) {
download(row.filePath);
}
},
};
</script>