中航光电热表web
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.

453 lines
11 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"
@row-update="rowUpdate"
@row-save="rowSave"
@search-change="searchChange"
@search-reset="searchReset"
@selection-change="selectionChange"
@current-change="currentChange"
@size-change="sizeChange"
@refresh-change="refreshChange"
@on-load="onLoad"
5 months ago
:before-open="beforeOpen"
>
<template #menu-left> </template>
<template #menu-right> </template>
<template #menu="{ row }"> </template>
<template #standardProcessAbility="scope">
<span v-if="scope.row.partType==1||scope.row.partType==2||scope.row.partType==3">
<!-- <i v-for="(item,index) in JSON.parse(scope.row.standardProcessAbility)" :key="index">
{{ }}
</i> -->
{{ JSON.parse(scope.row.standardProcessAbility) }}
</span>
<span v-else>{{ scope.row.standardProcessAbility }}</span>
</template>
</avue-crud>
</basic-container>
</template>
<script>
import {
getListEquipAbility,
removeEquipAbility,
addEquipAbility,
updateEquipAbility,
} from '@/api/productionSchedulingPlan/basic';
export default {
components: {},
data() {
return {
form: {},
selectionList: [],
query: {},
loading: false,
page: {
pageSize: 10,
currentPage: 1,
total: 0,
},
option: {
columnSort: true,
tip: false,
height: 'auto',
calcHeight: 32,
simplePage: false,
searchShow: true,
searchMenuSpan: 6,
searchIcon: true,
searchIndex: 3,
tree: false,
border: true,
index: true,
selection: false,
addBtn: true,
editBtn: true,
viewBtn: false,
delBtn: true,
editBtnText: '修改',
labelWidth: 120,
menuWidth: 120,
dialogWidth: 900,
dialogClickModal: false,
searchEnter: true,
excelBtn: false,
filterBtn: true,
searchShowBtn: false,
excelBtn: true,
showOverflowTooltip: true,
addBtnIcon: ' ',
viewBtnIcon: ' ',
delBtnIcon: ' ',
editBtnIcon: ' ',
gridBtn: false,
searchLabelPosition: 'left',
searchGutter: 24,
searchSpan: 6,
menuAlign: 'left',
gridBtn: false,
searchMenuPosition: 'right',
align: 'center',
column: [
{
label: '作业中心',
prop: 'workCenterId',
search: true,
sortable: true,
span: 12,
width: 120,
type: 'select',
filterable: true,
dicUrl: '/blade-scheduling/workCenter/findList',
rules: [
{
required: true,
message: '请选择',
trigger: 'blur',
},
],
props: {
label: 'wcName',
value: 'id',
},
change: val => {
this.onChangeData(val.item, 'workCenterId');
},
},
{
label: '作业中心',
prop: 'workCenterName',
search: false,
sortable: true,
span: 12,
hide: true,
display: false,
},
{
label: '设备编码',
prop: 'equipCode',
search: true,
sortable: true,
span: 12,
width: 120,
type: 'select',
// hide:true,
filterable: true,
dicUrl: '/blade-scheduling/equipment/findList',
props: {
label: 'deviceCode',
value: 'deviceCode',
},
rules: [
{
required: true,
message: '请选择',
trigger: 'blur',
},
],
change: val => {
this.onChangeData(val.item, 'equipName');
},
},
{
label: '设备名称',
prop: 'equipName',
search: false,
sortable: true,
span: 12,
width: 120,
disabled: true,
// display:false,
},
{
label: '设备型号',
prop: 'equipNameType',
search: false,
sortable: true,
span: 12,
width: 120,
disabled: true,
},
// {
// label: '设备编码',
// prop: 'equipCode',
// search: true,
// sortable: true,
// span: 12,
// width: 120,
// disabled:true,
// },
{
label: '设备分类',
prop: 'equipType',
search: false,
sortable: true,
span: 12,
width: 120,
type: 'select',
rules: [
{
required: true,
message: '请选择',
trigger: 'blur',
},
],
dicData: [
{
label: '产线设备',
value: '0',
},
{
label: '普通设备',
5 months ago
value: '1',
},
],
},
{
label: '工艺能力',
prop: 'craftId',
search: false,
sortable: true,
span: 12,
width: 120,
type: 'select',
filterable: true,
dicUrl: '/blade-scheduling/craftAbility/findList',
props: {
label: 'caName',
value: 'id',
},
rules: [
{
required: true,
message: '请选择',
trigger: 'blur',
},
],
change: val => {
this.onChangeData(val.item, 'craftId');
},
},
{
label: '工艺能力',
prop: 'craftName',
search: false,
sortable: true,
span: 12,
hide: true,
display: false,
},
{
label: '额定加工能力(烧结-个/热表-面积)',
prop: 'standardProcessAbility',
search: false,
sortable: true,
span: 14,
width: 270,
labelWidth: 270,
type: 'number',
rules: [
{
required: true,
message: '请输入',
trigger: 'blur',
},
],
},
{
label: '额定工时(分钟)',
prop: 'standardTime',
search: false,
sortable: true,
span: 12,
width: 180,
labelWidth: 180,
type: 'number',
rules: [
{
required: true,
message: '请输入',
trigger: 'blur',
},
],
},
{
label: '准备工时(分钟)',
prop: 'prepareTime',
search: false,
sortable: true,
span: 12,
width: 180,
labelWidth: 180,
type: 'number',
rules: [
{
required: true,
message: '请输入',
trigger: 'blur',
},
],
},
{
label: '轮次间隔(分钟)',
prop: 'interval',
search: false,
sortable: true,
span: 12,
width: 180,
labelWidth: 180,
type: 'number',
rules: [
{
required: true,
message: '请输入',
trigger: 'blur',
},
],
},
{
label: '指定使用',
prop: 'assignUse',
search: false,
sortable: true,
span: 12,
width: 120,
},
{
label: '备注',
prop: 'remarks',
search: false,
sortable: true,
span: 12,
width: 180,
},
],
},
data: [],
};
},
methods: {
beforeOpen(done, type) {
5 months ago
if (['edit', 'view'].includes(type)) {
// this.form.processId = this.form.processId+''
// this.form.craftId = this.form.craftId+''
this.form.workCenterId = this.form.workCenterId + '';
5 months ago
}
done();
},
onChangeData(val, type) {
if (val && type == 'workCenterId') {
this.form.workCenterName = val.wcCode;
}
if (val && type == 'equipName') {
this.form.equipName = val.deviceName;
}
if (val && type == 'craftId') {
this.form.craftName = val.caName;
}
},
rowSave(row, done, loading) {
addEquipAbility(row).then(
() => {
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
});
done();
},
error => {
window.console.log(error);
loading();
}
);
},
rowUpdate(row, index, done, loading) {
updateEquipAbility(row).then(
() => {
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
});
done();
},
error => {
window.console.log(error);
loading();
}
);
},
rowDel(row) {
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
return removeEquipAbility(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
});
});
},
searchReset() {
this.query = {};
this.onLoad(this.page);
},
searchChange(params, done) {
this.query = params;
this.page.currentPage = 1;
this.onLoad(this.page, params);
done();
},
selectionChange(list) {
this.selectionList = list;
},
selectionClear() {
this.selectionList = [];
this.$refs.crud.toggleSelection();
},
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;
getListEquipAbility(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(
res => {
this.data = res.data.data.records;
this.loading = false;
this.page.total = res.data.data.total;
this.selectionClear();
}
);
},
},
mounted() {},
};
</script>