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
0c92adde
Commit
0c92adde
authored
Sep 09, 2019
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
机票业绩新增验证
parent
864c1c5e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
9 deletions
+28
-9
flightPerformance.vue
src/components/Ticketing/flightPerformance.vue
+13
-5
AirticketCommissionDetail.vue
src/components/administrative/AirticketCommissionDetail.vue
+15
-4
No files found.
src/components/Ticketing/flightPerformance.vue
View file @
0c92adde
...
...
@@ -78,12 +78,20 @@
}
},
mounted
()
{
let
date
=
new
Date
(),
y
=
date
.
getFullYear
(),
m
=
date
.
getMonth
()
<
10
?
"0"
+
(
date
.
getMonth
()
+
1
)
:
date
.
getMonth
()
+
1
;
this
.
msg
.
QMonth
=
y
+
'-'
+
m
;
this
.
initAirlines
();
this
.
getEmployeeList
();
if
(
this
.
$route
.
query
.
UserId
)
{
this
.
msg
.
CreateBy
=
Number
(
this
.
$route
.
query
.
UserId
);
}
if
(
this
.
$route
.
query
.
Periods
)
{
var
str
=
this
.
$route
.
query
.
Periods
;
this
.
msg
.
QMonth
=
str
.
substring
(
0
,
4
)
+
"-"
+
str
.
substring
(
4
);
}
else
{
let
date
=
new
Date
(),
y
=
date
.
getFullYear
(),
m
=
date
.
getMonth
()
<
10
?
"0"
+
(
date
.
getMonth
()
+
1
)
:
date
.
getMonth
()
+
1
;
this
.
msg
.
QMonth
=
y
+
'-'
+
m
;
}
this
.
initAirlines
();
this
.
getList
()
},
methods
:
{
...
...
src/components/administrative/AirticketCommissionDetail.vue
View file @
0c92adde
...
...
@@ -16,6 +16,7 @@
<th>
总人数
</th>
<th>
提成金额
</th>
<th>
期数
</th>
<th>
详情
</th>
</tr>
<tr
v-for=
"item in dataList"
>
<td>
{{
item
.
BName
}}
</td>
...
...
@@ -24,6 +25,7 @@
<td>
{{
item
.
TotalPersion
}}
</td>
<td>
{{
item
.
CommissionMoney
}}
</td>
<td>
{{
item
.
Periods
}}
</td>
<td><a
@
click=
"goUrl(item)"
style=
"color:blue;text-decoration:underline;cursor:pointer;"
>
详情
</a></td>
</tr>
</table>
</div>
...
...
@@ -64,8 +66,17 @@
null
);
},
}
goUrl
(
item
)
{
this
.
$router
.
push
({
path
:
"flightPerformance"
,
query
:
{
UserId
:
item
.
UserId
,
Periods
:
item
.
Periods
,
blank
:
'y'
,
tab
:
'票务业绩详情'
}
});
}
},
}
</
script
>
</
script
>
\ No newline at end of file
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