-
+
-
+
-
+
搜索
重置
-
+
-
-
-
+
+
+
+
@@ -161,7 +167,6 @@
-
@@ -250,6 +255,7 @@ export default {
name: "Report",
data() {
return {
+ value:'',
// 遮罩层
loading: true,
// 选中数组
@@ -293,13 +299,15 @@ export default {
};
},
created() {
- this.getList();
+ // this.getList();
},
methods: {
/** 查询结算订单报列表 */
getList() {
this.loading = true;
+ this.queryParams.stationId = this.$route.params.id
listReport(this.queryParams).then(response => {
+ console.log('查询订单日报',response)
this.reportList = response.rows;
this.total = response.total;
this.loading = false;
@@ -329,15 +337,18 @@ export default {
createTime: null,
delFlag: null
};
+
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
+ console.log('this.value 日期',this.value)
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
+ this.value = null
this.resetForm("queryForm");
this.handleQuery();
},