From 6c658887db918608e59fb0a51b8eb5c71cb697a5 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Wed, 31 May 2023 09:40:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E7=A5=A8=E4=BA=8C=E7=BB=B4=E7=A0=81?= =?UTF-8?q?=E8=A7=A3=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inout/orderDetailBiz.js | 8 +++ src/views/inout/InvoiceCkeck.vue | 92 ++++++++++++++++++++++---------- 2 files changed, 71 insertions(+), 29 deletions(-) diff --git a/src/api/inout/orderDetailBiz.js b/src/api/inout/orderDetailBiz.js index 49a51756..400e9548 100644 --- a/src/api/inout/orderDetailBiz.js +++ b/src/api/inout/orderDetailBiz.js @@ -57,6 +57,14 @@ export function insertInvoice(params) { }); } +export function parseInvoice(params) { + return axios({ + url: "/udiwms/inout/biz/parseInvoice", + method: "get", + params: params + }); +} + export function updateorderBiz(params) { return axios({ url: "/udiwms/inout/biz/updateorderBiz", diff --git a/src/views/inout/InvoiceCkeck.vue b/src/views/inout/InvoiceCkeck.vue index a0e4a078..cfb08274 100644 --- a/src/views/inout/InvoiceCkeck.vue +++ b/src/views/inout/InvoiceCkeck.vue @@ -13,25 +13,28 @@ :model="inputQuery" :rules="formRules" ref="dataForm" - label-width="110px" + label-width="150px" style="padding-top: 40px" > - - - - - - - - - - - - + + + + + + + - + + + { if (response.code === 20000) { @@ -518,6 +535,23 @@ export default { }); }, + getInputFocus(event) { + event.currentTarget.select(); + }, + enterKey(){ + let param={ + code :this.inputQuery.code + } + parseInvoice(param) + .then((res)=>{ + if(res.code == 20000){ + this.inputQuery=res.data; + } + }) + + + }, + uploadHandleError() { }, uploadHandleSuccess(response, file, fileList) {