537 lines
17 KiB
Vue
537 lines
17 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form
|
|
:model="queryParams"
|
|
ref="queryForm"
|
|
size="small"
|
|
:inline="true"
|
|
v-show="showSearch"
|
|
label-width="68px"
|
|
>
|
|
<el-form-item label="项目名称" prop="projectName">
|
|
<el-input
|
|
v-model="queryParams.projectName"
|
|
placeholder="请输入项目名称"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="单位名称" prop="deptName">
|
|
<el-input
|
|
v-model="queryParams.deptName"
|
|
placeholder="请输入单位名称"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="设备名称" prop="deviceName">
|
|
<el-input
|
|
v-model="queryParams.deviceName"
|
|
placeholder="请输入设备名称"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="设备序号" prop="deviceSn">
|
|
<el-input
|
|
v-model="queryParams.deviceSn"
|
|
placeholder="请输入设备序列号"
|
|
clearable
|
|
@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>
|
|
|
|
<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="['device:towerProjectConfig: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="['device:towerProjectConfig: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="['device:towerProjectConfig: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="['device:towerProjectConfig:export']"
|
|
>导出</el-button
|
|
>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table
|
|
v-loading="loading"
|
|
:data="towerProjectConfigList"
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column label="项目名称" align="center" prop="projectName" width="150" />
|
|
<el-table-column label="总包单位" align="center" prop="deptName" width="150" />
|
|
<el-table-column label="设备名称" align="center" prop="deviceName" width="150" />
|
|
<el-table-column label="设备序号" align="center" prop="deviceSn" width="150" />
|
|
<el-table-column label="塔机类型" align="center" prop="towerType">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.device_tower_type" :value="scope.row.towerType"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="设备厂商" align="center" prop="deviceSource" />
|
|
<el-table-column label="塔机坐标x" align="center" prop="coordinateX" />
|
|
<el-table-column label="塔机坐标y" align="center" prop="coordinateY" />
|
|
<el-table-column label="前臂长度" align="center" prop="frontBrachium" />
|
|
<el-table-column label="平衡臂长度" align="center" prop="afterBrachium" />
|
|
<el-table-column label="塔身高度" align="center" prop="towerBodyHeight" />
|
|
<el-table-column label="塔帽高度" align="center" prop="towerCapHeight" />
|
|
<el-table-column label="塔节高度" align="center" prop="towerSectionHeight" />
|
|
<el-table-column label="司机" align="center">
|
|
<template slot-scope="scope">
|
|
<div>{{scope.row.driName}}</div>
|
|
<div>{{scope.row.driPhone}}</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="安全员" align="center">
|
|
<template slot-scope="scope">
|
|
<div>{{scope.row.safName}}</div>
|
|
<div>{{scope.row.safPhone}}</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="塔机状态" align="center" prop="online">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.project_video_signal_state" :value="scope.row.online"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="启用状态" align="center" prop="isDel" width="80">
|
|
<template slot-scope="scope">
|
|
<el-switch
|
|
v-model="scope.row.isDel + ''"
|
|
active-value="0"
|
|
inactive-value="1"
|
|
@change="setStatus(scope.row, $event)"
|
|
></el-switch>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="更新时间" align="center" prop="updateTime" width="160">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.updateTime, "{y}-{m}-{d} {h}:{i}") }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
label="操作"
|
|
align="center"
|
|
class-name="small-padding fixed-width"
|
|
width="100"
|
|
fixed="right"
|
|
>
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-edit"
|
|
@click="handleUpdate(scope.row)"
|
|
v-hasPermi="['device:towerProjectConfig:edit']"
|
|
>修改</el-button
|
|
>
|
|
<!-- <el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(scope.row)"
|
|
v-hasPermi="['device:towerProjectConfig: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="680px" append-to-body>
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
|
<el-form-item label="所属项目" prop="projectId">
|
|
<el-select
|
|
v-model="form.projectId"
|
|
:disabled="form.id != null"
|
|
filterable
|
|
placeholder="请选择所属项目"
|
|
style="width: 100%"
|
|
@change="projectChange"
|
|
>
|
|
<el-option
|
|
v-for="item in projectOptions"
|
|
:key="item.id"
|
|
:label="item.projectName"
|
|
:value="item.id"
|
|
>
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="所属单位" prop="deptId">
|
|
<el-select
|
|
v-model="form.deptId"
|
|
:disabled="form.id != null"
|
|
placeholder="请选择所属单位"
|
|
style="width: 100%"
|
|
>
|
|
<el-option
|
|
v-for="item in deptOptions"
|
|
:key="item.deptId"
|
|
:label="item.deptName"
|
|
:value="item.deptId"
|
|
>
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="设备名称" prop="deviceName">
|
|
<el-input v-model="form.deviceName" placeholder="请输入设备名称" maxlength="32" show-word-limit/>
|
|
</el-form-item>
|
|
<el-form-item label="设备序列号" prop="deviceSn">
|
|
<el-input v-model="form.deviceSn" placeholder="请输入设备序列号" maxlength="32" show-word-limit/>
|
|
</el-form-item>
|
|
<el-form-item label="设备厂商" prop="deviceSource">
|
|
<el-input v-model="form.deviceSource" placeholder="请输入设备厂商" />
|
|
</el-form-item>
|
|
<el-form-item label="塔机司机" prop="driName">
|
|
<el-input v-model="form.driName" placeholder="请输入塔机司机" />
|
|
</el-form-item>
|
|
<el-form-item label="司机电话" prop="driPhone">
|
|
<el-input v-model="form.driPhone" placeholder="请输入司机电话" />
|
|
</el-form-item>
|
|
<el-form-item label="安全员" prop="safName">
|
|
<el-input v-model="form.safName" placeholder="请输入安全员" />
|
|
</el-form-item>
|
|
<el-form-item label="安全员电话" prop="safPhone">
|
|
<el-input v-model="form.safPhone" placeholder="请输入安全员电话" />
|
|
</el-form-item>
|
|
<el-alert
|
|
title="温馨提示:"
|
|
type="warning"
|
|
description="以下数据在设备运行过程中,不定时更新。无需填写,填写后会被定时覆盖!!!"
|
|
show-icon
|
|
>
|
|
</el-alert>
|
|
<el-form-item label="塔机类型" prop="towerType" style="margin-top: 16px;">
|
|
<el-select v-model="form.towerType" placeholder="请选择塔机类型" style="width:100%">
|
|
<el-option
|
|
v-for="dict in dict.type.device_tower_type"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="parseInt(dict.value)"
|
|
></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="塔机坐标x" prop="coordinateX">
|
|
<el-input v-model="form.coordinateX" placeholder="请输入塔机坐标x" />
|
|
</el-form-item>
|
|
<el-form-item label="塔机坐标y" prop="coordinateY">
|
|
<el-input v-model="form.coordinateY" placeholder="请输入塔机坐标y" />
|
|
</el-form-item>
|
|
<el-form-item label="前臂长度" prop="frontBrachium">
|
|
<el-input v-model="form.frontBrachium" placeholder="请输入前臂长度" />
|
|
</el-form-item>
|
|
<el-form-item label="平衡臂长度" prop="afterBrachium">
|
|
<el-input v-model="form.afterBrachium" placeholder="请输入平衡臂长度" />
|
|
</el-form-item>
|
|
<el-form-item label="塔身高度" prop="towerBodyHeight">
|
|
<el-input v-model="form.towerBodyHeight" placeholder="请输入塔身高度" />
|
|
</el-form-item>
|
|
<el-form-item label="塔帽高度" prop="towerCapHeight">
|
|
<el-input v-model="form.towerCapHeight" placeholder="请输入塔帽高度" />
|
|
</el-form-item>
|
|
<el-form-item label="塔节高度" prop="towerSectionHeight">
|
|
<el-input v-model="form.towerSectionHeight" 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 {
|
|
listTowerProjectConfig,
|
|
getTowerProjectConfig,
|
|
delTowerProjectConfig,
|
|
addTowerProjectConfig,
|
|
updateTowerProjectConfig,
|
|
} from "@/api/device/towerProjectConfig";
|
|
|
|
export default {
|
|
name: "TowerProjectConfig",
|
|
dicts: ["sys_common_isdel","device_tower_type","project_video_signal_state"],
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 塔基检测配置表格数据
|
|
towerProjectConfigList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
projectId: null,
|
|
projectName: null,
|
|
deptId: null,
|
|
deptName: null,
|
|
deviceSn: null,
|
|
deviceSource: null,
|
|
towerType: null,
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
projectId: [{ required: true, message: "请选择所属项目", trigger: "change" }],
|
|
deptId: [{ required: true, message: "请选择所属单位", trigger: "change" }],
|
|
deviceName: [
|
|
{ required: true, message: "设备名称不能为空", trigger: "blur" },
|
|
],
|
|
deviceSn: [
|
|
{ required: true, message: "设备序列表不能为空", trigger: "blur" },
|
|
{ max: 64, message: "最多输入64个字符" },
|
|
],
|
|
},
|
|
projectOptions: [],
|
|
deptOptions: [],
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
this.getProjectList();
|
|
},
|
|
methods: {
|
|
// 获取项目列表
|
|
getProjectList() {
|
|
let param = {
|
|
data: {},
|
|
};
|
|
//获取项目列表的接口
|
|
this.$api.publics.getProjectList(param).then((response) => {
|
|
this.projectOptions = response.rows;
|
|
});
|
|
},
|
|
projectChange(val) {
|
|
this.form.deptId = null;
|
|
// 根据项目查询总包单位
|
|
this.initDept(val);
|
|
},
|
|
initDept(val) {
|
|
this.$api.publics
|
|
.queryUnitList({
|
|
projectId: val,
|
|
unitType: 2,
|
|
})
|
|
.then((d) => {
|
|
this.deptOptions = d.rows;
|
|
if (d.rows.length > 0) {
|
|
// 有总包单位
|
|
} else {
|
|
this.$message.error("当前项目未分配总包单位!");
|
|
}
|
|
});
|
|
},
|
|
/** 查询塔基检测配置列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listTowerProjectConfig(this.queryParams).then((response) => {
|
|
this.towerProjectConfigList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
id: null,
|
|
projectId: null,
|
|
deptId: null,
|
|
deviceSn: null,
|
|
deviceSource: null,
|
|
towerType: null,
|
|
coordinateX: null,
|
|
coordinateY: null,
|
|
frontBrachium: null,
|
|
afterBrachium: null,
|
|
towerBodyHeight: null,
|
|
towerCapHeight: null,
|
|
towerSectionHeight: null,
|
|
driName: null,
|
|
driPhone: null,
|
|
safName: null,
|
|
safPhone: null,
|
|
isDel: 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.id);
|
|
this.single = selection.length !== 1;
|
|
this.multiple = !selection.length;
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加塔基检测配置";
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset();
|
|
const id = row.id || this.ids;
|
|
getTowerProjectConfig(id).then((response) => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改塔基检测配置";
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate((valid) => {
|
|
if (valid) {
|
|
if (this.form.id != null) {
|
|
updateTowerProjectConfig(this.form).then((response) => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
addTowerProjectConfig(this.form).then((response) => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const ids = row.id || this.ids;
|
|
this.$modal
|
|
.confirm('是否确认删除塔基检测配置编号为"' + ids + '"的数据项?')
|
|
.then(function () {
|
|
return delTowerProjectConfig(ids);
|
|
})
|
|
.then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
})
|
|
.catch(() => {});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download(
|
|
"device/towerProjectConfig/export",
|
|
{
|
|
...this.queryParams,
|
|
},
|
|
`towerProjectConfig_${new Date().getTime()}.xlsx`
|
|
);
|
|
},
|
|
//修改塔吊配置状态
|
|
setStatus(row, val) {
|
|
this.$confirm(`是否确认${val == 0 ? "启用" : "停用"}当前数据配置?`, "提示", {
|
|
confirmButtonText: "确定",
|
|
cancelButtonText: "取消",
|
|
type: "warning",
|
|
})
|
|
.then(async () => {
|
|
delTowerProjectConfig(row.id).then((response) => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.getList();
|
|
});
|
|
})
|
|
.catch(() => {
|
|
// 取消时恢复原始开关状态
|
|
if (val == "0") {
|
|
row.isDel = "1";
|
|
} else {
|
|
row.isDel = "0";
|
|
}
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|