diff --git a/src/views/board/kanBan/index.vue b/src/views/board/kanBan/index.vue
index 065bcfc..10bc7ca 100644
--- a/src/views/board/kanBan/index.vue
+++ b/src/views/board/kanBan/index.vue
@@ -378,7 +378,7 @@
ref="leftBot"
:year="year"
width="200px"
- :device-count="62"
+ :device-count="25"
height="160px"
@endLoading="endLoading"
/>
@@ -391,7 +391,7 @@
@@ -571,7 +571,7 @@ const RecptInfo = ref({
areaId: null,
areaCode: null,
areaName: null,
- recptDate: null,
+ recptDate: new Date().getTime(),
status: null,
remark: null,
attr1: null,
@@ -630,7 +630,7 @@ function getRecptInfo() {
RecptInfo.value = res.data;
console.log('res.data ==>', res.data);
- RecptInfo.value.recptDate = new Date(RecptInfo.value.recptDate as unknown as string).getTime();
+ RecptInfo.value.recptDate = new Date().getTime();
// salesUser(res.data.salseDeptId);
});
}