You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
509 lines
13 KiB
509 lines
13 KiB
<template> |
|
<basic-container> |
|
<avue-crud :option="option" :table-loading="loading" :data="data" v-model="form" v-model:page="page" ref="crud" |
|
@row-del="rowDel" @search-change="searchChange" @search-reset="searchReset" @selection-change="selectionChange" |
|
@current-change="currentChange" @size-change="sizeChange" @refresh-change="refreshChange" @on-load="onLoad"> |
|
<template #menu-left> |
|
|
|
</template> |
|
|
|
<template #menu-right="{ size }"> |
|
|
|
</template> |
|
<template #menu="scope"> |
|
<el-button type="primary" link @click="editIP(scope.row.ecId)">修改IP</el-button> |
|
</template> |
|
<template #virtualMac="scope"> |
|
<span> |
|
{{ scope.row.virtualMac ? '是' : '否' }} |
|
</span> |
|
</template> |
|
<template #virtualMac-form="{ type, disabled }"> |
|
<el-checkbox v-model="form.virtualMac">虚拟设备</el-checkbox> |
|
</template> |
|
<template #virtualMac-label="{ type, disabled }"> |
|
<span></span> |
|
</template> |
|
<template #name="{ row }"> |
|
<i :class="row.source" style="margin-right: 5px" /> |
|
<span>{{ row.name }}</span> |
|
</template> |
|
<template #source="{ row }"> |
|
<div style="text-align: center"> |
|
<i :class="row.source" /> |
|
</div> |
|
</template> |
|
</avue-crud> |
|
<!-- 修改ip --> |
|
<formIp :show-ip="showIp" v-if="showIp" :ec-id="ecId" @cancel="cancel"></formIp> |
|
</basic-container> |
|
</template> |
|
<script> |
|
import { getLazyList, remove, update, add, getMenu } from '@/api/system/menu'; |
|
|
|
import { mapGetters } from 'vuex'; |
|
import { getQueryAllCaList, getQueryAllCaDeatils, getQueryAllCaSave, getQueryAllCaDel } from '@/api/processManagement/processCapability'; |
|
import { getDictionary } from '@/api/system/dict'; |
|
import formIp from "./formIp.vue" |
|
export default { |
|
components: { |
|
formIp |
|
}, |
|
data() { |
|
return { |
|
showIp: false, |
|
ecId: null, |
|
bcId: null, |
|
setCrewOpen: false, |
|
form: {}, |
|
query: {}, |
|
loading: true, |
|
selectionList: [], |
|
parentId: '', |
|
page: { |
|
pageSize: 10, |
|
currentPage: 1, |
|
total: 0, |
|
}, |
|
option: { |
|
columnSort: true, |
|
tip: false, |
|
height: 'auto', |
|
calcHeight: 32, |
|
simplePage: false, |
|
searchShow: true, |
|
searchMenuSpan: 6, |
|
dialogWidth: '60%', |
|
border: true, |
|
selection: true, |
|
viewBtn: true, |
|
menuWidth: 240, |
|
dialogClickModal: false, |
|
excelBtn: true, |
|
viewBtn: false, |
|
editBtnText: '编辑', |
|
refreshBtn: false, |
|
searchShowBtn: false, |
|
gridBtn: false, |
|
searchIndex: 3, |
|
searchIcon: true, |
|
searchLabelPosition:'left', |
|
searchLabelPosition:'left', |
|
searchGutter:24, |
|
searchSpan:6, |
|
menuAlign: 'left', |
|
gridBtn:false, |
|
searchMenuPosition:'right', |
|
addBtnIcon: ' ', |
|
viewBtnIcon: ' ', |
|
delBtnIcon: ' ', |
|
editBtnIcon: ' ', |
|
|
|
column: [ |
|
{ |
|
label: '设备编码', |
|
prop: 'deviceCode', |
|
search: true, |
|
sortable: true, |
|
overHidden: true, |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请输入名称分类', |
|
trigger: 'blur', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '设备名称', |
|
prop: 'deviceName', |
|
sortable: true, |
|
search: true, |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请选择镀种分类', |
|
trigger: 'click', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '设备分类', |
|
prop: 'categorys', |
|
sortable: true, |
|
search: true, |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请选择镀种分类', |
|
trigger: 'click', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '类别名称', |
|
prop: 'typeName', |
|
sortable: true, |
|
search: true, |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请选择镀种分类', |
|
trigger: 'click', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '服役状态', |
|
prop: 'usedText', |
|
sortable: true, |
|
search: true, |
|
type: 'select', |
|
dicData: [ |
|
{ |
|
label: '正常服役', |
|
value: 1 |
|
}, |
|
{ |
|
label: '停止服役', |
|
value: 2 |
|
} |
|
], |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请选择服役状态', |
|
trigger: 'click', |
|
}, |
|
], |
|
|
|
}, |
|
{ |
|
label: 'RFID', |
|
prop: 'rfId', |
|
sortable: true, |
|
search: false, |
|
hide: true, |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请输入RFID', |
|
trigger: 'click', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '规格型号', |
|
prop: 'macSpec', |
|
sortable: true, |
|
search: false, |
|
|
|
}, |
|
{ |
|
label: '设备IP', |
|
prop: 'deviceIp', |
|
sortable: true, |
|
search: false, |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请选择镀种分类', |
|
trigger: 'click', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '虚拟设备', |
|
prop: 'virtualMac', |
|
display: true, |
|
span: 24, |
|
search: true, |
|
type: 'select', |
|
dicData: [ |
|
{ |
|
label: '是', |
|
value: 1 |
|
}, |
|
{ |
|
label: '否', |
|
value: 2 |
|
} |
|
], |
|
}, |
|
{ |
|
label: '类别说明', |
|
prop: 'memo', |
|
sortable: true, |
|
search: false, |
|
span: 24, |
|
type: 'textarea', |
|
maxlength: 100, |
|
showWordLimit: true, |
|
minRows: 3, |
|
}, |
|
{ |
|
label: '设备仿真图', |
|
prop: 'imgUrl', |
|
listType: 'picture-card', |
|
type: 'upload', |
|
span: 24, |
|
limit: 1, |
|
fileSize: 10000, |
|
action:'', |
|
hide:true, |
|
tip: '只能上传 image/gif,image/jpeg,image/jpg,image/png 附件,且不超过 10M', |
|
}, |
|
], |
|
}, |
|
data: [], |
|
|
|
|
|
} |
|
}, |
|
computed: { |
|
...mapGetters(['userInfo', 'permission']), |
|
permissionList() { |
|
return { |
|
addBtn: this.validData(this.permission.menu_add, false), |
|
viewBtn: this.validData(this.permission.menu_view, false), |
|
delBtn: this.validData(this.permission.menu_delete, false), |
|
editBtn: this.validData(this.permission.menu_edit, false), |
|
}; |
|
}, |
|
ids() { |
|
let ids = []; |
|
this.selectionList.forEach(ele => { |
|
ids.push(ele.id); |
|
}); |
|
return ids.join(','); |
|
}, |
|
}, |
|
methods: { |
|
editIP(ecId) { |
|
this.ecId = ecId; |
|
this.showIp = true; |
|
}, |
|
cancel(isRefresh) { |
|
this.showIp = false; |
|
this.isOpen = false; |
|
if (isRefresh) { |
|
this.refresh(); |
|
} |
|
}, |
|
// 设置班组人员 |
|
setCrew(bcId) { |
|
console.log(9999, bcId) |
|
this.bcId = bcId; |
|
this.setCrewOpen = true; |
|
}, |
|
// 设置班组人员弹框关闭 |
|
setCrewOpeSancel(isRefresh) { |
|
if (isRefresh) { |
|
this.$refs.myTable.load(); |
|
} |
|
this.setCrewOpen = false; |
|
}, |
|
initData() { |
|
// getMenuTree().then(res => { |
|
// const column = this.findObject(this.option.column, 'parentId'); |
|
// column.dicData = res.data.data; |
|
// }); |
|
}, |
|
handleAdd(row) { |
|
this.parentId = row.id; |
|
const column = this.findObject(this.option.column, 'parentId'); |
|
column.value = row.id; |
|
column.addDisabled = true; |
|
this.$refs.crud.rowAdd(); |
|
}, |
|
// 保存 |
|
rowSave(row, done, loading) { |
|
// add(row).then( |
|
// res => { |
|
// // 获取新增数据的相关字段 |
|
// const data = res.data.data; |
|
// row.id = data.id; |
|
// this.$message({ |
|
// type: 'success', |
|
// message: '操作成功!', |
|
// }); |
|
// // 数据回调进行刷新 |
|
// done(row); |
|
// }, |
|
// error => { |
|
// window.console.log(error); |
|
// loading(); |
|
// } |
|
// ); |
|
}, |
|
// 修改 |
|
rowUpdate(row, index, done, loading) { |
|
// update(row).then( |
|
// () => { |
|
// this.$message({ |
|
// type: 'success', |
|
// message: '操作成功!', |
|
// }); |
|
// // 数据回调进行刷新 |
|
// done(row); |
|
// }, |
|
// error => { |
|
// window.console.log(error); |
|
// loading(); |
|
// } |
|
// ); |
|
}, |
|
rowDel(row, index, done) { |
|
this.$confirm('确定将选择数据删除?', { |
|
confirmButtonText: '确定', |
|
cancelButtonText: '取消', |
|
type: 'warning', |
|
}) |
|
.then(() => { |
|
return remove(row.id); |
|
}) |
|
.then(() => { |
|
this.$message({ |
|
type: 'success', |
|
message: '操作成功!', |
|
}); |
|
// 数据回调进行刷新 |
|
done(row); |
|
}); |
|
}, |
|
// 重置 |
|
searchReset() { |
|
this.query = {}; |
|
this.parentId = 0; |
|
this.onLoad(this.page); |
|
}, |
|
// 搜索 |
|
searchChange(params, done) { |
|
this.query = params; |
|
this.parentId = ''; |
|
this.page.currentPage = 1; |
|
this.onLoad(this.page, params); |
|
done(); |
|
}, |
|
// 选中表格数据 |
|
selectionChange(list) { |
|
this.selectionList = list; |
|
}, |
|
// |
|
selectionClear() { |
|
this.selectionList = []; |
|
this.$refs.crud.toggleSelection(); |
|
}, |
|
// 打开弹框 前操作 打开表单前会执行beforeOpen方法 |
|
beforeOpen(done, type) { |
|
if (['add', 'edit'].includes(type)) { |
|
this.initData(); |
|
} |
|
if (['edit', 'view'].includes(type)) { |
|
getMenu(this.form.id).then(res => { |
|
this.form = Object.assign(res.data.data, { |
|
hasChildren: this.form.hasChildren, |
|
}); |
|
if (this.form.parentId === '0') { |
|
this.form.parentId = ''; |
|
} |
|
}); |
|
} |
|
done(); |
|
}, |
|
// 关闭 弹框 关闭表单前会执行beforeClose方法, |
|
beforeClose(done) { |
|
this.parentId = ''; |
|
const column = this.findObject(this.option.column, 'parentId'); |
|
column.value = ''; |
|
column.addDisabled = false; |
|
done(); |
|
}, |
|
// 切换 页码 |
|
currentChange(currentPage) { |
|
this.page.currentPage = currentPage; |
|
}, |
|
// 切换页面 数量 |
|
sizeChange(pageSize) { |
|
this.page.pageSize = pageSize; |
|
}, |
|
|
|
refreshChange() { |
|
this.onLoad(this.page, this.query); |
|
}, |
|
// 加载页面数据 |
|
onLoad(page, params = {}) { |
|
this.loading = true; |
|
|
|
getLazyList(this.parentId, Object.assign(params, this.query)).then(res => { |
|
// this.data = res.data.data; |
|
this.data = [ |
|
{ |
|
"bindQty": 4, |
|
"categorys": "产线设备", |
|
"deviceCode": "9652247", |
|
"deviceIp": "192.168.43.179", |
|
"deviceName": "化学镀镍", |
|
"docking": true, |
|
"ecId": 1, |
|
"keyValue": 1, |
|
"macCode": "9652247", |
|
"macSpec": null, |
|
"memo": null, |
|
"rfId": "SYM-HCP-L4", |
|
"status": true, |
|
"typeName": "9652247", |
|
"updateTime": null, |
|
"used": 1, |
|
"usedText": "正常服役", |
|
"virtualMac": true |
|
}, |
|
{ |
|
"bindQty": 0, |
|
"categorys": "产线设备", |
|
"deviceCode": "9565251", |
|
"deviceIp": null, |
|
"deviceName": "9565251", |
|
"docking": true, |
|
"ecId": 21, |
|
"keyValue": 21, |
|
"macCode": "9565251", |
|
"macSpec": null, |
|
"memo": null, |
|
"rfId": "111", |
|
"status": false, |
|
"typeName": "9565251", |
|
"updateTime": null, |
|
"used": 3, |
|
"usedText": "暂停服役", |
|
"virtualMac": false |
|
}, |
|
{ |
|
"bindQty": 0, |
|
"categorys": "产线设备", |
|
"deviceCode": "9651041_1", |
|
"deviceIp": null, |
|
"deviceName": "9651041_1", |
|
"docking": true, |
|
"ecId": 22, |
|
"keyValue": 22, |
|
"macCode": "9651041_1", |
|
"macSpec": null, |
|
"memo": null, |
|
"rfId": null, |
|
"status": false, |
|
"typeName": "9651041_1", |
|
"updateTime": null, |
|
"used": 3, |
|
"usedText": "暂停服役", |
|
"virtualMac": false |
|
} |
|
] |
|
this.loading = false; |
|
this.page.total = this.data.length |
|
this.selectionClear(); |
|
}); |
|
}, |
|
}, |
|
} |
|
</script> |