修改虚拟订单不能时间筛选问题
parent
7a43087ae0
commit
c1f846a633
|
@ -31,18 +31,19 @@
|
||||||
<Option value="CANCELLED">已取消</Option>
|
<Option value="CANCELLED">已取消</Option>
|
||||||
</Select>
|
</Select>
|
||||||
</Form-item>
|
</Form-item>
|
||||||
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
|
|
||||||
<Form-item label="下单时间">
|
<Form-item label="下单时间">
|
||||||
<DatePicker
|
<DatePicker
|
||||||
v-model="selectDate"
|
v-model="selectDate"
|
||||||
type="datetimerange"
|
type="datetimerange"
|
||||||
format="yyyy-MM-dd HH:mm:ss"
|
format="yyyy-MM-dd"
|
||||||
clearable
|
clearable
|
||||||
@on-change="selectDateRange"
|
@on-change="selectDateRange"
|
||||||
placeholder="选择起始时间"
|
placeholder="选择起始时间"
|
||||||
style="width: 200px"
|
style="width: 200px"
|
||||||
></DatePicker>
|
></DatePicker>
|
||||||
</Form-item>
|
</Form-item>
|
||||||
|
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
|
||||||
|
|
||||||
</Form>
|
</Form>
|
||||||
</Row>
|
</Row>
|
||||||
<Table
|
<Table
|
||||||
|
@ -94,6 +95,7 @@
|
||||||
buyerName: "",
|
buyerName: "",
|
||||||
orderStatus: ""
|
orderStatus: ""
|
||||||
},
|
},
|
||||||
|
|
||||||
selectDate: null, // 下单时间
|
selectDate: null, // 下单时间
|
||||||
columns: [
|
columns: [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue