给序列号商品的单据中的出库,做成支持批量出库的功能(在出库的时候搜索序列号支持按逗号分隔)
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
<a-row :gutter="24">
|
||||
<a-col :md="12" :sm="24">
|
||||
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="序列号">
|
||||
<a-input ref="name" placeholder="请输入序列号并回车" v-model="queryParam.name"></a-input>
|
||||
<a-input ref="name" placeholder="多个序列号用逗号隔开" v-model="queryParam.name"></a-input>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
||||
@@ -329,6 +329,10 @@
|
||||
this.selectionRows = selectionRows;
|
||||
},
|
||||
onSearch() {
|
||||
if(this.queryParam.name && this.queryParam.name.length>1000) {
|
||||
this.$message.warning('序列号长度不能超出1000个字符!');
|
||||
return
|
||||
}
|
||||
this.loadData(1);
|
||||
},
|
||||
modalFormOk() {
|
||||
|
||||
Reference in New Issue
Block a user