Commit dffa557d authored by 季圣华's avatar 季圣华
Browse files

给收付款单增加销售采购单号的查询功能

parent c0a3a6a0
...@@ -85,6 +85,11 @@ ...@@ -85,6 +85,11 @@
<a-input placeholder="请输入单据备注" v-model="queryParam.remark"></a-input> <a-input placeholder="请输入单据备注" v-model="queryParam.remark"></a-input>
</a-form-item> </a-form-item>
</a-col> </a-col>
<a-col :md="6" :sm="24">
<a-form-item label="销售单号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input placeholder="请输入销售单号(精确查询)" v-model="queryParam.number"></a-input>
</a-form-item>
</a-col>
</template> </template>
</a-row> </a-row>
</a-form> </a-form>
...@@ -179,6 +184,7 @@ ...@@ -179,6 +184,7 @@
accountId: "", accountId: "",
status: "", status: "",
remark: "", remark: "",
number: "",
roleType: Vue.ls.get('roleType') roleType: Vue.ls.get('roleType')
}, },
// 表头 // 表头
......
...@@ -85,6 +85,11 @@ ...@@ -85,6 +85,11 @@
<a-input placeholder="请输入单据备注" v-model="queryParam.remark"></a-input> <a-input placeholder="请输入单据备注" v-model="queryParam.remark"></a-input>
</a-form-item> </a-form-item>
</a-col> </a-col>
<a-col :md="6" :sm="24">
<a-form-item label="采购单号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input placeholder="请输入采购单号(精确查询)" v-model="queryParam.number"></a-input>
</a-form-item>
</a-col>
</template> </template>
</a-row> </a-row>
</a-form> </a-form>
...@@ -179,6 +184,7 @@ ...@@ -179,6 +184,7 @@
accountId: "", accountId: "",
status: "", status: "",
remark: "", remark: "",
number: "",
roleType: Vue.ls.get('roleType') roleType: Vue.ls.get('roleType')
}, },
// 表头 // 表头
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment