Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
wangxiaolu-sfa-ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
sfa
wangxiaolu-sfa-ui
Commits
8d5e7c95
提交
8d5e7c95
authored
6月 10, 2025
作者:
lidongxu
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'qa2' into dev
上级
33ee5838
8ee6ce5c
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
19 行增加
和
6 行删除
+19
-6
index.js
src/hooks/promotion/index.js
+2
-1
index.vue
src/mobile/components/PickerCalendar/index.vue
+8
-0
index.vue
src/mobile/views/promotion/plan/editing/index.vue
+1
-0
index.vue
src/mobile/views/promotion/plan/index/index.vue
+5
-1
effectivePlan.vue
src/views/promotion/plan/effectivePlan.vue
+3
-4
没有找到文件。
src/hooks/promotion/index.js
浏览文件 @
8d5e7c95
...
...
@@ -21,7 +21,8 @@ export const checkPlanExpire = (row) => {
*/
export
const
checkPlanChangeExpire
=
(
row
)
=>
{
const
date
=
new
Date
()
const
rowDate
=
new
Date
(
row
.
activityDate
)
const
rowDate
=
new
Date
(
row
.
date
)
console
.
log
(
date
,
row
)
return
!
(
rowDate
<=
date
)
}
...
...
src/mobile/components/PickerCalendar/index.vue
浏览文件 @
8d5e7c95
...
...
@@ -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,10 @@ const searchMinDate = computed(() => {
// 设置最大日期选择范围
const
searchMaxDate
=
computed
(()
=>
{
if
(
props
.
setNextMaxMonth
)
{
// 设置当月最后一日为最大范围
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
浏览文件 @
8d5e7c95
...
...
@@ -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/mobile/views/promotion/plan/index/index.vue
浏览文件 @
8d5e7c95
...
...
@@ -88,7 +88,7 @@ defineOptions({
}
)
import
userStore
from
'@/store/modules/user'
import
{
parseTime
}
from
'@/utils'
import
{
checkPlanExpire
}
from
'@/hooks'
import
{
checkPlanExpire
,
checkPlanChangeExpire
}
from
'@/hooks'
import
{
PROMOTION_STATUS
,
getPromotionActiveStatus
}
from
'@/dicts'
import
{
getPlanListAPI
,
deletePlanAPI
,
batchUpdatePlanAPI
,
getChargeListAPI
}
from
'@/api'
import
PlanSearch
from
'./planSearch.vue'
...
...
@@ -199,6 +199,10 @@ const editPlan = (row) => {
if
(
!
checkPlanExpire
(
row
))
{
return
proxy
.
$modal
.
msgWarning
(
'无法变更,已执行或之前计划'
)
}
// 日期小于等于今日,无法变更
if
(
!
checkPlanChangeExpire
(
row
))
{
return
proxy
.
$modal
.
msgWarning
(
'无法变更,日期小于等于今日'
)
}
router
.
push
(
`/m/promotion_plan_editing/${row.id
}
`
)
}
...
...
src/views/promotion/plan/effectivePlan.vue
浏览文件 @
8d5e7c95
...
...
@@ -80,7 +80,7 @@
<
template
#
default=
"scope"
>
<el-button
type=
"success"
link
:disabled=
"!selectableFn(scope.row)"
:disabled=
"!selectableFn(scope.row)
|| !checkPlanChangeExpire(scope.row)
"
@
click=
"editFn(scope.row)"
>
变更
</el-button>
...
...
@@ -317,7 +317,7 @@
<
script
setup
>
import
{
v4
as
uuidv4
}
from
'uuid'
;
import
{
getPlanListAPI
,
uploadFileToOSSAPI
,
addPlanAPI
,
savePlanAPI
,
deletePlanAPI
,
addPlanByRoleAPI
,
getChargeListAPI
,
addPlanByWebAPI
,
updatePlanByWebAPI
,
getPlanStoreListAPI
,
updatePlanAPI
,
batchUpdatePlanAPI
}
from
'@/api'
import
{
checkPlanExpire
}
from
'@/hooks'
import
{
checkPlanExpire
,
checkPlanChangeExpire
}
from
'@/hooks'
import
userStore
from
'@/store/modules/user'
import
{
PROMOTION_ACTIVITY_MODE_LIST
,
getPromotionActiveStatus
}
from
'@/dicts'
import
{
parseTime
}
from
'@/utils'
...
...
@@ -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
();
}
}
...
...
@@ -590,7 +590,6 @@ const selEmployee = () => {
proxy
.
$refs
.
addOrEditPlanRef
.
clearValidate
(
'employeeNo'
);
}
// 保存新增/变更计划
const
handleAddOrEditPlan
=
async
()
=>
{
// 表单校验
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论