diff --git a/src/api/inout/orderDetailBiz.js b/src/api/inout/orderDetailBiz.js index b237b36..bf93635 100644 --- a/src/api/inout/orderDetailBiz.js +++ b/src/api/inout/orderDetailBiz.js @@ -100,6 +100,15 @@ export function filterBizOrderList(params) { }); } +export function parseInvoice(params) { + return axios({ + url: "/udiwms/inout/biz/parseInvoice", + method: "get", + params: params + }); +} + + diff --git a/src/views/inout/InvoiceCkeck.vue b/src/views/inout/InvoiceCkeck.vue index c35fd0f..3b1696f 100644 --- a/src/views/inout/InvoiceCkeck.vue +++ b/src/views/inout/InvoiceCkeck.vue @@ -13,22 +13,25 @@ :model="inputQuery" :rules="formRules" ref="dataForm" - label-width="110px" + label-width="150px" style="padding-top: 40px" > - - - - - - - - - - - - + + + + + + + @@ -205,6 +208,12 @@ width="100" > + + { if (response.code === 20000) { @@ -515,6 +533,25 @@ 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) { debugger;