Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-3
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
office
haoban-3
Commits
b9999d41
Commit
b9999d41
authored
Jun 23, 2022
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 好办bug
parent
f865226b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
9 deletions
+15
-9
grStoreDetail.vue
src/views/salesleads/groupSend/grStoreDetail.vue
+7
-3
grTaskList.vue
src/views/salesleads/groupSend/grTaskList.vue
+4
-4
taskDetail.vue
src/views/salesleads/trafficTask/taskDetail.vue
+4
-2
No files found.
src/views/salesleads/groupSend/grStoreDetail.vue
View file @
b9999d41
...
...
@@ -202,7 +202,7 @@ export default {
}
this
.
loadingBtn
=
true
;
let
url
=
'/haoban-task-manage-web/market/clue/export/store-view-task-detail'
;
const
{
finishOverStatus
,
taskType
,
pageNum
,
pageSize
}
=
this
.
pageParams
;
const
{
finishOverStatus
,
taskType
,
pageNum
,
pageSize
,
date
}
=
this
.
pageParams
;
let
para
=
{
enterpriseId
:
this
.
brandId
,
dataType
:
1
,
...
...
@@ -210,12 +210,16 @@ export default {
taskType
,
pageNum
,
pageSize
,
startTime
:
this
.
pageParams
.
date
[
0
],
endTime
:
this
.
pageParams
.
date
[
1
],
//
startTime: this.pageParams.date[0],
//
endTime: this.pageParams.date[1],
selectType
:
this
.
selectRadio
,
selectIdList
:
this
.
selectRadio
==
1
?
''
:
this
.
multipleSelection
.
map
(
ele
=>
ele
.
taskId
).
join
(
','
),
// 门店分组,数组
storeId
:
this
.
$route
.
params
.
id
};
if
(
Array
.
isArray
(
date
)
&&
date
.
length
===
2
)
{
para
.
startTime
=
`
${
date
[
0
]}
00:00:00`
;
para
.
endTime
=
`
${
date
[
1
]}
23:59:59`
;
}
let
fileName
=
this
.
pageParams
.
date
.
length
?
`群发任务-门店视图-任务详情_
${
para
.
startTime
}
至
${
para
.
endTime
}
.xls`
:
`群发任务-门店视图-任务详情.xls`
;
if
(
this
.
$route
.
query
.
hasOwnProperty
(
'ecmPlanName'
))
{
para
.
ecmPlanName
=
this
.
$route
.
query
.
ecmPlanName
;
...
...
src/views/salesleads/groupSend/grTaskList.vue
View file @
b9999d41
...
...
@@ -179,8 +179,8 @@ export default {
selectIdList
:
this
.
selectRadio
==
1
?
''
:
this
.
multipleSelection
.
map
(
ele
=>
ele
.
ecmPlanId
).
join
(
','
)
};
if
(
Array
.
isArray
(
para
.
date
))
{
para
.
startTime
=
`
${
para
.
date
[
0
]}
00:00:00`
;
para
.
endTime
=
`
${
para
.
date
[
1
]}
23:59:59`
;
para
.
startTime
=
para
.
date
[
0
]
;
para
.
endTime
=
para
.
date
[
1
]
;
delete
para
.
date
;
}
postExcel
(
'/haoban-task-manage-web/market/clue/export/plan-view'
,
para
)
...
...
@@ -275,8 +275,8 @@ export default {
qywxEnterpriseId
:
JSON
.
parse
(
sessionStorage
.
getItem
(
'userInfos'
)).
wxEnterpriseId
};
if
(
para
.
date
)
{
para
.
startTime
=
`
${
para
.
date
[
0
]}
00:00:00`
;
para
.
endTime
=
`
${
para
.
date
[
1
]}
23:59:59`
;
para
.
startTime
=
para
.
date
[
0
]
;
para
.
endTime
=
para
.
date
[
1
]
;
delete
para
.
date
;
}
getRequest
(
'/haoban-task-manage-web/market/clue/web/plan-list'
,
para
)
...
...
src/views/salesleads/trafficTask/taskDetail.vue
View file @
b9999d41
...
...
@@ -385,10 +385,12 @@ export default {
isCompleted
:
that
.
conditionObj
.
completed
||
''
,
// 完成
taskIds
:
that
.
selectRadio
==
1
?
''
:
that
.
multipleSelection
.
map
(
ele
=>
ele
.
taskId
).
join
(
','
),
dataType
:
type
,
createTimeStart
:
this
.
conditionObj
.
date
[
0
],
createTimeEnd
:
this
.
conditionObj
.
date
[
1
],
title
:
this
.
conditionObj
.
title
};
if
(
Array
.
isArray
(
this
.
conditionObj
.
date
)
&&
this
.
conditionObj
.
date
.
length
==
2
)
{
para
.
createTimeStart
=
`
${
this
.
conditionObj
.
date
[
0
]}
00:00:00`
;
para
.
createTimeEnd
=
`
${
this
.
conditionObj
.
date
[
1
]}
23:59:59`
;
}
postExcel
(
'/haoban-app-tel-task-three-web/task/export-store-view-clerk-list'
,
para
)
.
then
(
res
=>
{
that
.
loadingBtn
=
false
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment