From cb5c9968b763362d399e1c7fce1129ec7434aba8 Mon Sep 17 00:00:00 2001
From: kongdeqiang <123456>
Date: 星期三, 26 四月 2023 14:07:31 +0800
Subject: [PATCH] session保存token
---
src/views/your/carInfo-manage/carInfoManage.vue | 47 +++++++++++++++++++++++++++--------------------
1 files changed, 27 insertions(+), 20 deletions(-)
diff --git a/src/views/your/carInfo-manage/carInfoManage.vue b/src/views/your/carInfo-manage/carInfoManage.vue
index 10ed7ed..17ca841 100644
--- a/src/views/your/carInfo-manage/carInfoManage.vue
+++ b/src/views/your/carInfo-manage/carInfoManage.vue
@@ -191,6 +191,7 @@
import util from "@/libs/util.js";
import excel from "@/libs/excel.js";
import {exportColumn} from "./exportColumn";
+ import {getSessionStore} from "../../../libs/storage";
export default {
name: "car-manage",
data() {
@@ -288,20 +289,26 @@
return h("div",params.row.endMileage-params.row.beginMileage);
}
},
- {
- title: "閫佽揣鎴锋暟",
- key: "oilWear",
- width: 130,
- },
- {
- title: "閫佽揣閲�(浠�)",
- key: "oilWear",
- width: 130,
- },
+ // {
+ // title: "閫佽揣鎴锋暟",
+ // // key: "oilWear",
+ // width: 130,
+ // },
+ // {
+ // title: "閫佽揣閲�(浠�)",
+ // // key: "oilWear",
+ // width: 130,
+ // render: (h, params) => {
+ // return h("div",0);
+ // }
+ // },
{
title: "鏈堟补鑰�(鍗�)",
key: "oilWear",
width: 130,
+ render: (h, params) => {
+ return h("div",0);
+ }
},
{
title: "鏈堢噧娌硅垂(鍏�)",
@@ -438,17 +445,18 @@
},
getDataList() {
this.loading = true;
- if (this.value[0]!="" && this.value[1]!=""){
+ if (this.value.length >0){
this.searchForm.beginTime = this.selectDate(this.value[0]);
this.searchForm.endTime = this.selectDate(this.value[1]);
- }else{
- var date = new Date();
- this.searchForm.endTime = this.selectDate(date);
- this.value[1] = this.searchForm.endTime;
- date.setDate(1);
- this.value[0] = date;
- this.searchForm.beginTime = this.selectDate(date);
}
+ // else{
+ // var date = new Date();
+ // this.searchForm.endTime = this.selectDate(date);
+ // this.value[1] = this.searchForm.endTime;
+ // date.setDate(1);
+ // this.value[0] = date;
+ // this.searchForm.beginTime = this.selectDate(date);
+ // }
getCar(this.searchForm).then((res) => {
this.loading = false;
if (res.success) {
@@ -565,7 +573,6 @@
title.push(e.title);
key.push(e.key);
});
-
console.log(this.exportData)
const params = {
@@ -953,4 +960,4 @@
this.init();
},
};
-</script>
\ No newline at end of file
+</script>
--
Gitblit v1.9.1