mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:03:27 +08:00
uniapp【修复】:调整代理商/分销佣金明细默认筛选时间
This commit is contained in:
@@ -81,7 +81,7 @@
|
||||
const { statusBarHeight } = useSystemInfo();
|
||||
|
||||
const calendarsRef = ref();
|
||||
|
||||
const nowTimeStamp = new Date().getTime()
|
||||
const state = reactive<{
|
||||
selectedDate : string;
|
||||
arrowUp : boolean;
|
||||
@@ -93,7 +93,7 @@
|
||||
totalMoney : number;
|
||||
userInfo : UserInfoType,
|
||||
}>({
|
||||
selectedDate: new Date().toLocaleDateString().replaceAll('/', '-') + '至' + new Date().toLocaleDateString().replaceAll('/', '-'),
|
||||
selectedDate: timeFormat(nowTimeStamp) + '至' + timeFormat(nowTimeStamp),
|
||||
arrowUp: false,
|
||||
showMoney: false,
|
||||
info: {},
|
||||
|
||||
@@ -81,6 +81,7 @@
|
||||
const { statusBarHeight } = useSystemInfo();
|
||||
|
||||
const calendarsRef = ref();
|
||||
const nowTimeStamp = new Date().getTime()
|
||||
|
||||
const state = reactive<{
|
||||
selectedDate : string;
|
||||
@@ -93,7 +94,7 @@
|
||||
totalMoney : number;
|
||||
userInfo : UserInfoType,
|
||||
}>({
|
||||
selectedDate: new Date().toLocaleDateString().replaceAll('/', '-') + '至' + new Date().toLocaleDateString().replaceAll('/', '-'),
|
||||
selectedDate: timeFormat(nowTimeStamp) + '至' + timeFormat(nowTimeStamp),
|
||||
arrowUp: false,
|
||||
showMoney: false,
|
||||
info: {},
|
||||
|
||||
Reference in New Issue
Block a user