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

262 lines
6.8 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-save="rowSave"
@row-update="rowUpdate"
@search-change="searchChange"
@search-reset="searchReset"
@selection-change="selectionChange"
@current-change="currentChange"
@size-change="sizeChange"
@refresh-change="refreshChange"
@on-load="onLoad"
>
<template #menu-left>
<el-button type="primary" @click="barchSet">批量维护</el-button>
<el-button type="danger" @click="handleDelete">删除</el-button>
</template>
<template #menu-right>
<el-button type="primary" @click="handleImport">导入 </el-button>
</template>
<template #menu="scope">
<!-- <el-button type="text" size="mini" @click="handle(scope.row.tbId)">处理</el-button> -->
</template>
</avue-crud>
<barchSet v-if="isOpen" :showDialog="isOpen" :list="selectionList" @closeDialog="closeDialog"></barchSet>
<!-- 导入 -->
<basic-import v-if="isShowImport" title="导入" :isShow="isShowImport"
templateUrl="/blade-desk/BA/CoatingThickness/downloadExcelTemplate"
templateName="镀层厚度对应表.xlsx"
importUrl="/blade-desk/BA/CoatingThickness/importExcel"
@closeDialog="closeDialog"></basic-import>
</basic-container>
</template>
<script>
import barchSet from "./barchSet.vue";
import basicImport from '@/components/basic-import/main.vue'
import {getList,addThickness,updateThickness,deleteThickness} from "@/api/basicData/platThicknessRelation"
export default {
components: {
barchSet,
basicImport,
},
data() {
return {
isShowImport:false,
selectionList: [],
loading:false,
query:{},
option: {
height: "auto",
calcHeight: 32,
tip: false,
size: "medium",
simplePage: true,
searchShow: true,
searchMenuSpan: 6,
searchIcon: true,
searchIndex: 3,
tree: false,
border: true,
index: true,
selection: true,
viewBtn: false,
delBtn: true,
addBtn: true,
editBtnText: "修改",
viewBtnIcon: " ",
delBtnIcon: " ",
editBtnIcon: " ",
viewBtnText: "详情",
labelWidth: 120,
menuWidth: 120,
dialogWidth: 1040,
dialogClickModal: false,
searchEnter: true,
excelBtn: false,
filterBtn: true,
searchShowBtn: false,
columnSort: true,
excelBtn: true,
columnSort: true,
index: false,
showOverflowTooltip: true,
searchLabelPosition: "left",
searchLabelPosition: "left",
searchGutter: 24,
searchSpan: 6,
menuAlign: "center",
gridBtn: false,
searchMenuPosition: "right",
addBtnIcon: " ",
viewBtnIcon: " ",
delBtnIcon: " ",
editBtnIcon: " ",
align: "center",
column: [
{
label: "镀层代号",
prop: "thicknessCode",
sortable: true,
filter: true,
span: 12,
search: false,
},
{
label: "质量等级",
prop: "levelNum",
type:"select",
dicUrl:"/api/blade-scheduling/qualityGrade/getGrades",
props:{
label:"qualityGrade",
value:"qualityGrade"
},
sortable: true,
filter: true,
span: 12,
search: false,
},
{
label: "是否以21E8-210开头",
prop: "startF21e8",
sortable: true,
filter: true,
span: 12,
search: false,
labelWidth: 150,
type: "select",
dicData: [
{
label: "是",
value: 1,
},
{
label: "否",
value: 0,
},
],
},
{
label: "厚度",
prop: "thickness",
sortable: true,
filter: true,
span: 12,
search: false,
},
],
},
form: {},
page: {
pageSize: 10,
currentPage: 1,
total: 0,
},
isOpen: false,
};
},
methods: {
// 点击导入按钮
handleImport() {
this.isShowImport = true
},
refreshChange(){
this.onLoad()
},
rowSave(row, done, loading){
addThickness(row).then(res =>{
if(res.data.code == 200){
this.$message.success('新增成功')
this.onLoad()
done()
}
})
},
rowUpdate(row, index, done, loading){
updateThickness(row).then(res =>{
if(res.data.code == 200){
this.$message.success('修改成功')
this.onLoad()
done()
}
})
},
rowDel(row){
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
deleteThickness({
ids:row.id
}).then(res =>{
if(res.data.code == 200){
this.$message.success('删除成功')
this.onLoad()
}
})
})
},
barchSet() {
if(this.selectionList.length == 0){
this.$message.error('请至少选择一条数据')
return
}
this.isOpen = true;
},
closeDialog(val) {
console.log('val---------',val)
this.isOpen = false;
this.isShowImport = false
if(val){
this.onLoad()
}
},
handleDelete() {
if (this.selectionList.length === 0) {
this.$message.error("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
deleteThickness({
ids:this.selectionList.map(item => item.id).join(',')
}).then(res =>{
if(res.data.code == 200){
this.$message.success('删除成功')
this.onLoad()
}
})
});
},
// 多选
selectionChange(list) {
this.selectionList = list;
},
onLoad() {
this.loading = true;
getList({
current:this.page.currentPage,
size:this.page.pageSize,
...this.query
}).then(res =>{
this.data = res.data.data.records
this.page.total = res.data.data.total
this.loading = false
})
},
},
};
</script>
<style lang="scss" scoped></style>