人员定位GPS-设备管理,添加围栏名称字段
This commit is contained in:
parent
acc5639fb9
commit
48843549cf
@ -14,7 +14,8 @@ export const getWorkerListApi = data => get('/xmgl/workerInfo/selectWorkerInfoLi
|
|||||||
|
|
||||||
// 智能安全帽--查询绑定人员
|
// 智能安全帽--查询绑定人员
|
||||||
export const getWorkerInfoListApi = data => post('/xmgl/workerInfo/selectWorkerInfoList', data);
|
export const getWorkerInfoListApi = data => post('/xmgl/workerInfo/selectWorkerInfoList', data);
|
||||||
|
// 智能安全帽--查询围栏
|
||||||
|
export const getHatFenceListApi = data => get('/xmgl/safetyHatFence/list', data);
|
||||||
// 智能安全帽--设备中台--分页查询记录信息
|
// 智能安全帽--设备中台--分页查询记录信息
|
||||||
export const getSafeHatEquipmentCentralPageApi = data => get('/xmgl/safetyHatDev/page',data);
|
export const getSafeHatEquipmentCentralPageApi = data => get('/xmgl/safetyHatDev/page',data);
|
||||||
// 智能安全帽--设备中台--添加记录信息
|
// 智能安全帽--设备中台--添加记录信息
|
||||||
|
|||||||
@ -45,6 +45,9 @@
|
|||||||
<el-table class="tables" :data="tableData">
|
<el-table class="tables" :data="tableData">
|
||||||
<el-table-column prop="workerName" align="center" label="人员名称" width="280"></el-table-column>
|
<el-table-column prop="workerName" align="center" label="人员名称" width="280"></el-table-column>
|
||||||
<el-table-column prop="devSn" align="center" label="设备序号"></el-table-column>
|
<el-table-column prop="devSn" align="center" label="设备序号"></el-table-column>
|
||||||
|
<el-table-column prop="fenceName" label="围栏名称" align="center">
|
||||||
|
<template slot-scope="scope">{{ scope.row.fenceName || '-' }}</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column prop="enterpriseName" label="分包单位" align="center">
|
<el-table-column prop="enterpriseName" label="分包单位" align="center">
|
||||||
<template slot-scope="scope">{{ scope.row.enterpriseName || '-' }}</template>
|
<template slot-scope="scope">{{ scope.row.enterpriseName || '-' }}</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@ -83,6 +86,16 @@
|
|||||||
<el-form-item label="设备序号" prop="devSn">
|
<el-form-item label="设备序号" prop="devSn">
|
||||||
<el-input v-model="addEditForm.devSn" placeholder="请输入"></el-input>
|
<el-input v-model="addEditForm.devSn" placeholder="请输入"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item
|
||||||
|
label="围栏名称"
|
||||||
|
prop="fenceId"
|
||||||
|
>
|
||||||
|
<el-select v-model="addEditForm.fenceId" filterable placeholder="请选择围栏">
|
||||||
|
<el-option :label="item.fenceName" :value="item.id"
|
||||||
|
v-for="(item, index) in hatFenceList" :key="index">
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label="分包单位"
|
label="分包单位"
|
||||||
prop="enterpriseIds"
|
prop="enterpriseIds"
|
||||||
@ -115,6 +128,7 @@ import {
|
|||||||
editSafeHatEquipmentCentralPageApi,
|
editSafeHatEquipmentCentralPageApi,
|
||||||
deleteSafeHatEquipmentCentralPageApi,
|
deleteSafeHatEquipmentCentralPageApi,
|
||||||
getWorkerInfoListApi,
|
getWorkerInfoListApi,
|
||||||
|
getHatFenceListApi,
|
||||||
} from '@/assets/js/api/smartSafeHat/smartSafeHat.js'
|
} from '@/assets/js/api/smartSafeHat/smartSafeHat.js'
|
||||||
import { getEnterpriseInfoListApi } from "@/assets/js/api/specialWork";
|
import { getEnterpriseInfoListApi } from "@/assets/js/api/specialWork";
|
||||||
export default {
|
export default {
|
||||||
@ -123,6 +137,7 @@ export default {
|
|||||||
this.getEnterpriseList();
|
this.getEnterpriseList();
|
||||||
this.getPage()
|
this.getPage()
|
||||||
this.getWorkerInfoList()
|
this.getWorkerInfoList()
|
||||||
|
this.getHatFenceList()
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
headers() {
|
headers() {
|
||||||
@ -153,6 +168,7 @@ export default {
|
|||||||
},
|
},
|
||||||
searchForm: {},
|
searchForm: {},
|
||||||
fileList: [],
|
fileList: [],
|
||||||
|
hatFenceList: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -236,7 +252,16 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
// 获取围栏列表
|
||||||
|
async getHatFenceList() {
|
||||||
|
await getHatFenceListApi({
|
||||||
|
projectSn: this.$store.state.projectSn,
|
||||||
|
}).then((result) => {
|
||||||
|
if (result.success) {
|
||||||
|
this.hatFenceList = result.result
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
add() {
|
add() {
|
||||||
this.title = '新增'
|
this.title = '新增'
|
||||||
this.dialogShow = true
|
this.dialogShow = true
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user