Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
aixianling
2022-03-02 10:27:53 +08:00
3 changed files with 4 additions and 26 deletions

View File

@@ -23,7 +23,7 @@
type="date"
size="small"
unlink-panels
placeholder="选择开始日期"
placeholder="选择发布开始日期"
@change="search.current = 1, getList()" />
<el-date-picker
value-format="yyyy-MM-dd"
@@ -31,7 +31,7 @@
type="date"
size="small"
unlink-panels
placeholder="选择结束日期"
placeholder="选择发布结束日期"
@change="search.current = 1, getList()" />
</template>
<template #right>

View File

@@ -77,8 +77,8 @@ export default {
},
handleFilterApplyTime() {
this.page.current = 1
this.search.applyStartDate = this.search.applyTime?.[0]
this.search.applyEndDate = this.search.applyTime?.[1]
this.search.applyStartDate = this.search.applyTime?.[0].substring(0,10)
this.search.applyEndDate = this.search.applyTime?.[1].substring(0,10)
this.getTableData()
}
},