Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
wangxiaolu-sfa-ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
sfa
wangxiaolu-sfa-ui
Commits
1c6e8287
提交
1c6e8287
authored
4月 22, 2025
作者:
lidongxu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor(mobile/plan): 修复移动端促销计划的刷新和加载功能
同上
上级
22a99658
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
13 行增加
和
16 行删除
+13
-16
index.vue
src/mobile/views/promotion/plan/index/index.vue
+13
-16
没有找到文件。
src/mobile/views/promotion/plan/index/index.vue
浏览文件 @
1c6e8287
...
...
@@ -9,6 +9,7 @@
<!-- 计划列表 -->
<van-pull-refresh
v-model=
"refreshLoading"
:pull-distance=
"100"
success-text=
"刷新成功"
@
refresh=
"onRefresh"
>
<van-list
v-model:loading=
"loading"
:finished=
"finished"
...
...
@@ -61,15 +62,13 @@ defineOptions({
}
)
import
{
parseTime
}
from
'@/utils'
import
userStore
from
'@/store/modules/user'
import
{
getPromotionActiveStatus
}
from
'@/dicts'
import
{
getChargeListAPI
,
getPlanListAPI
,
deletePlanAPI
}
from
'@/api'
import
PlanSearch
from
'./plan-search.vue'
const
{
proxy
}
=
getCurrentInstance
();
const
router
=
useRouter
()
const
promotionIdentity
=
computed
(()
=>
userStore
().
promotionIdentity
)
const
employeeName
=
computed
(()
=>
userStore
().
employeeName
)
// 搜索弹窗
const
showSearch
=
ref
(
false
)
...
...
@@ -98,7 +97,6 @@ const planColumns = [
// 归属人
const
allEmpolyeeList
=
ref
([])
const
getEmployeeList
=
async
()
=>
{
const
res
=
await
getChargeListAPI
()
allEmpolyeeList
.
value
=
res
.
data
.
map
(
item
=>
{
return
{
...
...
@@ -111,6 +109,7 @@ const getEmployeeList = async () => {
}
)
}
getEmployeeList
()
const
getPlanList
=
async
({
activityStartDate
,
activityEndDate
,
planStatus
,
employeeId
,
storeNameLike
}
=
{
}
)
=>
{
const
res
=
await
getPlanListAPI
({
...
query
,
...
...
@@ -122,19 +121,17 @@ const getPlanList = async ({activityStartDate, activityEndDate, planStatus, empl
storeNameLike
}
,
}
)
planList
.
value
=
res
.
data
.
records
// planList.value = [...planList.value, ...res.data.records]
if
(
loading
.
value
)
{
planList
.
value
=
[...
planList
.
value
,
...
res
.
data
.
records
]
finished
.
value
=
res
.
data
.
records
.
length
===
0
loading
.
value
=
false
}
else
{
planList
.
value
=
res
.
data
.
records
}
}
getPlanList
()
// const init = async () =>
{
// await
// // getPlanList()
//
}
// init()
const
onLoad
=
()
=>
{
loading
.
value
=
true
query
.
pageNum
++
...
...
@@ -144,11 +141,11 @@ const onLoad = () => {
// 刷新
const
refreshLoading
=
ref
(
false
)
const
onRefresh
=
()
=>
{
refreshLoading
.
value
=
true
setTimeout
(()
=>
{
setTimeout
(
async
()
=>
{
query
.
pageNum
=
1
await
getPlanList
()
refreshLoading
.
value
=
false
getPlanList
()
}
,
1000
)
}
,
300
)
}
// 编辑计划
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论