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
69b9dbe0
Commit
69b9dbe0
authored
Aug 02, 2019
by
黄媛媛
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
f5f7a604
c5fec6c7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
169 additions
and
7 deletions
+169
-7
leaderPayHotelDetail.vue
src/components/LeaderManagement/leaderPayHotelDetail.vue
+71
-0
leaderPayTicketDetail.vue
src/components/LeaderManagement/leaderPayTicketDetail.vue
+71
-0
leaderPay2.vue
src/components/leaderPay2.vue
+13
-7
config.js
src/router/config.js
+14
-0
No files found.
src/components/LeaderManagement/leaderPayHotelDetail.vue
0 → 100644
View file @
69b9dbe0
<
style
>
</
style
>
<
template
>
<div
class=
"flexOne leaderPayHotelDetail"
>
<div
class=
"clearfix"
></div>
<table
class=
"singeRowTable"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
v-loading=
"loading"
>
<tr>
<th
width=
"600px"
>
问题名称
</th>
<th>
类型
</th>
<th>
排序
</th>
<th>
是否显示
</th>
<th
width=
"120px"
>
操作
</th>
</tr>
<tr
v-for=
"item in dataList"
>
<td>
{{
item
.
Title
}}
</td>
<td>
{{
getTypeName
(
item
.
SurveyType
)
}}
</td>
<td>
{{
item
.
Sort
}}
</td>
<td>
{{
item
.
IsShow
===
1
?
'显示'
:
'不显示'
}}
</td>
<td>
asd
</td>
</tr>
</table>
<div
class=
"noDataNotice"
v-if=
"dataList.length
<1
"
>
<i
class=
"iconfont icon-kong"
></i>
<p>
{{
$t
(
"active.ld_noData"
)
}}
</p>
</div>
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
loading
:
false
,
dataList
:
[],
};
},
mounted
()
{
let
TCIDs
=
this
.
$route
.
query
.
TCIDs
;
let
date
=
this
.
$route
.
query
.
date
;
this
.
getList
(
TCIDs
,
date
);
},
filters
:
{},
methods
:
{
//获取数据
getList
(
TCIDs
)
{
this
.
loading
=
true
;
this
.
apipost
(
"dmcstatistics_post_GetNewLeaderPayMoneyStatics"
,
{
TCIDs
:
TCIDs
},
res
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
===
1
)
{
this
.
dataList
=
res
.
data
.
data
;
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
null
);
},
}
};
</
script
>
\ No newline at end of file
src/components/LeaderManagement/leaderPayTicketDetail.vue
0 → 100644
View file @
69b9dbe0
<
style
>
</
style
>
<
template
>
<div
class=
"flexOne leaderPayTicketDetail"
>
<div
class=
"clearfix"
></div>
<table
class=
"singeRowTable"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
v-loading=
"loading"
>
<tr>
<th
width=
"600px"
>
问题名称
</th>
<th>
类型
</th>
<th>
排序
</th>
<th>
是否显示
</th>
<th
width=
"120px"
>
操作
</th>
</tr>
<tr
v-for=
"item in dataList"
>
<td>
{{
item
.
Title
}}
</td>
<td>
{{
getTypeName
(
item
.
SurveyType
)
}}
</td>
<td>
{{
item
.
Sort
}}
</td>
<td>
{{
item
.
IsShow
===
1
?
'显示'
:
'不显示'
}}
</td>
<td>
asd
</td>
</tr>
</table>
<div
class=
"noDataNotice"
v-if=
"dataList.length
<1
"
>
<i
class=
"iconfont icon-kong"
></i>
<p>
{{
$t
(
"active.ld_noData"
)
}}
</p>
</div>
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
loading
:
false
,
dataList
:
[],
};
},
mounted
()
{
let
TCIDs
=
this
.
$route
.
query
.
TCIDs
;
let
date
=
this
.
$route
.
query
.
date
;
this
.
getList
(
TCIDs
,
date
);
},
filters
:
{},
methods
:
{
//获取数据
getList
()
{
this
.
loading
=
true
;
this
.
apipost
(
"dmcstatistics_post_GetNewLeaderPayMoneyStatics"
,
{
TCIDs
:
TCIDs
},
res
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
===
1
)
{
this
.
dataList
=
res
.
data
.
data
;
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
null
);
},
}
};
</
script
>
\ No newline at end of file
src/components/leaderPay2.vue
View file @
69b9dbe0
...
...
@@ -179,7 +179,7 @@ input[type="number"] {
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.TicketPriceList.length"
>
{{
subItem
.
Remarks
}}
</td>
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.TicketPriceList.length"
><span
class=
"cursorpointer text-decoratio"
@
click=
"godetail('ticket',
child
Item)"
>
明细
</span></td>
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.TicketPriceList.length"
><span
class=
"cursorpointer text-decoratio"
@
click=
"godetail('ticket',
sub
Item)"
>
明细
</span></td>
</tr>
</
template
>
</template>
...
...
@@ -314,7 +314,7 @@ input[type="number"] {
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.DiningPriceList.length"
>
{{
subItem
.
Remarks
}}
</td>
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.DiningPriceList.length"
><span
class=
"cursorpointer text-decoratio"
@
click=
"godetail('dining',
child
Item)"
>
明细
</span></td>
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.DiningPriceList.length"
><span
class=
"cursorpointer text-decoratio"
@
click=
"godetail('dining',
sub
Item)"
>
明细
</span></td>
</tr>
</
template
>
</template>
...
...
@@ -440,7 +440,7 @@ input[type="number"] {
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.OrderDetailsList.length"
>
{{subItem.Remarks}}
</td>
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.OrderDetailsList.length"
><span
class=
"cursorpointer text-decoratio"
@
click=
"godetail('hotel',
child
Item)"
>
明细
</span></td>
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.OrderDetailsList.length"
><span
class=
"cursorpointer text-decoratio"
@
click=
"godetail('hotel',
sub
Item)"
>
明细
</span></td>
</tr>
</template>
</template>
...
...
@@ -936,19 +936,25 @@ export default {
};
},
methods
:
{
// 全部明细
godetailAll
:
function
(){
},
// 明细
godetail
:
function
(
name
,
obj
)
{
let
path
=
""
,
TCIDs
=
obj
.
TCIDs
;
let
path
=
""
,
TCIDs
=
this
.
msg
.
TCIDs
,
date
=
''
;
if
(
name
==
'ticket'
)
{
path
=
'leaderPayTicketDetail'
date
=
obj
.
UseTimeStr
}
else
if
(
name
===
'bus'
)
{
}
else
if
(
name
===
'dining'
)
{
}
else
if
(
name
===
'hotel'
)
{
path
=
'leaderPayHotelDetail'
date
=
obj
.
CheckInDateStr
}
let
fullPath
=
`/
${
path
}
?TCIDs=
${
TCIDs
}
`
;
let
fullPath
=
`/
${
path
}
?TCIDs=
${
TCIDs
}
&date=
${
date
}
`
;
let
dom
=
document
.
querySelector
(
"#blankLink"
);
dom
.
href
=
`http://
${
window
.
location
.
host
}
/#
${
fullPath
}
`
;
dom
.
click
();
...
...
src/router/config.js
View file @
69b9dbe0
...
...
@@ -1392,6 +1392,20 @@ export default {
meta
:
{
title
:
'领队绩效'
},
},
{
path
:
'/leaderPayHotelDetail'
,
//j酒店报账详情
name
:
'leaderPayHotelDetail'
,
component
:
resolve
=>
require
([
'@/components/LeaderManagement/leaderPayHotelDetail'
],
resolve
),
meta
:
{
title
:
'领队绩效'
},
},
{
path
:
'/leaderPayTicketDetail'
,
//j门票报账详情
name
:
'leaderPayTicketDetail'
,
component
:
resolve
=>
require
([
'@/components/LeaderManagement/leaderPayTicketDetail'
],
resolve
),
meta
:
{
title
:
'领队绩效'
},
},
{
path
:
'/leaderChedule'
,
//领队档期
name
:
'leaderChedule'
,
...
...
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