|
@@ -208,34 +208,6 @@ export default {
|
|
|
});
|
|
|
}
|
|
|
);
|
|
|
- },
|
|
|
- //测试用的 没事就删掉吧
|
|
|
- getTest() {
|
|
|
- this.listLoading = true;
|
|
|
- this.http.post(
|
|
|
- this.port.test.test1,
|
|
|
- {
|
|
|
- startDate: "2020-01-01",
|
|
|
- endDate: "2020-01-15"
|
|
|
- },
|
|
|
- res => {
|
|
|
- this.listLoading = false;
|
|
|
- if (res.code == "ok") {
|
|
|
- } else {
|
|
|
- this.$message({
|
|
|
- message: res.msg,
|
|
|
- type: "error"
|
|
|
- });
|
|
|
- }
|
|
|
- },
|
|
|
- error => {
|
|
|
- this.listLoading = false;
|
|
|
- this.$message({
|
|
|
- message: error,
|
|
|
- type: "error"
|
|
|
- });
|
|
|
- }
|
|
|
- );
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
@@ -246,9 +218,7 @@ export default {
|
|
|
that.tableHeight = window.innerHeight - 195;
|
|
|
};
|
|
|
},
|
|
|
- mounted() {
|
|
|
- this.getTest();
|
|
|
- }
|
|
|
+ mounted() {}
|
|
|
};
|
|
|
</script>
|
|
|
|