From b9c5104fa16e67ef2761fc9f6ff5083573e958dc Mon Sep 17 00:00:00 2001
From: chenzeping <ChenZeping02609@163.com>
Date: 星期二, 16 三月 2021 16:39:56 +0800
Subject: [PATCH] 功能选中效果实现
---
src/utils/constant.js | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/utils/constant.js b/src/utils/constant.js
index 877ff0d..f80da21 100644
--- a/src/utils/constant.js
+++ b/src/utils/constant.js
@@ -3,7 +3,7 @@
export const PICKER_OPTIONS_SHORTCUTS = [
{
text: '浠婂ぉ',
- onClick(picker) {
+ onClick (picker) {
const end = new Date()
const start = new Date(new Date().toDateString())
end.setTime(start.getTime())
@@ -11,7 +11,7 @@
}
}, {
text: '鏈�杩戜竴鍛�',
- onClick(picker) {
+ onClick (picker) {
const end = new Date(new Date().toDateString())
const start = new Date()
start.setTime(end.getTime() - 3600 * 1000 * 24 * 7)
@@ -19,7 +19,7 @@
}
}, {
text: '鏈�杩戜竴涓湀',
- onClick(picker) {
+ onClick (picker) {
const end = new Date(new Date().toDateString())
const start = new Date()
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30)
@@ -27,7 +27,7 @@
}
}, {
text: '鏈�杩戜笁涓湀',
- onClick(picker) {
+ onClick (picker) {
const end = new Date(new Date().toDateString())
const start = new Date()
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90)
--
Gitblit v1.8.0