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
f5b9f4e6
Commit
f5b9f4e6
authored
Mar 19, 2019
by
huangyuanyuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
月度营利报表
parent
c3e76248
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1078 additions
and
3 deletions
+1078
-3
MonthReport.vue
src/components/FinancialModule/ReportForm/MonthReport.vue
+1063
-0
YearReport.vue
src/components/FinancialModule/ReportForm/YearReport.vue
+3
-1
OrderSplitting.vue
src/components/SalesVisa/OrderSplitting.vue
+2
-0
VisaProductOrder.vue
src/components/SalesVisa/VisaProductOrder.vue
+1
-1
visaList2.vue
src/components/VisaCenter/visaList2.vue
+1
-1
config.js
src/router/config.js
+8
-0
No files found.
src/components/FinancialModule/ReportForm/MonthReport.vue
0 → 100644
View file @
f5b9f4e6
This diff is collapsed.
Click to expand it.
src/components/FinancialModule/ReportForm/YearReport.vue
View file @
f5b9f4e6
...
...
@@ -696,8 +696,10 @@ export default {
if
(
this
.
msg
.
QStartDate
==
""
)
this
.
msg
.
QStartDatetartDate
=
"2019-01-01"
;
this
.
apipost
(
'financestatistics_post_GetYearReportList'
,
this
.
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
// console.log(res);
let
allDataList
=
res
.
data
.
data
this
.
DataList
=
res
.
data
.
data
.
list
// console.log("this.DataList111",this.DataList);
this
.
columns
=
[
// 团队编号、团号 点击跳转团控列表
{
...
...
@@ -780,7 +782,7 @@ export default {
componentName
:
"fontColor2"
},
]
console
.
log
(
this
.
DataList
);
this
.
loading
=
false
;
this
.
$message
.
success
(
res
.
data
.
message
)
}
else
{
this
.
loading
=
false
;
...
...
src/components/SalesVisa/OrderSplitting.vue
View file @
f5b9f4e6
...
...
@@ -117,8 +117,10 @@ export default {
methods
:{
// 订单拆分
OrderSplit
(){
this
.
loading
=
true
;
this
.
orderSplitInfo
.
GuestIdStr
=
this
.
checkList
;
this
.
apipost
(
'dmc_post_SetGuestSplitVisaInfo'
,
this
.
orderSplitInfo
,
res
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
){
this
.
$message
.
success
(
res
.
data
.
message
)
this
.
getData
()
...
...
src/components/SalesVisa/VisaProductOrder.vue
View file @
f5b9f4e6
...
...
@@ -188,7 +188,7 @@
<tr>
<td
colspan=
"12"
class=
"RL_Order"
style=
"height:40px;"
>
<span
class=
"VO-remarkTitle"
>
名单:
</span>
<span
class=
"VO-redType VO-remarkCon"
v-if=
"item.GuestList.length>0"
>
<span
class=
"VO-redType VO-remarkCon"
v-if=
"item.GuestList.length>0"
style=
"cursor:pointer"
>
<span
v-for=
"(childItem) in item.GuestList"
style=
"margin-right:10px;"
@
click=
"goUrl2('VisapassengerList',item.Id,'旅客名单')"
>
{{
childItem
.
userName
}}
</span>
</span>
<span
class=
"VO-redType VO-remarkCon"
v-else
>
...
...
src/components/VisaCenter/visaList2.vue
View file @
f5b9f4e6
...
...
@@ -153,7 +153,7 @@
<div
class=
"_br _pr30 _pl30 _font12 ta_l _vlc_info w305"
>
<div
class=
"_mr_20"
>
<p
class=
"_OrderRemarks"
style=
"width: 130px;"
><span>
{{
$t
(
'visa.v_tuanhao'
)
}}
</span>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"
item.OrderId
"
placement=
"top-start"
popper-class=
"max-w250"
>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"
`$
{item.OrderId}`
" placement="top-start" popper-class="max-w250">
<i
class=
"iconfont"
>
{{
item
.
OrderId
}}
</i>
</el-tooltip>
</p>
...
...
src/router/config.js
View file @
f5b9f4e6
...
...
@@ -2403,6 +2403,14 @@ export default {
meta
:
{
title
:
'年度营收报表'
},
},
{
//财务 报表 月度营收报表
path
:
'/MonthReport'
,
name
:
'MonthReport'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/ReportForm/MonthReport'
],
resolve
),
meta
:
{
title
:
'月度营收报表'
},
},
{
path
:
'/JumpReport'
,
name
:
'JumpReport'
,
...
...
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