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
59e95cd3
Commit
59e95cd3
authored
Feb 04, 2020
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
1ba073ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
60 additions
and
0 deletions
+60
-0
TravelControlListSale.vue
...onents/TravelManager/TravelList/TravelControlListSale.vue
+60
-0
No files found.
src/components/TravelManager/TravelList/TravelControlListSale.vue
View file @
59e95cd3
...
@@ -35,6 +35,15 @@
...
@@ -35,6 +35,15 @@
display
:
inline-block
;
display
:
inline-block
;
margin-right
:
10px
;
margin-right
:
10px
;
}
}
.AuditRedType
{
color
:
red
;
}
.AuditBlueType
{
color
:
blue
;
}
.AuditGreenType
{
color
:
green
;
}
</
style
>
</
style
>
<
template
>
<
template
>
<div>
<div>
...
@@ -482,6 +491,35 @@
...
@@ -482,6 +491,35 @@
<div
class=
"TC_SeatList"
>
{{
$t
(
'Airticket.Air_firstClass'
)
}}
:
{{
item
.
FSeat
}}
</div>
<div
class=
"TC_SeatList"
>
{{
$t
(
'Airticket.Air_firstClass'
)
}}
:
{{
item
.
FSeat
}}
</div>
<div
class=
"TC_SeatList"
>
{{
$t
(
'Airticket.Air_businessClass'
)
}}
:
{{
item
.
CSeat
}}
</div>
<div
class=
"TC_SeatList"
>
{{
$t
(
'Airticket.Air_businessClass'
)
}}
:
{{
item
.
CSeat
}}
</div>
<div
class=
"TC_SeatList"
>
{{
$t
(
'Airticket.Air_EconomyClass'
)
}}
:
{{
item
.
YSeat
}}
</div>
<div
class=
"TC_SeatList"
>
{{
$t
(
'Airticket.Air_EconomyClass'
)
}}
:
{{
item
.
YSeat
}}
</div>
<el-popover
width=
"500"
trigger=
"click"
>
<table
class=
"singeRowTable"
style=
"margin-top:20px;"
>
<tr>
<th
width=
"70"
>
审核人
</th>
<th
width=
"80"
>
审核状态
</th>
<th
width=
"140"
>
审核时间
</th>
<th>
备注
</th>
</tr>
<tr>
<td>
<template
v-if=
"item.AuditStatus!=1"
>
{{
item
.
AuditManName
}}
</
template
>
</td>
<td>
<span
v-if=
"item.AuditStatus==1"
class=
"AuditBlueType"
>
{{item.AuditStatusStr}}
</span>
<span
v-if=
"item.AuditStatus==2"
class=
"AuditGreenType"
>
{{item.AuditStatusStr}}
</span>
<span
v-if=
"item.AuditStatus==3"
class=
"AuditRedType"
>
{{item.AuditStatusStr}}
</span>
</td>
<td>
<
template
v-if=
"item.AuditStatus!=1"
>
{{
item
.
AuditTimeStr
}}
</
template
>
</td>
<td>
<
template
v-if=
"item.AuditStatus!=1"
>
{{
item
.
AuditRemark
}}
</
template
>
</td>
</tr>
</table>
<div
slot=
"reference"
title=
"审核信息"
style=
"cursor:pointer;color:rgb(71,191,140);text-decoration:underline;width:50px;"
>
审核信息
</div>
</el-popover>
</div>
</div>
</div>
</div>
<div
class=
"el-col"
style=
"width:200px;"
>
<div
class=
"el-col"
style=
"width:200px;"
>
...
@@ -564,6 +602,7 @@
...
@@ -564,6 +602,7 @@
<el-dropdown-item
@
click
.
native=
"goB2B(item.ConfigId)"
>
{{$t('Operation.Op_b2bView')}}
</el-dropdown-item>
<el-dropdown-item
@
click
.
native=
"goB2B(item.ConfigId)"
>
{{$t('Operation.Op_b2bView')}}
</el-dropdown-item>
<el-dropdown-item
@
click
.
native=
'goUrl("DistributionTransport",item.ID,"分销联运")'
>
{{$t('Operation.Op_salelianyun')}}
</el-dropdown-item>
<el-dropdown-item
@
click
.
native=
'goUrl("DistributionTransport",item.ID,"分销联运")'
>
{{$t('Operation.Op_salelianyun')}}
</el-dropdown-item>
<el-dropdown-item
@
click
.
native=
'ckSellPoint(item)'
>
{{$t('Operation.Op_bentuanMaidian')}}
</el-dropdown-item>
<el-dropdown-item
@
click
.
native=
'ckSellPoint(item)'
>
{{$t('Operation.Op_bentuanMaidian')}}
</el-dropdown-item>
<el-dropdown-item
@
click
.
native=
'reSubmit(item)'
v-if=
"item.AuditStatus==3"
>
重新提交
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown-menu>
</el-dropdown>
</el-dropdown>
</div>
</div>
...
@@ -901,6 +940,8 @@
...
@@ -901,6 +940,8 @@
});
});
}
}
});
});
console
.
log
(
res
,
'resssss'
);
}
}
},
},
err
=>
{}
err
=>
{}
...
@@ -1318,6 +1359,25 @@
...
@@ -1318,6 +1359,25 @@
}
}
})
})
},
},
//重新提交审核
reSubmit
(
item
){
let
msg
=
{
TCID
:
item
.
TCID
,
AuditStatus
:
1
}
this
.
apipost
(
"travel_post_UpdatePriceAuditStatusService"
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
Success
(
res
.
data
.
message
);
this
.
getControlList
();
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
err
=>
{}
);
}
},
},
filters
:
{
filters
:
{
formatStartDate
(
value
)
{
formatStartDate
(
value
)
{
...
...
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