|
@@ -91,7 +91,7 @@
|
|
|
<template slot-scope="scope">
|
|
|
<el-popconfirm
|
|
|
title="确定删除该条数据吗?"
|
|
|
- :onConfirm="() => removeRecord(scope.row.id)"
|
|
|
+ @onConfirm="() => removeRecord(scope.row.id)"
|
|
|
>
|
|
|
<el-button type="text" slot="reference">删除</el-button>
|
|
|
</el-popconfirm>
|
|
@@ -282,8 +282,8 @@ export default {
|
|
|
},
|
|
|
searchOrderDate (value) {
|
|
|
if (value) {
|
|
|
- this.searchForm.startTime = value[0] + ' 00:00:00'
|
|
|
- this.searchForm.endTime = value[1] + ' 23:59:59'
|
|
|
+ this.searchForm.startTime = value[0]
|
|
|
+ this.searchForm.endTime = value[1]
|
|
|
} else {
|
|
|
this.searchForm.startTime = null
|
|
|
this.searchForm.endTime = null
|