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
2d60e3eb
Commit
2d60e3eb
authored
5 years ago
by
吴春
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
4a0148fa
28cf37d9
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
26 additions
and
17 deletions
+26
-17
addPassenger.vue
src/components/SalesModule/addPassenger.vue
+1
-1
groupTourOrder.vue
src/components/SalesModule/groupTourOrder.vue
+1
-1
groupTourOrderByTuan.vue
src/components/SalesModule/groupTourOrderByTuan.vue
+1
-1
passengerSaleList.vue
src/components/SalesModule/passengerSaleList.vue
+9
-3
PassengerList.vue
src/components/Ticketing/PassengerList.vue
+7
-2
RegistrationList.vue
src/components/TravelManager/TravelList/RegistrationList.vue
+1
-1
TravelpassengerList.vue
...mponents/TravelManager/TravelList/TravelpassengerList.vue
+6
-7
destinationManagement.vue
src/components/systemManagement/destinationManagement.vue
+0
-1
No files found.
src/components/SalesModule/addPassenger.vue
View file @
2d60e3eb
...
...
@@ -311,7 +311,7 @@
</el-select>
</el-form-item>
</li>
<li
style=
"display:none"
>
<li
>
<el-form-item
label=
"签证状态"
>
<el-select
v-model=
"addMsg.VisaState"
filterable
size=
mini
class=
"w120"
>
<el-option
:key=
"0"
label=
"正常"
:value=
"0"
>
...
...
This diff is collapsed.
Click to expand it.
src/components/SalesModule/groupTourOrder.vue
View file @
2d60e3eb
...
...
@@ -932,7 +932,7 @@
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"拒签人数"
prop=
"RefuseVisaNum"
style=
"display:none;"
>
<el-form-item
label=
"拒签人数"
prop=
"RefuseVisaNum"
>
<el-input
v-model=
'addMsg.RefuseVisaNum'
@
keyup
.
native=
"checkInteger(addMsg,'RefuseVisaNum')"
@
input=
'getTotalPrice()'
></el-input>
</el-form-item>
...
...
This diff is collapsed.
Click to expand it.
src/components/SalesModule/groupTourOrderByTuan.vue
View file @
2d60e3eb
...
...
@@ -1149,7 +1149,7 @@
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"拒签人数"
prop=
"RefuseVisaNum"
style=
"display:none;"
>
<el-form-item
label=
"拒签人数"
prop=
"RefuseVisaNum"
>
<el-input
v-model=
'addMsg.RefuseVisaNum'
@
keyup
.
native=
"checkInteger(addMsg,'RefuseVisaNum')"
@
input=
'getTotalPrice()'
></el-input>
</el-form-item>
...
...
This diff is collapsed.
Click to expand it.
src/components/SalesModule/passengerSaleList.vue
View file @
2d60e3eb
...
...
@@ -24,12 +24,12 @@
<th
width=
"7%"
>
护照有效期
</th>
<th
width=
"6%"
>
客户手机
</th>
<th
width=
"9%"
>
身份证
</th>
<th
width=
"5%"
style=
"display:none"
>
签证状态
</th>
<th
width=
"5%"
>
签证状态
</th>
<th
width=
"8%"
>
操作
</th>
</tr>
</thead>
<tbody
v-show=
"tableList.length>0"
>
<tr
v-for=
"(item,index) in tableList"
:key=
"index"
>
<tr
v-for=
"(item,index) in tableList"
:key=
"index"
:class=
"
{'redTr':item.VisaState==1}"
>
<td>
{{
item
.
Sort
}}
</td>
<td>
{{
item
.
HoustNo
}}
</td>
<td>
{{
item
.
HouseType
}}
</td>
...
...
@@ -46,7 +46,7 @@
<td>
{{
item
.
PassportExpiry
}}
</td>
<td>
{{
item
.
MobilePhone
}}
</td>
<td>
{{
item
.
IdCard
}}
</td>
<td
style=
"display:none"
>
{{
item
.
VisaState
==
1
?
'拒签'
:
"正常"
}}
</td>
<td>
{{
item
.
VisaState
==
1
?
'拒签'
:
"正常"
}}
</td>
<td>
<el-button-group>
<el-tooltip
v-if=
"isOrder==1"
class=
"item"
effect=
"dark"
content=
"修改"
placement=
"top-start"
>
...
...
@@ -213,6 +213,7 @@
border-top
:
1px
solid
#cccccc
;
border-left
:
1px
solid
#cccccc
;
}
.passengerSaleList_table
tr
td
{
padding
:
10px
;
...
...
@@ -229,4 +230,9 @@
color
:
#999999
;
}
/*拒签人员*/
.passengerSaleList_table
.redTr
td
{
color
:
#E95252
;
}
</
style
>
This diff is collapsed.
Click to expand it.
src/components/Ticketing/PassengerList.vue
View file @
2d60e3eb
...
...
@@ -109,7 +109,10 @@
line-height
:
30px
;
color
:
#fff
;
}
/*拒签人员*/
.singeRowTable
.redTr
td
{
color
:
#E95252
;
}
</
style
>
<
template
>
...
...
@@ -161,8 +164,9 @@
<th>
护照号码
</th>
<th>
证件有效期
</th>
<th>
客人联系方式
</th>
<th>
签证状态
</th>
</tr>
<tr
v-for=
"(item,index) in QueryMsg.dataList"
>
<tr
v-for=
"(item,index) in QueryMsg.dataList"
:class=
"
{'redTr':item.VisaState==1}"
>
<td
v-if=
"isShowGuoji"
>
<input
v-model=
"item.guoji"
type=
"checkbox"
/>
</td>
...
...
@@ -188,6 +192,7 @@
<td>
{{
item
.
PassportNo
}}
</td>
<td>
{{
item
.
PassportExpiry
}}
</td>
<td>
{{
item
.
NaMobilePhoneme
}}
</td>
<td>
{{
item
.
VisaState
==
1
?
"拒签"
:
"正常"
}}
</td>
</tr>
</table>
<div
class=
"noData"
v-show=
"QueryMsg.noData"
>
...
...
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelList/RegistrationList.vue
View file @
2d60e3eb
...
...
@@ -1295,7 +1295,7 @@
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"拒签人数"
prop=
"RefuseVisaNum"
style=
"display:none;"
>
<el-form-item
label=
"拒签人数"
prop=
"RefuseVisaNum"
>
<el-input
v-model=
'addMsg.RefuseVisaNum'
@
keyup
.
native=
"checkInteger(addMsg,'RefuseVisaNum')"
@
input=
'getTotalPrice()'
></el-input>
</el-form-item>
...
...
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelList/TravelpassengerList.vue
View file @
2d60e3eb
...
...
@@ -20,6 +20,10 @@
height
:
30px
;
}
.travelpassengerlist
tr
td
{
background
:
#fff
;
text-align
:
center
;}
/*拒签人员*/
.travelpassengerlist
.redTr
td
{
color
:
#E95252
;
}
</
style
>
<
template
>
...
...
@@ -81,7 +85,7 @@
<td
v-show=
"QueryMsg.dataList.Length==0"
colspan=
"12"
align=
"center"
>
暂无数据
</td>
</tr>
<tbody
v-for=
"(item,index) in QueryMsg.dataList"
:key=
"index"
>
<tr
v-for=
"(subItem,subIndex) in item"
>
<tr
v-for=
"(subItem,subIndex) in item"
:class=
"
{'redTr':subItem.VisaState==1}"
>
<td
v-if=
"subIndex==0"
:rowspan=
"subItem.RowsCount"
>
{{
index
+
1
}}
</td>
<td
v-if=
"subIndex==0"
:rowspan=
"subItem.RowsCount"
></td>
<td>
{{
getHouseTypeStr
(
subItem
)
}}
</td>
...
...
@@ -104,13 +108,8 @@
<td
align=
"center"
>
经济舱
<br>
(Y)
</td>
<td>
{{
subItem
.
VisaType
}}
</td>
<td>
{{
subItem
.
VisaType
}}
{{
subItem
.
VisaState
==
1
?
'拒签'
:
"正常"
}}
</td>
</tr>
<!--
<tr
height=
"30"
>
<td
colspan=
"21"
align=
"left"
>
<span
class=
"colorE95252"
style=
"text-align:left"
>
备注:
{{
item
[
0
].
Remarks
}}
</span>
</td>
</tr>
-->
</tbody>
</table>
</div>
...
...
This diff is collapsed.
Click to expand it.
src/components/systemManagement/destinationManagement.vue
View file @
2d60e3eb
...
...
@@ -190,7 +190,6 @@ export default {
getList
()
{
//获取现有线路列表
this
.
loading
=
true
;
this
.
apipost
(
"place_post_GetPageList"
,
this
.
msg
,
...
...
This diff is collapsed.
Click to expand it.
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