From b2ec7b35247273c77768115635955991a449e942 Mon Sep 17 00:00:00 2001 From: “linengliang” <vanSuperEnergy@163.com> Date: 星期三, 06 九月 2023 18:04:16 +0800 Subject: [PATCH] 设备台账字段增加查询条件增加 --- src/views/eam/DailyMaintenanceOrderList3m.vue | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/src/views/eam/DailyMaintenanceOrderList3m.vue b/src/views/eam/DailyMaintenanceOrderList3m.vue index adb9568..094356d 100644 --- a/src/views/eam/DailyMaintenanceOrderList3m.vue +++ b/src/views/eam/DailyMaintenanceOrderList3m.vue @@ -57,6 +57,13 @@ >鏂板</a-button> <a-button v-if="selectedRowKeys.length == 1 && selectionRows[0].status == '8'" + @click="handlePrintPrecision(selectionRows[0])" + type="primary" + style="margin-left: 8px" + >绮惧害妫�楠屽崟鎵撳嵃 + </a-button> + <a-button + v-if="selectedRowKeys.length == 1 && selectionRows[0].status == '8'" @click="handlePrintCheck(selectionRows[0])" type="primary" style="margin-left: 8px" @@ -514,6 +521,11 @@ this.selectionRows = selectionRows; }, + handlePrintPrecision(record) { + let href = `${window._CONFIG['domianURL']}/jmreport/view/858844938446508032?id=`+record.id; //缃戠珯閾炬帴 + window.open(href, "_blank"); + }, + handlePrintCheck(record) { let href = `${window._CONFIG['domianURL']}/jmreport/view/858867141388996608?id=`+record.id; //缃戠珯閾炬帴 window.open(href, "_blank"); -- Gitblit v1.9.3