Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
wangxiaolu-sfa-ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
sfa
wangxiaolu-sfa-ui
Commits
6a8dd119
提交
6a8dd119
authored
6月 10, 2025
作者:
lidongxu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor(promotion): 修改时_日期只能是当月 n+ 1 到月底
上级
cfc60b00
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
11 行增加
和
1 行删除
+11
-1
index.vue
src/mobile/components/PickerCalendar/index.vue
+9
-0
index.vue
src/mobile/views/promotion/plan/editing/index.vue
+1
-0
effectivePlan.vue
src/views/promotion/plan/effectivePlan.vue
+1
-1
没有找到文件。
src/mobile/components/PickerCalendar/index.vue
浏览文件 @
6a8dd119
...
...
@@ -14,6 +14,10 @@ const props = defineProps({
type
:
Boolean
,
default
:
false
},
setNowMaxMonth
:
{
// 设置当前月为最大日期
type
:
Boolean
,
default
:
false
},
defaultDate
:
{
// 默认日期
type
:
[
Array
,
Date
,
String
],
default
:
()
=>
{
...
...
@@ -40,6 +44,11 @@ const searchMinDate = computed(() => {
// 设置最大日期选择范围
const
searchMaxDate
=
computed
(()
=>
{
if
(
props
.
setNextMaxMonth
)
{
// 设置当月最后一日为最大范围
console
.
log
(
props
.
setNowMaxMonth
)
if
(
props
.
setNowMaxMonth
)
{
return
new
Date
(
new
Date
().
getFullYear
(),
new
Date
().
getMonth
()
+
1
,
0
)
}
// 设置下个月最后一日为最大范围
return
new
Date
(
new
Date
().
getFullYear
(),
new
Date
().
getMonth
()
+
2
,
0
)
}
else
{
...
...
src/mobile/views/promotion/plan/editing/index.vue
浏览文件 @
6a8dd119
...
...
@@ -41,6 +41,7 @@
:default-date=
"form.date"
:min-date=
"planMinDate"
setNextMaxMonth
:setNowMaxMonth=
"!!planId"
type=
"single"
@
confirm=
"confirmCalendar"
/>
<van-field
v-model=
"form.pattern"
...
...
src/views/promotion/plan/effectivePlan.vue
浏览文件 @
6a8dd119
...
...
@@ -550,7 +550,7 @@ const disabledDateFn = (time) => {
const
now
=
new
Date
();
// 变更计划时,只能选择明天以后的
const
thisMonthStart
=
new
Date
(
now
.
getFullYear
(),
now
.
getMonth
(),
addOrEditPlanForm
.
value
.
id
?
now
.
getDate
()
+
1
:
now
.
getDate
());
const
nextMonthEnd
=
new
Date
(
now
.
getFullYear
(),
now
.
getMonth
()
+
2
,
0
);
const
nextMonthEnd
=
new
Date
(
now
.
getFullYear
(),
addOrEditPlanForm
.
value
.
id
?
now
.
getMonth
()
+
1
:
now
.
getMonth
()
+
2
,
0
);
return
time
.
getTime
()
<
thisMonthStart
.
getTime
()
||
time
.
getTime
()
>
nextMonthEnd
.
getTime
();
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论