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
2046c747
Commit
2046c747
authored
Jun 19, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug、新增录入旅客名单线路id 等于14/1的时候必填身份证号码
parent
33986455
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
6 deletions
+18
-6
addPassenger.vue
src/components/SalesModule/addPassenger.vue
+8
-1
groupTourOrder.vue
src/components/SalesModule/groupTourOrder.vue
+3
-2
groupTourOrderOne.vue
src/components/SalesModule/groupTourOrderOne.vue
+3
-2
passengerSaleList.vue
src/components/SalesModule/passengerSaleList.vue
+4
-1
No files found.
src/components/SalesModule/addPassenger.vue
View file @
2046c747
...
...
@@ -141,7 +141,7 @@
<div
class=
"contForm"
>
<el-form
:model=
"addMsg"
ref=
"addMsg"
label-position=
"right"
:rules=
"rules"
label-width=
"100px"
>
<li>
<el-form-item
label=
"身份证号码"
prop=
"IdCard
"
>
<el-form-item
label=
"身份证号码"
:prop=
"(LineId === 14 || LineId === 2) ? 'IdCard' : ''
"
>
<el-input
v-model=
"addMsg.IdCard"
type=
"text"
size=
mini
class=
"w230"
maxlength=
"50"
placeholder=
"请填写"
@
blur
.
prevent=
"authentication()"
>
</el-input>
</el-form-item>
...
...
@@ -661,6 +661,11 @@
},
EconomicCapabilityS
:
[],
rules
:
{
IdCard
:
[{
required
:
true
,
message
:
"请填身份证号码"
,
trigger
:
"blur"
}],
SurName
:
[{
required
:
true
,
message
:
"请填写中文姓"
,
...
...
@@ -770,6 +775,7 @@
btnState
:
true
,
roomlist
:[],
isOneDay
:
0
,
LineId
:
0
,
};
},
methods
:
{
...
...
@@ -1981,6 +1987,7 @@
this
.
GetGuestMustVisaAir
();
this
.
getAccessToken
();
this
.
isOneDay
=
this
.
$route
.
query
.
isOneDay
;
this
.
LineId
=
this
.
$route
.
query
.
LineId
;
this
.
addMsg
.
TCID
=
this
.
$route
.
query
.
TCID
;
this
.
addMsg
.
OrderId
=
this
.
$route
.
query
.
orderId
;
let
userInfo
=
this
.
getLocalStorage
();
...
...
src/components/SalesModule/groupTourOrder.vue
View file @
2046c747
...
...
@@ -2082,7 +2082,8 @@
QStartDate
:
''
,
QEndDate
:
''
,
PayStatus
:
'-1'
,
IsAirTicket
:
'2'
IsAirTicket
:
'2'
,
IsOneDay
:
0
,
},
checkedObj
:
{},
//返回数据
...
...
@@ -2365,7 +2366,7 @@
},
// 获取统计数据
getCount
:
function
()
{
this
.
apipost
(
'sellorder_get_GetTravelOrderListStatistics'
,
this
.
msg
,
res
=>
{
this
.
apipost
(
'sellorder_get_GetTravelOrderListStatistics
_V2
'
,
this
.
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
countData
=
res
.
data
.
data
}
else
{
...
...
src/components/SalesModule/groupTourOrderOne.vue
View file @
2046c747
...
...
@@ -2072,7 +2072,8 @@
QStartDate
:
''
,
QEndDate
:
''
,
PayStatus
:
'-1'
,
IsAirTicket
:
'2'
IsAirTicket
:
'2'
,
IsOneDay
:
1
,
},
checkedObj
:
{},
//返回数据
...
...
@@ -2355,7 +2356,7 @@
},
// 获取统计数据
getCount
:
function
()
{
this
.
apipost
(
'sellorder_get_GetTravelOrderListStatistics'
,
this
.
msg
,
res
=>
{
this
.
apipost
(
'sellorder_get_GetTravelOrderListStatistics
_V2
'
,
this
.
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
countData
=
res
.
data
.
data
}
else
{
...
...
src/components/SalesModule/passengerSaleList.vue
View file @
2046c747
...
...
@@ -89,6 +89,7 @@
isOrder
:
0
,
tableList
:
[],
isOneDay
:
0
,
LineId
:
0
,
};
},
methods
:
{
...
...
@@ -101,6 +102,7 @@
this
.
guestNum
=
res
.
data
.
data
.
GuestNum
;
this
.
tableList
=
res
.
data
.
data
.
list
;
this
.
isOneDay
=
res
.
data
.
data
.
IsOneDay
;
this
.
LineId
=
res
.
data
.
data
.
LineId
;
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
)
}
...
...
@@ -132,7 +134,8 @@
"TCID"
:
this
.
msg
.
tcid
,
"orderId"
:
this
.
msg
.
id
,
'guestId'
:
guestId
,
'isOneDay'
:
this
.
isOneDay
'isOneDay'
:
this
.
isOneDay
,
'LineId'
:
this
.
LineId
,
}
});
},
...
...
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