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
80eb1639
Commit
80eb1639
authored
Mar 21, 2019
by
zhengke
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
649bc3da
b74f936d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
5 deletions
+8
-5
App.vue
src/App.vue
+1
-1
TeamRevenueReport.vue
...mponents/FinancialModule/ReportForm/TeamRevenueReport.vue
+5
-2
VisaProductEditOrder.vue
src/components/SalesVisa/VisaProductEditOrder.vue
+1
-1
LuckyDraw.vue
src/components/activity/LuckyDraw.vue
+1
-1
No files found.
src/App.vue
View file @
80eb1639
...
@@ -108,7 +108,7 @@ export default {
...
@@ -108,7 +108,7 @@ export default {
}
}
</
script
>
</
script
>
<
style
>
<
style
>
@import
"//at.alicdn.com/t/font_635492_
p33f7rq158p
.css"
;
@import
"//at.alicdn.com/t/font_635492_
zhaw2pckn4j
.css"
;
@import
"./assets/css/Semibold.css"
;
@import
"./assets/css/Semibold.css"
;
@import
"./assets/css/global/config.css"
;
@import
"./assets/css/global/config.css"
;
@import
"./assets/css/fileIcon.css"
;
@import
"./assets/css/fileIcon.css"
;
...
...
src/components/FinancialModule/ReportForm/TeamRevenueReport.vue
View file @
80eb1639
...
@@ -1346,8 +1346,11 @@ export default {
...
@@ -1346,8 +1346,11 @@ export default {
this
.
msg
.
startDate
=
this
.
$route
.
query
.
StartTime
!=
undefined
?
this
.
$route
.
query
.
StartTime
:
''
;
this
.
msg
.
startDate
=
this
.
$route
.
query
.
StartTime
!=
undefined
?
this
.
$route
.
query
.
StartTime
:
''
;
this
.
msg
.
endDate
=
this
.
$route
.
query
.
EndTime
!=
undefined
?
this
.
$route
.
query
.
EndTime
:
''
;
this
.
msg
.
endDate
=
this
.
$route
.
query
.
EndTime
!=
undefined
?
this
.
$route
.
query
.
EndTime
:
''
;
this
.
msg
.
LineId
=
this
.
$route
.
query
.
LineId
!=
undefined
?
Number
(
this
.
$route
.
query
.
LineId
):
''
;
this
.
msg
.
LineId
=
this
.
$route
.
query
.
LineId
!=
undefined
?
Number
(
this
.
$route
.
query
.
LineId
):
''
;
this
.
productionDate
[
0
]
=
this
.
msg
.
startDate
;
if
(
this
.
msg
.
endDate
!=
""
){
this
.
productionDate
[
1
]
=
this
.
msg
.
endDate
;
this
.
productionDate
[
0
]
=
this
.
msg
.
startDate
;
this
.
productionDate
[
1
]
=
this
.
msg
.
endDate
;
}
if
(
this
.
msg
.
LineId
>
0
){
if
(
this
.
msg
.
LineId
>
0
){
this
.
msg
.
DataType
=
"1"
;
this
.
msg
.
DataType
=
"1"
;
}
}
...
...
src/components/SalesVisa/VisaProductEditOrder.vue
View file @
80eb1639
...
@@ -157,7 +157,7 @@
...
@@ -157,7 +157,7 @@
<el-tooltip
v-else
class=
"item"
effect=
"dark"
content=
"修改备注"
placement=
"top-start"
>
<el-tooltip
v-else
class=
"item"
effect=
"dark"
content=
"修改备注"
placement=
"top-start"
>
<el-button
type=
"primary"
style=
'background:#409EFF; border-color:#409EFF'
icon=
"iconfont icon-img_bianji_small"
@
click=
'getDetail(item,true)'
></el-button>
<el-button
type=
"primary"
style=
'background:#409EFF; border-color:#409EFF'
icon=
"iconfont icon-img_bianji_small"
@
click=
'getDetail(item,true)'
></el-button>
</el-tooltip>
</el-tooltip>
<el-tooltip
v-if=
"item.visaOrderStatus==1
&&item.visaStatus==1
"
effect=
"dark"
content=
"结算"
placement=
"top-start"
>
<el-tooltip
v-if=
"item.visaOrderStatus==1"
effect=
"dark"
content=
"结算"
placement=
"top-start"
>
<el-button
type=
"primary"
style=
'background:#5EBB64; border-color:#5EBB64'
@
click=
'goUrl(item)'
icon=
"iconfont icon-qian"
></el-button>
<el-button
type=
"primary"
style=
'background:#5EBB64; border-color:#5EBB64'
@
click=
'goUrl(item)'
icon=
"iconfont icon-qian"
></el-button>
</el-tooltip>
</el-tooltip>
<el-tooltip
v-if=
"item.visaOrderStatus==1&&item.visaStatus==1"
effect=
"dark"
content=
"旅客名单"
placement=
"top-start"
>
<el-tooltip
v-if=
"item.visaOrderStatus==1&&item.visaStatus==1"
effect=
"dark"
content=
"旅客名单"
placement=
"top-start"
>
...
...
src/components/activity/LuckyDraw.vue
View file @
80eb1639
...
@@ -135,7 +135,7 @@
...
@@ -135,7 +135,7 @@
<th>
{{
$t
(
'admin.admin_company'
)
}}
</th>
<th>
{{
$t
(
'admin.admin_company'
)
}}
</th>
<th>
{{
$t
(
'active.ld_cjcs'
)
}}
</th>
<th>
{{
$t
(
'active.ld_cjcs'
)
}}
</th>
<th>
{{
$t
(
'hotel.hotel_StartDate'
)
}}
</th>
<th>
{{
$t
(
'hotel.hotel_StartDate'
)
}}
</th>
<th>
{{
$t
(
'hotel.hotel_
Start
Date'
)
}}
</th>
<th>
{{
$t
(
'hotel.hotel_
End
Date'
)
}}
</th>
<th>
{{
$t
(
'active.ld_status'
)
}}
</th>
<th>
{{
$t
(
'active.ld_status'
)
}}
</th>
<th
width=
"400"
>
{{
$t
(
'hotel.hotel_remark'
)
}}
</th>
<th
width=
"400"
>
{{
$t
(
'hotel.hotel_remark'
)
}}
</th>
<th>
{{
$t
(
'hotel.table_operat'
)
}}
</th>
<th>
{{
$t
(
'hotel.table_operat'
)
}}
</th>
...
...
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