Browse Source

完善销售订单查询--增加办结日期的查询条件

master
yunuo970428 2 years ago
parent
commit
f580f3adc0
  1. 18
      anrui-buscenter/anrui-buscenter-ui/src/views/xiaoshouguanli/dingdanchaxun/xiaoshoudingdanchaxun.vue

18
anrui-buscenter/anrui-buscenter-ui/src/views/xiaoshouguanli/dingdanchaxun/xiaoshoudingdanchaxun.vue

@ -46,6 +46,11 @@
<el-option v-for="item in purchaseType_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey"/>
</el-select>
</el-form-item>
<el-form-item label="办结日期">
<el-date-picker v-model="listQuery.params.closeStartTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/>
<span style="padding: 0 8px"></span>
<el-date-picker v-model="listQuery.params.closeEndTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/>
</el-form-item>
</el-form>
<div class="btn" style="text-align: center;">
<el-button type="primary" @click="handleFilter" icon="el-icon-search" size="small">查询</el-button>
@ -177,6 +182,11 @@
<span>{{ scope.row.createdDate }}</span>
</template>
</el-table-column>
<el-table-column label="办结日期" align="center" width="120">
<template slot-scope="scope">
<span>{{ scope.row.closingDate }}</span>
</template>
</el-table-column>
</el-table>
</div>
<div class="pages">
@ -251,7 +261,9 @@ export default {
vinNo: '',
orderingNo: '',
useOrgName: '',
factoryDiscount: ''
factoryDiscount: '',
closeStartTime: '',
closeEndTime: ''
},
current: 1,
size: 10,
@ -379,7 +391,9 @@ export default {
vinNo: '',
orderingNo: '',
useOrgName: '',
factoryDiscount: ''
factoryDiscount: '',
closeStartTime: '',
closeEndTime: ''
},
current: 1,
size: 10,

Loading…
Cancel
Save