|
@@ -34,21 +34,15 @@
|
|
|
<a-col :md="6" :sm="8">
|
|
|
<a-form-item label="账套">
|
|
|
<a-input placeholder="请输入账套" v-model="queryParam.account"></a-input>
|
|
|
- <!-- <a-select placeholder="请选择账套" v-model="queryParam.account">
|
|
|
- <a-select-option :value="''">请选择</a-select-option>
|
|
|
- <a-select-option :value="0">香港森语(101)</a-select-option>
|
|
|
- <a-select-option :value="1">宁波森语(102)</a-select-option>
|
|
|
- <a-select-option :value="2">宁波马菲羊(103)</a-select-option>
|
|
|
- </a-select> -->
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
<a-col :md="6" :sm="8">
|
|
|
<a-form-item label="发货状态">
|
|
|
- <a-select placeholder="请选择发货状态" v-model="queryParam.shippingStatu">
|
|
|
- <a-select-option :value="''">请选择</a-select-option>
|
|
|
- <a-select-option :value="0">未发货</a-select-option>
|
|
|
- <a-select-option :value="1">已发货</a-select-option>
|
|
|
+ <a-select placeholder="请选择发货状态" v-model="queryParam.dilivery">
|
|
|
+ <a-select-option value="">请选择</a-select-option>
|
|
|
+ <a-select-option value="0">未发货</a-select-option>
|
|
|
+ <a-select-option value="1">已发货</a-select-option>
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
@@ -196,6 +190,7 @@ export default {
|
|
|
orderDate: '',
|
|
|
customerAbbreviation: '',
|
|
|
account: '',
|
|
|
+ dilivery: '',
|
|
|
pageNo: '', // 初始页
|
|
|
pageSize: '-1' // 每页显示条数
|
|
|
},
|
|
@@ -232,10 +227,10 @@ export default {
|
|
|
// 查询按钮
|
|
|
searchQuery() {
|
|
|
this.getOrderList()
|
|
|
- console.log('this.queryParam.orderDate', this.queryParam.orderDate)
|
|
|
+ console.log('发货状态', this.queryParam.dilivery)
|
|
|
},
|
|
|
searchReset() {
|
|
|
- console.log('>>>>重置')
|
|
|
+ // console.log('>>>>重置')
|
|
|
this.queryParam = {}
|
|
|
this.getOrderList()
|
|
|
},
|
|
@@ -253,8 +248,8 @@ export default {
|
|
|
console.log('子表详情', res.result)
|
|
|
// 子表信息赋值
|
|
|
this.$refs.orderDetailDrawer.childData = res.result
|
|
|
- console.log('主表信息', record)
|
|
|
- this.$refs.orderDetailDrawer.orderDetail = record
|
|
|
+ console.log('主表信息', record)
|
|
|
+ this.$refs.orderDetailDrawer.orderDetail = record
|
|
|
}
|
|
|
})
|
|
|
}
|
|
@@ -264,7 +259,7 @@ export default {
|
|
|
|
|
|
// 查询条件 订单日期转换成字符串并赋值
|
|
|
onDateChange(value, dateString) {
|
|
|
- console.log('订单日期', dateString)
|
|
|
+ // console.log('订单日期', dateString)
|
|
|
this.queryParam.orderDate = dateString
|
|
|
},
|
|
|
// 同步
|