Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
072a0322
Commit
072a0322
authored
Mar 21, 2025
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
11c9b048
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
7 deletions
+28
-7
directCustomerList.vue
...mponents/DirectCustomer/components/directCustomerList.vue
+28
-7
No files found.
src/components/DirectCustomer/components/directCustomerList.vue
View file @
072a0322
...
@@ -283,8 +283,8 @@
...
@@ -283,8 +283,8 @@
<
li
>
<
li
>
<
span
>
<
span
>
<
em
>
{{
$t
(
'objFill.v101.zhuceshij'
)
}}
<
/em
>
<
em
>
{{
$t
(
'objFill.v101.zhuceshij'
)
}}
<
/em
>
<
el
-
date
-
picker
class
=
"h34 w250"
v
-
model
=
"
missionDat
e"
@
change
=
"timeAdd()"
type
=
"daterange"
<
el
-
date
-
picker
class
=
"h34 w250"
v
-
model
=
"
EnterTim
e"
@
change
=
"timeAdd()"
type
=
"daterange"
value
-
format
=
"yyyy
-MM-
dd"
>
value
-
format
=
"yyyy
/MM/
dd"
>
<
/el-date-picker
>
<
/el-date-picker
>
<
/span
>
<
/span
>
<
/li
>
<
/li
>
...
@@ -393,6 +393,7 @@
...
@@ -393,6 +393,7 @@
loading
:
true
,
loading
:
true
,
EmployeeList
:
[],
EmployeeList
:
[],
missionDate
:
[],
missionDate
:
[],
EnterTime
:[],
// defaultImg: 'this.src="' + require("../../assets/img/bg_z1@2x.png") + '"',
// defaultImg: 'this.src="' + require("../../assets/img/bg_z1@2x.png") + '"',
msg
:
{
msg
:
{
pageIndex
:
1
,
pageIndex
:
1
,
...
@@ -419,16 +420,23 @@
...
@@ -419,16 +420,23 @@
}
,
}
,
pagesTitle
(
val
,
oldval
)
{
pagesTitle
(
val
,
oldval
)
{
}
,
}
,
$route
:{
handler
(
val
,
oldVal
)
{
console
.
log
(
val
,
'-----'
)
}
,
deep
:
true
,
immediate
:
true
,
}
}
,
}
,
methods
:
{
methods
:
{
timeAdd
(
t
)
{
// 日期格式
timeAdd
(
t
)
{
// 日期格式
if
(
!
this
.
missionDate
)
{
if
(
!
this
.
EnterTime
)
{
this
.
msg
.
CStartTime
=
''
;
this
.
msg
.
CStartTime
=
''
;
this
.
msg
.
CEndDate
=
''
;
this
.
msg
.
CEndDate
=
''
;
return
return
}
}
this
.
msg
.
CStartTime
=
this
.
missionDate
[
0
];
this
.
msg
.
CStartTime
=
this
.
EnterTime
[
0
];
this
.
msg
.
CEndDate
=
this
.
missionDate
[
1
];
this
.
msg
.
CEndDate
=
this
.
EnterTime
[
1
];
}
,
}
,
handleCurrentChange
(
val
)
{
handleCurrentChange
(
val
)
{
...
@@ -615,13 +623,26 @@
...
@@ -615,13 +623,26 @@
if
(
id
)
{
if
(
id
)
{
this
.
msg
.
ID
=
id
;
this
.
msg
.
ID
=
id
;
}
}
this
.
EnterTime
=
[];
if
(
this
.
$route
.
query
.
EnterTime
)
{
if
(
this
.
$route
.
query
.
EnterTime
)
{
this
.
EnterTime
=
this
.
$route
.
query
.
EnterTime
this
.
EnterTime
=
this
.
$route
.
query
.
EnterTime
this
.
msg
.
CStartTime
=
this
.
EnterTime
[
0
];
this
.
msg
.
CStartTime
=
this
.
EnterTime
[
0
];
this
.
msg
.
CEndDate
=
this
.
EnterTime
[
1
];
this
.
msg
.
CEndDate
=
this
.
EnterTime
[
1
];
}
}
this
.
selectResource
();
this
.
msg
.
CStartTime
=
this
.
$route
.
query
.
CStartTime
?
this
.
$route
.
query
.
CStartTime
:
''
;
this
.
getCompanyList
();
this
.
msg
.
CEndDate
=
this
.
$route
.
query
.
CEndDate
?
this
.
$route
.
query
.
CEndDate
:
''
;
this
.
EnterTime
=
[
this
.
msg
.
CStartTime
,
this
.
msg
.
CEndDate
];
if
(
this
.
$route
.
query
.
BranchId
)
{
if
(
this
.
$route
.
query
.
BranchId
!=
"-1"
){
this
.
msg
.
BranchId
=
this
.
$route
.
query
.
BranchId
+
""
;
}
}
if
(
this
.
$route
.
query
.
EnterID
)
{
this
.
msg
.
EnterID
=
this
.
$route
.
query
.
EnterID
;
}
this
.
getCompanyList
();
this
.
selectResource
();
}
}
}
;
}
;
...
...
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