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
c23853a7
Commit
c23853a7
authored
Dec 06, 2019
by
黄媛媛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
营收报表新增跳转
parent
5142d800
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
3 deletions
+21
-3
TeamRevenueReport.vue
...mponents/FinancialModule/ReportForm/TeamRevenueReport.vue
+10
-3
FoodOrder.vue
src/components/Restaurant/FoodOrder.vue
+4
-0
HotelOrderTotal.vue
src/components/TravelManager/TravelList/HotelOrderTotal.vue
+3
-0
ScenTicketOrder.vue
src/components/scenicSpot/ScenTicketOrder.vue
+4
-0
No files found.
src/components/FinancialModule/ReportForm/TeamRevenueReport.vue
View file @
c23853a7
...
@@ -708,9 +708,9 @@ Vue.component("TCNUMJump", {
...
@@ -708,9 +708,9 @@ Vue.component("TCNUMJump", {
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===13" @click="goRec('RecPayQuery',rowData)">机票折让{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===13" @click="goRec('RecPayQuery',rowData)">机票折让{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===14" @click="goSAirRec('TicketManager',rowData)">{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===14" @click="goSAirRec('TicketManager',rowData)">{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===8" @click="goAIR('RecPayQuery',rowData)">{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===8" @click="goAIR('RecPayQuery',rowData)">{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===9">{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===9"
@click="goHotelOrder('HotelOrderTotal',rowData)"
>{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===10">{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===10"
@click="goHotelOrder('FoodOrder',rowData)"
>{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===11">{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===11"
@click="goHotelOrder('ScenTicketOrder',rowData)"
>{{rowData.TCNUM}}</span>
</div>`
,
</div>`
,
props
:
{
props
:
{
rowData
:
{
rowData
:
{
...
@@ -724,6 +724,13 @@ Vue.component("TCNUMJump", {
...
@@ -724,6 +724,13 @@ Vue.component("TCNUMJump", {
}
}
},
},
methods
:
{
methods
:
{
goHotelOrder
(
path
,
rowData
){
console
.
log
(
"rowData"
,
rowData
.
DataType
)
this
.
$router
.
push
({
path
:
"/"
+
path
,
query
:
{
'teamTCID'
:
rowData
.
TCID
,
blank
:
"y"
}
});
},
goRec
(
path
,
rowData
){
goRec
(
path
,
rowData
){
let
BankID
=
""
;
let
BankID
=
""
;
let
StartDate
=
""
;
let
StartDate
=
""
;
...
...
src/components/Restaurant/FoodOrder.vue
View file @
c23853a7
...
@@ -242,7 +242,11 @@ export default {
...
@@ -242,7 +242,11 @@ export default {
}
}
},
},
mounted
()
{
mounted
()
{
if
(
this
.
$route
.
query
.
teamTCID
){
this
.
msg
.
searchKey
=
this
.
$route
.
query
.
teamTCID
;
}
this
.
getList
();
this
.
getList
();
}
}
};
};
</
script
>
</
script
>
...
...
src/components/TravelManager/TravelList/HotelOrderTotal.vue
View file @
c23853a7
...
@@ -788,6 +788,9 @@ export default {
...
@@ -788,6 +788,9 @@ export default {
}
}
},
},
mounted
()
{
mounted
()
{
if
(
this
.
$route
.
query
.
teamTCID
){
this
.
msg
.
HotelName
=
this
.
$route
.
query
.
teamTCID
;
}
let
userInfo
=
this
.
getLocalStorage
();
let
userInfo
=
this
.
getLocalStorage
();
this
.
getCompanyMsg
.
RB_Group_Id
=
userInfo
.
RB_Group_id
;
//集团
this
.
getCompanyMsg
.
RB_Group_Id
=
userInfo
.
RB_Group_id
;
//集团
this
.
getDepartmentMsg
.
RB_Branch_Id
=
userInfo
.
RB_Branch_id
;
//公司
this
.
getDepartmentMsg
.
RB_Branch_Id
=
userInfo
.
RB_Branch_id
;
//公司
...
...
src/components/scenicSpot/ScenTicketOrder.vue
View file @
c23853a7
...
@@ -684,10 +684,14 @@ export default {
...
@@ -684,10 +684,14 @@ export default {
}
}
},
},
mounted
()
{
mounted
()
{
if
(
this
.
$route
.
query
.
teamTCID
){
this
.
msg
.
searchKey
=
this
.
$route
.
query
.
teamTCID
;
}
let
userInfo
=
this
.
getLocalStorage
();
let
userInfo
=
this
.
getLocalStorage
();
this
.
getCompanyMsg
.
RB_Group_Id
=
userInfo
.
RB_Group_id
;
//集团
this
.
getCompanyMsg
.
RB_Group_Id
=
userInfo
.
RB_Group_id
;
//集团
this
.
getDepartmentMsg
.
RB_Branch_Id
=
userInfo
.
RB_Branch_id
;
//公司
this
.
getDepartmentMsg
.
RB_Branch_Id
=
userInfo
.
RB_Branch_id
;
//公司
this
.
msg
.
CreateBy
=
userInfo
.
EmployeeId
;
this
.
msg
.
CreateBy
=
userInfo
.
EmployeeId
;
this
.
getCompanyList
()
this
.
getCompanyList
()
// this.getDepartment()
// this.getDepartment()
// this.getEmployee()
// this.getEmployee()
...
...
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