|
@@ -428,6 +428,23 @@ export default {
|
|
|
size: 15, // 每页显示条数
|
|
|
};
|
|
|
this.searchList();
|
|
|
+ },
|
|
|
+ async timeReturned(e) {
|
|
|
+ if (e.startTime !== "") {
|
|
|
+ this.parmValue.starttime = e.startTime;
|
|
|
+ } else {
|
|
|
+ this.parmValue.starttime = "";
|
|
|
+ }
|
|
|
+
|
|
|
+ if (e.endTime !== "") {
|
|
|
+ this.parmValue.endtime = e.endTime;
|
|
|
+ } else {
|
|
|
+ this.parmValue.endtime = "";
|
|
|
+ }
|
|
|
+ if (this.parmValue.starttime !== "" && this.parmValue.endtime !== "") {
|
|
|
+ this.parmValue.page = 1;
|
|
|
+ await this.searchList();
|
|
|
+ }
|
|
|
},
|
|
|
// 新建/编辑/详情
|
|
|
openModal(id, name, contector, isDetail) {
|