From 2237252e9ee6b4e5c3523f8629c8d5d68f882808 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A3=E5=9C=A3=E5=8D=8E?= <752718920@qq.com> Date: Wed, 7 Sep 2022 21:55:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E9=80=A0=E5=8D=95=E6=8D=AE=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E5=BA=8F=E5=88=97=E5=8F=B7=E8=BE=93=E5=85=A5=E6=A1=86?= =?UTF-8?q?=EF=BC=8C=E6=94=B9=E4=B8=BA=E5=8F=AF=E4=BB=A5=E4=BB=8E=E5=BC=B9?= =?UTF-8?q?=E5=87=BA=E6=A1=86=E4=B8=AD=E8=BE=93=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jshERP-web/src/views/bill/mixins/BillModalMixin.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/jshERP-web/src/views/bill/mixins/BillModalMixin.js b/jshERP-web/src/views/bill/mixins/BillModalMixin.js index d4e6368b..ee16e986 100644 --- a/jshERP-web/src/views/bill/mixins/BillModalMixin.js +++ b/jshERP-web/src/views/bill/mixins/BillModalMixin.js @@ -124,7 +124,11 @@ export const BillModalMixin = { if(this.prefixNo === 'LSCK' || this.prefixNo === 'CGTH' || this.prefixNo === 'XSCK' || this.prefixNo === 'QTCK' || this.prefixNo === 'DBCK') { columns[i].type = FormTypes.popupJsh //显示 } else { - columns[i].type = FormTypes.input //显示 + if(key === 'snList') { + columns[i].type = FormTypes.input_pop //显示 + } else { + columns[i].type = FormTypes.input //显示 + } } } else if(key === 'expirationDate') { if(this.prefixNo === 'LSTH' || this.prefixNo === 'CGRK' || this.prefixNo === 'XSTH' || this.prefixNo === 'QTRK') {