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.
228 lines
5.2 KiB
228 lines
5.2 KiB
|
2 weeks ago
|
<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"
|
||
|
|
>
|
||
|
|
<template #menu-left> </template>
|
||
|
|
<template #menu-right> </template>
|
||
|
|
<template #menu="{ row }"> </template>
|
||
|
|
|
||
|
|
<template #heatTreat="scope"> </template>
|
||
|
|
</avue-crud>
|
||
|
|
</basic-container>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import {
|
||
|
|
getListPersonAbility,
|
||
|
|
removePersonAbility,
|
||
|
|
addPersonAbility,
|
||
|
|
updatePersonAbility,
|
||
|
|
} 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: false,
|
||
|
|
sortable: true,
|
||
|
|
span: 12,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
label: '工序',
|
||
|
|
prop: 'processId',
|
||
|
|
search: false,
|
||
|
|
sortable: true,
|
||
|
|
span: 12,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
label: '工艺能力',
|
||
|
|
prop: 'craftId',
|
||
|
|
search: false,
|
||
|
|
sortable: true,
|
||
|
|
span: 12,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
label: '额定工时(分钟/每人每个)',
|
||
|
|
prop: 'standardTime',
|
||
|
|
search: false,
|
||
|
|
sortable: true,
|
||
|
|
span: 12,
|
||
|
|
labelWidth:220,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
label: '准备工时(分钟)',
|
||
|
|
prop: 'prepareTime',
|
||
|
|
search: false,
|
||
|
|
sortable: true,
|
||
|
|
span: 12,
|
||
|
|
labelWidth:180,
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
|
||
|
|
data: [],
|
||
|
|
};
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
rowSave(row, done, loading) {
|
||
|
|
addPersonAbility(row).then(
|
||
|
|
() => {
|
||
|
|
this.onLoad(this.page);
|
||
|
|
this.$message({
|
||
|
|
type: 'success',
|
||
|
|
message: '操作成功!',
|
||
|
|
});
|
||
|
|
done();
|
||
|
|
},
|
||
|
|
error => {
|
||
|
|
window.console.log(error);
|
||
|
|
loading();
|
||
|
|
}
|
||
|
|
);
|
||
|
|
},
|
||
|
|
rowUpdate(row, index, done, loading) {
|
||
|
|
updatePersonAbility(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 removePersonAbility(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;
|
||
|
|
getListPersonAbility(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>
|