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

229 lines
5.5 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"
@on-load="onLoad"
@row-update="rowUpdate"
@row-save="rowSave"
>
<template #menu-left>
<el-button type="danger" @click="handleDelete">删除</el-button>
</template>
</avue-crud>
</basic-container>
</template>
<script>
import { getList, remove, add, update } from '@/api/workLicense/trainingPlan';
export default {
data() {
return {
loading: false,
data: [],
form: {},
page: {
pageSize: 10,
currentPage: 1,
total: 0,
},
selectionList: [],
option: {
columnSort: true,
tip: false,
rowKey: 'id',
height: 'auto',
align: 'center',
calcHeight: 32,
simplePage: false,
searchShow: true,
searchMenuSpan: 18,
searchIcon: true,
searchIndex: 3,
tree: false,
border: true,
index: false,
selection: true,
viewBtn: false,
delBtn: false,
editBtn: true,
editBtnText: '修改',
editBtnIcon: ' ',
delBtnIcon: ' ',
addBtn: true,
labelWidth: 120,
searchLabelWidth: 120,
menu: true,
menuWidth: 100,
dialogWidth: 600,
dialogClickModal: false,
searchEnter: true,
excelBtn: true,
gridBtn: false,
searchShowBtn: false,
showOverflowTooltip: true,
searchLabelPosition: 'left',
searchGutter: 24,
searchSpan: 6,
menuAlign: 'left',
gridBtn: false,
searchMenuPosition: 'right',
addBtnIcon: ' ',
viewBtnIcon: ' ',
delBtnIcon: ' ',
editBtnIcon: ' ',
column: [
{
label: '培训计划名称',
prop: 'name',
span: 24,
labelWidth: 140,
overflow: true,
search: true,
rules: [
{
required: true,
message: '请输入培训计划名称',
trigger: 'blur',
},
],
},
{
label: '培训周期(天)',
prop: 'cycle',
span: 24,
labelWidth: 140,
overflow: true,
search: false,
type: 'number',
},
{
label: '预警周期(天)',
prop: 'earlyWarningDay',
span: 24,
labelWidth: 140,
overflow: true,
search: false,
type: 'number',
},
{
label: '备注',
prop: 'memo',
span: 24,
labelWidth: 140,
overflow: true,
search: false,
},
// {
// label: '培训计划资料',
// prop: 'attachLink',
// span: 24,
// labelWidth: 140,
// overflow: true,
// search: false,
// hide: true,
// type: 'upload',
// tip: '不能上传 附件,且不超过 10M',
// },
],
},
};
},
mounted() {},
methods: {
searchReset() {
this.query = {};
this.onLoad(this.page);
},
searchChange(params, done) {
this.query = params;
this.page.currentPage = 1;
this.onLoad(this.page, params);
done();
},
selectionChange(val) {
this.selectionList = val;
},
currentChange(currentPage) {
this.page.currentPage = currentPage;
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
},
handleDelete() {
if (this.selectionList.length == 0) {
this.$message.error('请至少选择一条数据');
} else {
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
let ids=[]
this.selectionList.forEach((item) => {
ids.push(item.id);
});
remove(ids.join(',')).then((res) => {
this.$message.success('删除成功');
this.onLoad(this.page);
});
});
}
},
rowSave(row, done, loading) {
add(row).then(
() => {
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
});
done();
},
error => {
window.console.log(error);
loading();
}
);
},
rowUpdate(row, index, done, loading) {
update(row).then(
() => {
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
});
done();
},
error => {
window.console.log(error);
loading();
}
);
},
onLoad(page, params = {}) {
this.loading = true;
getList(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;
});
},
},
};
</script>
<style></style>