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
069dcfb8
Commit
069dcfb8
authored
Jan 04, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
c3750d2a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
4 deletions
+48
-4
GroupRateQuery.vue
src/components/FinancialModule/GroupRateQuery.vue
+47
-4
index.vue
src/components/index.vue
+1
-0
No files found.
src/components/FinancialModule/GroupRateQuery.vue
View file @
069dcfb8
...
@@ -233,6 +233,26 @@
...
@@ -233,6 +233,26 @@
/
deep
/
.line-heigh
.el-input-number
{
/
deep
/
.line-heigh
.el-input-number
{
line-height
:
32px
;
line-height
:
32px
;
}
}
.TC_teamType
{
position
:
absolute
;
left
:
0px
;
top
:
-29px
;
}
.TC_teamType
span
{
width
:
20px
;
height
:
20px
;
float
:
left
;
margin
:
2px
0
0
2px
;
border-radius
:
50%
;
line-height
:
20px
;
text-align
:
center
;
background-color
:
#E95252
;
/* transform: scale(0.8); */
color
:
#fff
;
}
/
deep
/
.el-table
.cell
{
overflow
:
inherit
!important
;
}
</
style
>
</
style
>
<
template
>
<
template
>
...
@@ -302,16 +322,28 @@
...
@@ -302,16 +322,28 @@
@
selection-change=
"handleSelectionChange"
>
@
selection-change=
"handleSelectionChange"
>
<el-table-column
<el-table-column
type=
"selection"
type=
"selection"
:selectable=
"selected"
width=
"55"
>
width=
"55"
>
</el-table-column>
</el-table-column>
<el-table-column
<el-table-column
prop=
"TCID"
prop=
"TCID"
label=
"团ID"
label=
"团ID"
width=
"
5
0"
/>
width=
"
8
0"
/>
<el-table-column
<el-table-column
prop=
"TCNUM"
prop=
"TCNUM"
label=
"团号"
label=
"团号"
width=
"170"
/>
width=
"190"
>
<
template
slot-scope=
"scope"
>
<div
style=
"position: relative;"
>
{{
scope
.
row
.
TCNUM
}}
<div
class=
"TC_teamType"
v-if=
"scope.row.TCStatus!=1"
>
<span
v-if=
"scope.row.TCStatus==2"
title=
"结团"
style=
"background: #ff9c00;"
>
团
</span>
<span
v-if=
"scope.row.TCStatus==5"
title=
"结团审核中"
style=
"background: #2aaef2;"
>
审
</span>
</div>
</div>
</
template
>
</el-table-column>
<el-table-column
<el-table-column
prop=
"OutBranchName"
prop=
"OutBranchName"
label=
"出团公司"
label=
"出团公司"
...
@@ -466,6 +498,7 @@ import Vue from 'vue'
...
@@ -466,6 +498,7 @@ import Vue from 'vue'
export
default
{
export
default
{
data
(){
data
(){
return
{
return
{
single
:
true
,
msg
:{
msg
:{
pageIndex
:
1
,
pageIndex
:
1
,
pageSize
:
5
,
pageSize
:
5
,
...
@@ -598,16 +631,26 @@ export default {
...
@@ -598,16 +631,26 @@ export default {
})
})
},
},
handleSelectionChange
(
val
)
{
handleSelectionChange
(
val
)
{
// this.ids = val.map(item => item.TCStatus);// 需要根据数据情况调整id名称
// this.single = val.length != 1;
console
.
log
(
val
,
'---'
)
this
.
multipleSelection
=
val
;
this
.
multipleSelection
=
val
;
},
},
handleCurrentChanges
(
val
){
handleCurrentChanges
(
val
){
this
.
msg
.
pageIndex
=
val
;
this
.
msg
.
pageIndex
=
val
;
this
.
getPageList
();
this
.
getPageList
();
},
},
selected
(
row
,
index
)
{
if
(
row
.
TCStatus
!=
1
)
{
return
false
;
//不可勾选
}
else
{
return
true
;
//可勾选
}
},
getPageList
(){
// 获取列表数据
getPageList
(){
// 获取列表数据
if
(
this
.
transactionDate
){
if
(
this
.
transactionDate
){
this
.
msg
.
QStartDate
=
this
.
transactionDate
[
0
]
this
.
msg
.
QStartDate
=
this
.
transactionDate
[
0
]
?
'2019-01-01'
:
''
this
.
msg
.
QEndDate
=
this
.
transactionDate
[
1
]
this
.
msg
.
QEndDate
=
this
.
transactionDate
[
1
]
?
'2019-02-01'
:
''
}
}
this
.
loading
=
true
;
this
.
loading
=
true
;
this
.
apipost
(
'Financial_post_GetTravelFinanceRateSetPageList'
,
this
.
msg
,
res
=>
{
this
.
apipost
(
'Financial_post_GetTravelFinanceRateSetPageList'
,
this
.
msg
,
res
=>
{
...
...
src/components/index.vue
View file @
069dcfb8
...
@@ -4634,6 +4634,7 @@
...
@@ -4634,6 +4634,7 @@
float: left;
float: left;
z-index: 2019128;
z-index: 2019128;
cursor: pointer;
cursor: pointer;
white-space: nowrap;
}
}
.red-theme .nav .nav-middle ul li {
.red-theme .nav .nav-middle ul li {
...
...
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