From 616f9896be815a60b5c4063116b7d138892dcfaf Mon Sep 17 00:00:00 2001 From: admin <15939171744@163.com> Date: 星期二, 14 五月 2024 14:59:25 +0800 Subject: [PATCH] - --- jcdm-ui/src/views/main/em/inspectionPlan/machinery.vue | 28 +++++++++------------------- 1 files changed, 9 insertions(+), 19 deletions(-) diff --git a/jcdm-ui/src/views/main/em/inspectionPlan/machinery.vue b/jcdm-ui/src/views/main/em/inspectionPlan/machinery.vue index ca066eb..9a006b4 100644 --- a/jcdm-ui/src/views/main/em/inspectionPlan/machinery.vue +++ b/jcdm-ui/src/views/main/em/inspectionPlan/machinery.vue @@ -47,10 +47,10 @@ export default { name: "Checkmachinery", components:{MachinerySelect}, - props:{ - planId: null, - optType: null - }, + props:{ id: null, + optType: null, + planCode: null, + }, data() { return { // 閬僵灞� @@ -91,7 +91,9 @@ this.getList(); }, methods: { - + clearCheckmachineryList() { + this.checkmachineryList = []; + }, deleteSelectedColumns(row) { const index = this.checkmachineryList.findIndex(item => item.id === row.id); if (index !== -1) { @@ -108,29 +110,17 @@ /** 鏌ヨ鐐规璁惧鍒楄〃 */ getList() { this.loading = true; + this.checkmachineryList =this.machineryList; listInspectionPlanArchives(this.queryParams).then(response => { // this.checkmachineryList = response.rows; this.total = response.total; this.loading = false; }); }, - - /** 鏂板鎸夐挳鎿嶄綔 */ - handleAdd() { + handleAdd(){ this.$refs.machinerySelect.showFlag = true; }, - //璁惧璧勬簮閫夋嫨鍥炶皟 - // onMachineryAdd(rows){ - // if(rows !=null && rows.length >0){ - // rows.forEach(row => { - // row.planId = this.planId; - // addInspectionPlanArchives(row).then(response =>{ - // this.getList(); - // }); - // }); - // } - // }, onMachineryAdd(selectedRows){ if(selectedRows !=null && selectedRows.length >0){ this.checkmachineryList = selectedRows -- Gitblit v1.9.3