|
@@ -6,6 +6,11 @@
|
|
|
<div class="table-page-search-wrapper">
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
|
|
<a-row :gutter="24">
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-item label="单据号">
|
|
|
+ <a-input placeholder="请输入订单号" v-model="queryParam.documentNo"></a-input>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<a-col :md="6" :sm="8">
|
|
|
<a-form-item label="订单号">
|
|
|
<a-input placeholder="请输入订单号" v-model="queryParam.orderNumber"></a-input>
|
|
@@ -195,6 +200,20 @@ export default {
|
|
|
return {
|
|
|
// 表头
|
|
|
clothesListColumns: [
|
|
|
+ {
|
|
|
+ title: '订单号',
|
|
|
+ dataIndex: 'orderNumber',
|
|
|
+ width: 120,
|
|
|
+ fixed: 'left',
|
|
|
+ className: 'replacecolor'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '单据号',
|
|
|
+ dataIndex: 'documentNo',
|
|
|
+ width: 120,
|
|
|
+ fixed: 'left',
|
|
|
+ className: 'replacecolor'
|
|
|
+ },
|
|
|
{
|
|
|
title: '款号',
|
|
|
dataIndex: 'itemNumber',
|
|
@@ -399,6 +418,7 @@ export default {
|
|
|
|
|
|
// 查询条件
|
|
|
queryParam: {
|
|
|
+ documentNo:'', //单据号
|
|
|
orderNumber: '', // 订单号
|
|
|
itemNumber : '', //款号
|
|
|
productName: '', // 品名
|