改造单据中的序列号输入框,改为可以从弹出框中输入

This commit is contained in:
季圣华
2022-09-07 21:55:36 +08:00
parent 996b7703fc
commit 2237252e9e

View File

@@ -123,9 +123,13 @@ export const BillModalMixin = {
if(key === 'snList' || key === 'batchNumber') { if(key === 'snList' || key === 'batchNumber') {
if(this.prefixNo === 'LSCK' || this.prefixNo === 'CGTH' || this.prefixNo === 'XSCK' || this.prefixNo === 'QTCK' || this.prefixNo === 'DBCK') { if(this.prefixNo === 'LSCK' || this.prefixNo === 'CGTH' || this.prefixNo === 'XSCK' || this.prefixNo === 'QTCK' || this.prefixNo === 'DBCK') {
columns[i].type = FormTypes.popupJsh //显示 columns[i].type = FormTypes.popupJsh //显示
} else {
if(key === 'snList') {
columns[i].type = FormTypes.input_pop //显示
} else { } else {
columns[i].type = FormTypes.input //显示 columns[i].type = FormTypes.input //显示
} }
}
} else if(key === 'expirationDate') { } else if(key === 'expirationDate') {
if(this.prefixNo === 'LSTH' || this.prefixNo === 'CGRK' || this.prefixNo === 'XSTH' || this.prefixNo === 'QTRK') { if(this.prefixNo === 'LSTH' || this.prefixNo === 'CGRK' || this.prefixNo === 'XSTH' || this.prefixNo === 'QTRK') {
columns[i].type = FormTypes.date //显示 columns[i].type = FormTypes.date //显示