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
a0aad2f0
Commit
a0aad2f0
authored
May 21, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增销售排行弹窗组件
parent
914f55e2
Show whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
146 additions
and
12 deletions
+146
-12
bg.png
src/assets/img/saleRank/bg.png
+0
-0
diertou.png
src/assets/img/saleRank/diertou.png
+0
-0
disantou.png
src/assets/img/saleRank/disantou.png
+0
-0
diyitou.png
src/assets/img/saleRank/diyitou.png
+0
-0
jiangpai2.png
src/assets/img/saleRank/jiangpai2.png
+0
-0
jiangpai3.png
src/assets/img/saleRank/jiangpai3.png
+0
-0
jiangpai4.png
src/assets/img/saleRank/jiangpai4.png
+0
-0
jiangpai5.png
src/assets/img/saleRank/jiangpai5.png
+0
-0
Details.vue
src/components/Details.vue
+6
-0
index.vue
src/components/FinanceHome/index.vue
+59
-0
FinancialDocumentsDetail.vue
src/components/FinancialModule/FinancialDocumentsDetail.vue
+1
-1
saleRnk.vue
src/components/SalesModule/saleRnk.vue
+27
-0
phonePDF.vue
src/components/commonPage/phonePDF.vue
+24
-0
index.vue
src/components/index.vue
+10
-3
leaderPay2.vue
src/components/leaderPay2.vue
+5
-5
finance.vue
src/components/temp/finance.vue
+6
-3
config.js
src/router/config.js
+8
-0
No files found.
src/assets/img/saleRank/bg.png
0 → 100644
View file @
a0aad2f0
65.8 KB
src/assets/img/saleRank/diertou.png
0 → 100644
View file @
a0aad2f0
632 Bytes
src/assets/img/saleRank/disantou.png
0 → 100644
View file @
a0aad2f0
657 Bytes
src/assets/img/saleRank/diyitou.png
0 → 100644
View file @
a0aad2f0
1.29 KB
src/assets/img/saleRank/jiangpai2.png
0 → 100644
View file @
a0aad2f0
1.47 KB
src/assets/img/saleRank/jiangpai3.png
0 → 100644
View file @
a0aad2f0
1.44 KB
src/assets/img/saleRank/jiangpai4.png
0 → 100644
View file @
a0aad2f0
1.43 KB
src/assets/img/saleRank/jiangpai5.png
0 → 100644
View file @
a0aad2f0
1.45 KB
src/components/Details.vue
View file @
a0aad2f0
...
...
@@ -906,6 +906,9 @@ export default {
next
()
}
});
this
.
$nextTick
(
function
(){
document
.
title
=
this
.
$route
.
meta
.
title
?
this
.
$route
.
meta
.
title
+
'-四川和平国际旅行社'
:
'四川和平国际旅行社'
})
}
},
beforeDestroy
()
{
...
...
@@ -914,5 +917,8 @@ export default {
if
(
this
.
tabs
.
length
>
0
)
window
.
localStorage
.
navTabs
=
JSON
.
stringify
(
this
.
tabs
)
},
created
(){
// document.title = this.$route.meta.title ? this.$route.meta.title + '-四川和平国际旅行社' : '四川和平国际旅行社'
}
};
</
script
>
src/components/FinanceHome/index.vue
0 → 100644
View file @
a0aad2f0
<
style
>
</
style
>
<
template
>
<el-row>
<el-row>
<el-tabs
type=
"card"
>
<el-tab-pane
v-for=
"(item, index) in companyList"
:key=
"item.Id"
:label=
"item.BName"
:name=
"item.BName"
>
{{
item
.
content
}}
</el-tab-pane>
</el-tabs>
</el-row>
</el-row>
</
template
>
<
script
>
export
default
{
data
(){
return
{
companyList
:
[]
}
},
mounted
(){
this
.
getCompanyList
()
},
methods
:{
getCompanyList
()
{
let
userInfo
=
this
.
getLocalStorage
();
let
RB_Group_id
=
userInfo
.
RB_Group_id
;
let
msg
=
{
Status
:
0
,
is_show
:
0
,
RB_Group_Id
:
RB_Group_id
}
this
.
apipost
(
'admin_get_BranchGetList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
res
.
data
.
data
.
forEach
(
x
=>
{
var
obj
=
{
Id
:
''
,
BName
:
''
}
obj
.
Id
=
x
.
Id
.
toString
();
obj
.
BName
=
x
.
BName
;
this
.
companyList
.
push
(
obj
);
})
}
},
err
=>
{})
},
goUrl
(
path
,
id
)
{
this
.
$router
.
push
({
path
:
"Details"
,
query
:{
path
,
id
}
})
},
}
}
</
script
>
src/components/FinancialModule/FinancialDocumentsDetail.vue
View file @
a0aad2f0
...
...
@@ -377,7 +377,7 @@
<td
v-if=
"OrderSource==9&&GetDetail.SourceID>0"
@
click=
"jumpPage('FinancialOrder',GetDetail,2)"
>
<span
class=
"_jump_page _font_bold"
>
国内票务
</span>
</td>
<td
v-else-if=
"OrderSource==10&&GetDetail.SourceID>0"
@
click=
"jumpPage('FinancialOrder',GetDetail,3)"
>
<span
class=
"_jump_page _font_bold"
>
签证收支
</span>
</td>
<td
v-else-if=
"OrderSource==4&&GetDetail.SourceID>0"
@
click=
"jumpPage('FinancialOrder',GetDetail,4)"
>
<span
class=
"_jump_page _font_bold"
>
机票收支
</span>
</td>
<td
v-if=
"GetDetail.TemplateId === 43 || GetDetail.TemplateId === 48"
@
click=
"jumpPlanPage('leaderReimbursement',o.TCID)"
>
<span
class=
"_jump_page _font_bold"
>
用款计划
</span>
</td>
<td
v-if=
"GetDetail.TemplateId === 43 || GetDetail.TemplateId === 48
|| GetDetail.TemplateId === 53
"
@
click=
"jumpPlanPage('leaderReimbursement',o.TCID)"
>
<span
class=
"_jump_page _font_bold"
>
用款计划
</span>
</td>
</tr>
</table>
<table
border=
"1"
bordercolor=
"#D2D2D2"
style=
"border-collapse:collapse;margin-top:15px;"
width=
"100%"
v-else-if=
"OrderSource==10"
>
...
...
src/components/SalesModule/saleRnk.vue
0 → 100644
View file @
a0aad2f0
<
style
>
.saleRankDialog
.top
{
}
</
style
>
<
template
>
<el-row
class=
"saleRankDialog"
>
<el-row
class=
"top"
>
<img
src=
"../../assets/img/saleRank/bg.png"
alt=
""
>
</el-row>
</el-row>
</
template
>
<
script
>
export
default
{
data
(){
return
{
}
},
mounted
(){
},
methods
:{
}
}
</
script
>
src/components/commonPage/phonePDF.vue
0 → 100644
View file @
a0aad2f0
<
style
>
</
style
>
<
template
>
<div
id=
"showPDF"
>
</div>
</
template
>
<
script
>
export
default
{
data
(){
return
{
}
},
created
(){
alert
(
123
)
},
methods
:{
},
mounted
(){
let
mynode
=
document
.
getElementById
(
"showPDF"
);
PDFObject
.
embed
(
"https://reborndev.oss-cn-hangzhou.aliyuncs.com/Upload/Cloud/2019-02/dYdRFRrBtA8Cb5mR8NEdamwCwdfzMQ8F.pdf"
,
mynode
);
}
}
</
script
>
src/components/index.vue
View file @
a0aad2f0
...
...
@@ -840,7 +840,9 @@
</div>
</el-dialog>
<a
class=
"weOytour"
ref=
"weOytour"
href=
"http://we.oytour.com:8110/"
target=
"view_window"
>
Preface
</a>
<el-dialog
custom-class=
'w800 PingFangSC _saleRnk'
title=
"销售排行"
:visible
.
sync=
"saleRnkShow"
center
:before-close=
"closeChangeMachie"
>
<saleRnk/>
</el-dialog>
<div
v-show=
"mazip==0"
id=
"downzip"
>
<div>
<div>
...
...
@@ -868,15 +870,18 @@ import emojiObj from "../configs/emoji";
import
loading
from
"./commonPage/loading"
;
import
VueDraggableResizable
from
"vue-draggable-resizable"
;
import
{
setInterval
,
clearInterval
}
from
'timers'
;
import
saleRnk
from
"./SalesModule/saleRnk"
;
export
default
{
components
:
{
ChatList
,
ChatEditor
,
loading
,
VueDraggableResizable
VueDraggableResizable
,
saleRnk
},
data
()
{
return
{
saleRnkShow
:
false
,
dialogTitleNot
:
''
,
outerVisibleNot
:
false
,
downmz
:
false
,
...
...
@@ -4225,5 +4230,7 @@ export default {
margin-top:-30px;
margin-left:155px;
}
._saleRnk.el-dialog--center .el-dialog__body{
padding: 0;
}
</
style
>
src/components/leaderPay2.vue
View file @
a0aad2f0
...
...
@@ -201,10 +201,10 @@ input[type="number"] {
<td>
自费收入
</td>
<td>
{{moneyFormat(totalList.SelfPayingIncomeTotalPrice)}}
</td>
</tr>
<tr
v-show=
"totalList.IncomeTotalPrice>0"
>
<
!-- <
tr v-show="totalList.IncomeTotalPrice>0">
<td>消费收入</td>
<td>{{moneyFormat(totalList.IncomeTotalPrice)}}</td>
</tr>
</tr>
-->
<tr
v-show=
"(totalList.ExpendTotalPrice-totalScenicPrice-totalTrafficPrice-totalDinnerPrice-totalHotelPrice)>0"
>
...
...
@@ -269,7 +269,7 @@ input[type="number"] {
<span>
{{
subItem
.
Money
}}
</span>
</td>
<td>
<span>
{{
subItem
.
HangingAccountsTypeStr
}}
</span>
<span>
{{
subItem
.
TypeName
}}
</span>
</td>
<td>
<span>
{{
subItem
.
RemitterName
}}
:
{{
subItem
.
AccountNumber
}}
</span>
...
...
@@ -278,10 +278,10 @@ input[type="number"] {
<span>
{{
subItem
.
StatusStr
}}
</span>
</td>
<td>
<span>
{{
subItem
.
CreateDate
Str
}}
</span>
<span>
{{
subItem
.
CreateDate
}}
</span>
</td>
<td>
<span>
{{
subItem
.
c
reateByStr
}}
</span>
<span>
{{
subItem
.
C
reateByStr
}}
</span>
</td>
</tr>
</
template
>
...
...
src/components/temp/finance.vue
View file @
a0aad2f0
...
...
@@ -7,11 +7,13 @@
<
template
>
<div>
<leftNav></leftNav>
<!--
<FinanceHome/>
-->
</div>
</
template
>
<
script
>
import
leftNav
from
'../public/leftNav.vue'
import
FinanceHome
from
'../FinanceHome/index.vue'
export
default
{
data
(){
return
{
...
...
@@ -19,7 +21,8 @@
}
},
components
:{
leftNav
leftNav
,
FinanceHome
},
mounted
(){
...
...
src/router/config.js
View file @
a0aad2f0
...
...
@@ -1875,6 +1875,14 @@ export default {
title
:
'签证产品'
},
},
{
// 销售 排行榜
path
:
'/saleRnk'
,
name
:
'saleRnk'
,
component
:
resolve
=>
require
([
'@/components/SalesModule/saleRnk'
],
resolve
),
meta
:
{
title
:
'签证产品'
},
},
{
//配置签证产品
path
:
'/ModifyVisaProduct'
,
name
:
'ModifyVisaProduct'
,
...
...
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