|
@@ -134,6 +134,7 @@ import { pageList , downTimeCountListXls } from '@/api/distribution/recordMr'
|
|
|
import detailsDia from "./dialog/details.vue";
|
|
|
import { exportExcel } from '@/utils/exportexcel'
|
|
|
import { pagePerformTimeList } from "@/api/schedulingMr/schedulingMr"
|
|
|
+import moment from "moment"
|
|
|
export default {
|
|
|
name: "agreement",
|
|
|
dicts: ['agreement_type', 'distribution_type'],
|
|
@@ -174,6 +175,8 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
+ this.$set(this.queryParams,'performDate',moment().format("yyyy-MM-DD"))
|
|
|
+ this.pagePerformTimeListFun(this.queryParams.performDate)
|
|
|
this.getList();
|
|
|
},
|
|
|
methods: {
|
|
@@ -203,6 +206,8 @@ export default {
|
|
|
this.$set(this.queryParams, 'personName', '');
|
|
|
this.$set(this.queryParams, 'memberMobile', '');
|
|
|
this.$set(this.queryParams, 'personType', '');
|
|
|
+ this.$set(this.queryParams, 'performDate', '');
|
|
|
+ this.$set(this.queryParams, 'performTimeId', '');
|
|
|
this.queryParams.pageNum = 1;
|
|
|
this.handleQuery();
|
|
|
},
|