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
4e94ccbf
Commit
4e94ccbf
authored
Dec 18, 2019
by
黄奎
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
51fc71d6
3648b8dc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
601 additions
and
0 deletions
+601
-0
FinancialDocumentsDetail.vue
src/components/FinancialModule/FinancialDocumentsDetail.vue
+14
-0
HotelDiscount.vue
src/components/Hotel/HotelDiscount.vue
+568
-0
HotelProductManage2.vue
src/components/Hotel/HotelProductManage2.vue
+11
-0
config.js
src/router/config.js
+8
-0
No files found.
src/components/FinancialModule/FinancialDocumentsDetail.vue
View file @
4e94ccbf
...
...
@@ -397,6 +397,7 @@
<span
v-if=
"(GetDetail.TemplateId==29 || GetDetail.TemplateId==31) && OPState"
@
click=
"GoOPurl(GetDetail)"
style=
"cursor: pointer;float: right;color: #000;font-size: 14px;text-decoration: underline;"
>
提成详情
</span>
<span
v-if=
"CostTypeState"
@
click=
"GourlCostType('VisitRecord',1)"
style=
"margin:0 10px;cursor: pointer;float: right;color: #000;font-size: 14px;text-decoration: underline;"
>
拜访记录
</span>
<span
v-if=
"CostTypeState"
@
click=
"GourlCostType('yingyanMap',2)"
style=
"cursor: pointer;float: right;color: #000;font-size: 14px;text-decoration: underline;"
>
鹰眼轨迹
</span>
<span
v-if=
"OtherType!=''"
@
click=
"GourlHotelZr"
style=
"cursor: pointer;float: right;color: #000;font-size: 14px;text-decoration: underline;"
>
酒店折让
</span>
</p>
<table
border=
"1"
bordercolor=
"#D2D2D2"
style=
"border-collapse:collapse;margin-top:15px;"
width=
"100%"
v-if=
"GetDetail.TCIDAndTCNUMList.length>0"
>
<tr
v-for=
"(o,ox) in GetDetail.TCIDAndTCNUMList"
class=
"_fujiashuoming_tr"
>
...
...
@@ -926,6 +927,7 @@ export default {
showModel
:
false
,
CostTypeState
:
false
,
huijiShow
:
false
,
OtherType
:
''
,
}
},
components
:{
'my-FlowChartModule'
:
myFlowChartModule
,
...
...
@@ -952,7 +954,19 @@ export default {
if
(
ActionMenuCode
.
indexOf
(
'F_Update_KJCostType'
)
!=-
1
){
this
.
huijiShow
=
true
;
}
this
.
OtherType
=
this
.
$route
.
query
.
OtherType
?
this
.
$route
.
query
.
OtherType
:
''
;
},
methods
:{
GourlHotelZr
(){
this
.
$router
.
push
({
name
:
'HotelDiscount'
,
query
:
{
FinanceId
:
this
.
ID
,
blank
:
"y"
,
tab
:
"酒店折让"
}
});
},
GourlCostType
(
path
,
num
){
this
.
$router
.
push
({
name
:
path
,
...
...
src/components/Hotel/HotelDiscount.vue
0 → 100644
View file @
4e94ccbf
This diff is collapsed.
Click to expand it.
src/components/Hotel/HotelProductManage2.vue
View file @
4e94ccbf
...
...
@@ -110,6 +110,7 @@
<div
class=
"hotelProductManage2_edit2_header"
>
<div>
{{$t('restaurant.res_bidManage')}}
</div>
<div>
<input
type=
"button"
value=
"酒店折让"
@
click=
"goHotelDiscount('HotelDiscount')"
class=
"hollowbtn"
/>
<input
type=
"button"
:value=
"$t('ground.piliangshanchu')"
@
click=
"delete2Reset()"
class=
"hollowbtn"
/>
<input
type=
"button"
:value=
"$t('ground.chongzhi')"
@
click=
"edit2Reset()"
class=
"hollowFixedBtn"
/>
<input
type=
"button"
:value=
"$t('pub.saveBtn')"
@
click=
"edit2Save()"
class=
"normalBtn"
/>
...
...
@@ -890,6 +891,16 @@
}
},
methods
:
{
goHotelDiscount
(
path
)
{
this
.
$router
.
push
({
name
:
path
,
query
:
{
blank
:
"y"
,
NewHotelID
:
this
.
hotelId
,
}
});
},
//库存类型
stockColor
:
function
(
item
,
item2
,
childItem
)
{
if
(
item
.
date
===
item2
.
month
&&
item2
.
hasOwnProperty
(
'data'
))
{
...
...
src/router/config.js
View file @
4e94ccbf
...
...
@@ -818,6 +818,14 @@ export default {
title
:
'酒店产品管理2'
},
},
{
path
:
'/HotelDiscount'
,
//酒店折让
name
:
'HotelDiscount'
,
component
:
resolve
=>
require
([
'@/components/Hotel/HotelDiscount'
],
resolve
),
meta
:
{
title
:
'酒店折让'
},
},
{
path
:
'/HotelProductEdit'
,
//酒店产品编辑
name
:
'HotelProductEdit'
,
...
...
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