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
6ea15448
Commit
6ea15448
authored
Jul 21, 2022
by
crushh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
udpate: 时间
parent
4ceae9fc
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
10 deletions
+8
-10
main.js
src/main.js
+0
-2
info.vue
src/views/salesleads/actCodeManage/attractFlowLink/info.vue
+2
-2
actCodeDetailStatistics.vue
...ds/actCodeManage/staffActCode/actCodeDetailStatistics.vue
+2
-2
dataDetail.vue
src/views/salesleads/components/dataDetail.vue
+4
-4
No files found.
src/main.js
View file @
6ea15448
...
...
@@ -103,8 +103,6 @@ router.beforeEach((to, from, next) => {
to
.
meta
.
refresh
=
refresh
;
}
}
console
.
log
(
from
)
console
.
log
(
to
)
next
();
});
...
...
src/views/salesleads/actCodeManage/attractFlowLink/info.vue
View file @
6ea15448
...
...
@@ -190,8 +190,8 @@ export default {
getChartList
()
{
let
para
=
{
linkId
:
this
.
linkId
,
startTime
:
this
.
dateDefault
[
0
],
endTime
:
this
.
dateDefault
[
1
]
startTime
:
this
.
dateDefault
[
0
]
+
' 00:00:00'
,
endTime
:
this
.
dateDefault
[
1
]
+
' 23:59:59'
};
statisticsChart
(
para
).
then
(
res
=>
{
const
{
result
}
=
res
.
data
;
...
...
src/views/salesleads/actCodeManage/staffActCode/actCodeDetailStatistics.vue
View file @
6ea15448
...
...
@@ -116,8 +116,8 @@ export default {
let
para
=
{
inFields
:
{
hmId
:
that
.
hmId
,
startTime
:
that
.
dateDefault
[
0
],
endTime
:
that
.
dateDefault
[
1
],
startTime
:
that
.
dateDefault
[
0
]
+
' 00:00:00'
,
endTime
:
that
.
dateDefault
[
1
]
+
' 23:59:59'
,
type
:
that
.
dateKey
>=
2
?
2
:
1
}
};
...
...
src/views/salesleads/components/dataDetail.vue
View file @
6ea15448
...
...
@@ -215,8 +215,8 @@ export default {
// 列表数据
async
getTableList
()
{
const
paras
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
pageParam
));
paras
.
inFields
.
startTime
=
this
.
dateDefault
?
this
.
dateDefault
[
0
]
.
toString
()
:
''
;
paras
.
inFields
.
endTime
=
this
.
dateDefault
?
this
.
dateDefault
[
1
]
.
toString
()
:
''
;
paras
.
inFields
.
startTime
=
this
.
dateDefault
?
this
.
dateDefault
[
0
]
+
' 00:00:00'
:
''
;
paras
.
inFields
.
endTime
=
this
.
dateDefault
?
this
.
dateDefault
[
1
]
+
' 23:59:59'
:
''
;
if
(
this
.
id
&&
this
.
typeT
==
'code'
)
{
paras
.
inFields
.
hmId
=
this
.
id
;
}
else
if
(
this
.
id
&&
this
.
typeT
==
'link'
)
{
...
...
@@ -238,8 +238,8 @@ export default {
},
lookRecords
(
row
)
{
const
{
clerkId
,
linkId
,
hmId
}
=
row
;
const
startTime
=
this
.
dateDefault
&&
this
.
dateDefault
.
length
?
this
.
dateDefault
[
0
]
:
undefined
;
const
endTime
=
this
.
dateDefault
&&
this
.
dateDefault
.
length
?
this
.
dateDefault
[
1
]
:
undefined
;
const
startTime
=
this
.
dateDefault
&&
this
.
dateDefault
.
length
?
this
.
dateDefault
[
0
]
+
' 00:00:00'
:
undefined
;
const
endTime
=
this
.
dateDefault
&&
this
.
dateDefault
.
length
?
this
.
dateDefault
[
1
]
+
'23:59:59'
:
undefined
;
let
query
=
{
linkId
,
clerkId
,
hmId
};
startTime
?
(
query
.
startTime
=
startTime
)
:
''
;
endTime
?
(
query
.
endTime
=
endTime
)
:
''
;
...
...
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