From 7fca02745d606514a22dc2f4673e3ea1475495b6 Mon Sep 17 00:00:00 2001 From: zouyu <2723363702@qq.com> Date: 星期二, 30 一月 2024 16:54:52 +0800 Subject: [PATCH] 质检报告修改 --- src/views/quality/rawMaterial/index.vue | 35 +++++++++++++++++++++++------------ 1 files changed, 23 insertions(+), 12 deletions(-) diff --git a/src/views/quality/rawMaterial/index.vue b/src/views/quality/rawMaterial/index.vue index 3437c51..b16d9e5 100644 --- a/src/views/quality/rawMaterial/index.vue +++ b/src/views/quality/rawMaterial/index.vue @@ -17,7 +17,7 @@ <template> <div class="mod-config"> <basic-container> - <ttable + <ttable :table="table" :resultData="resultData" @handleSelectionChange="handleSelectionChange" @@ -60,7 +60,7 @@ import { mapGetters } from 'vuex' import PrintJS from 'print-js' import { transformZip } from '@/util/fileTransform' -import printTemplate from './rawMaterial-print.vue' +import printTemplate from './rawMaterial-print' export default { data() { return { @@ -232,7 +232,7 @@ RawMaterialForm, printTemplate, }, - created() { + created() { if(this.permissions.quality_rawMaterial_add){ this.table.toolbar.push({ text: '鏂板', @@ -244,7 +244,10 @@ this.table.toolbar.push({ text: '涓嬭浇妫�楠屾姤鍛�', type: 'primary', - fun: this.downloadReport + loading: false, + disabled: false, + fun: this.downloadReport, + }) } if(this.permissions.quality_rawMaterial_del){ @@ -284,11 +287,18 @@ selection.forEach(ele=>{ ids.push(ele.id) }) - downloadReport({ids : ids}).then(res=>{ - transformZip(res) - }).catch(error=>{ + this.table.toolbar.find((e) => e.text === '涓嬭浇妫�楠屾姤鍛�').loading = true + this.table.toolbar.find((e) => e.text === '涓嬭浇妫�楠屾姤鍛�').disabled = true + try{ + downloadReport({ids : ids}).then(res=>{ + transformZip(res) + }) + }catch(error){ console.log(error) - }) + } finally{ + this.table.toolbar.find((e) => e.text === '涓嬭浇妫�楠屾姤鍛�').loading = false + this.table.toolbar.find((e) => e.text === '涓嬭浇妫�楠屾姤鍛�').disabled = false + } } }, //鏌ョ湅鎶ュ憡鎸夐挳 @@ -374,8 +384,10 @@ } this.$router.push({ name: 'rawMaterialForm', - query: { - id: row == null ? null : row.id, + query: { + id: row == null ? null : row.id + }, + params: { resultVal: row == null ? null : row.judgeState } }) @@ -389,7 +401,7 @@ } }, formatJudgeState(row, column, cellValue){ - if(cellValue != undefined || cellValue != null){ + if(cellValue != undefined && cellValue != null && cellValue != ''){ if(cellValue == 0){ return "<span style='color:#E84738;'>涓嶅悎鏍�</span>" } @@ -435,4 +447,3 @@ } } </script> - \ No newline at end of file -- Gitblit v1.9.3