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
a9291ad5
Commit
a9291ad5
authored
Jul 24, 2025
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
4e827ba9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
2 deletions
+24
-2
signedClientList.vue
src/components/SalesModule/Common/signedClientList.vue
+1
-1
MyCustomer.vue
src/components/SalesModule/MyCustomer.vue
+21
-1
TravelContractDetail.vue
src/components/TravelContractDetail.vue
+1
-0
clientConfirm.vue
src/components/clientConfirm.vue
+1
-0
No files found.
src/components/SalesModule/Common/signedClientList.vue
View file @
a9291ad5
...
...
@@ -507,7 +507,7 @@
<span>
{{
item
.
contact
}}
</span>
</td>
<td>
{{
item
.
contactNumber
}}
</td>
<td>
{{
item
.
customerName
}}
</td>
<td>
{{
item
.
customerName
}}
</td>
<td>
{{
item
.
customerStatusStr
}}
</td>
<td><span
@
click=
"goUrlCC(item.customerId,3)"
style=
"cursor: pointer;text-decoration: underline;"
>
{{
item
.
tradeTotal
}}
</span></td>
...
...
src/components/SalesModule/MyCustomer.vue
View file @
a9291ad5
...
...
@@ -842,6 +842,12 @@
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
""
>
<el-checkbox
v-model=
'addMsg.IsGuideOrLeader'
>
是否领队/导游
</el-checkbox>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
:label=
"$t('hotel.hotel_remark')"
prop=
"remark"
>
...
...
@@ -916,6 +922,12 @@
<el-input
v-model=
'updateMsg.Contact'
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
""
>
<el-checkbox
v-model=
'updateMsg.IsGuideOrLeader'
>
是否领队/导游
</el-checkbox>
</el-form-item>
</el-col>
<el-col
:span=
"6"
v-if=
"currentUserInfo&¤tUserInfo.RB_Group_id!=2"
>
<el-form-item
:label=
"$t('salesModule.c_email')"
prop=
"Email"
>
<el-input
v-model=
"updateMsg.email"
:placeholder=
"$t('pub.pleaseImport')"
maxlength=
"50"
></el-input>
...
...
@@ -1113,6 +1125,7 @@
},
addMsg
:
{
CustomerId
:
0
,
IsGuideOrLeader
:
false
,
customerName
:
''
,
contact
:
''
,
contactNumber
:
''
,
...
...
@@ -1245,6 +1258,7 @@
contactNumber
:
''
,
CustomerName
:
''
,
CustomerId
:
0
,
IsGuideOrLeader
:
false
,
Address
:
''
,
Country
:
2
,
Province
:
0
,
...
...
@@ -1492,6 +1506,7 @@
this
.
$message
.
error
(
this
.
$t
(
'objFill.qingsrxqdz'
))
return
}
this
.
updateMsg
.
IsGuideOrLeader
=
this
.
updateMsg
.
IsGuideOrLeader
?
1
:
0
this
.
apipost
(
'app_customer_UpdateCustomerAddress'
,
this
.
updateMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
addLayer1
=
false
;
...
...
@@ -1556,6 +1571,7 @@
this
.
updateMsg
.
CustomerName
=
x
.
customerName
this
.
updateMsg
.
Contact
=
x
.
contactName
this
.
updateMsg
.
CustomerId
=
x
.
customerId
this
.
updateMsg
.
IsGuideOrLeader
=
x
.
isGuideOrLeader
==
1
?
true
:
false
this
.
updateMsg
.
Address
=
x
.
address
//x.address.split(',')[1]
this
.
updateMsg
.
Province
=
x
.
province
this
.
getCityNew
()
...
...
@@ -1713,6 +1729,7 @@
this
.
getRegion1
()
this
.
addMsg
.
District
=
x
.
district
this
.
addMsg
.
Duty
=
x
.
duty
this
.
addMsg
.
IsGuideOrLeader
=
x
.
IsGuideOrLeader
==
1
?
true
:
false
this
.
addMsg
.
Premises
=
x
.
premises
this
.
addMsg
.
CustomerSourceType
=
x
.
customerSourceType
let
dictid
=
[]
...
...
@@ -2016,8 +2033,10 @@
}
this
.
addMsgS
.
customerInfo
=
{
...
this
.
addMsg
,
SigningType
:
this
.
addMsg
.
SigningType
?
1
:
0
SigningType
:
this
.
addMsg
.
SigningType
?
1
:
0
,
IsGuideOrLeader
:
this
.
addMsg
.
IsGuideOrLeader
?
1
:
0
,
}
this
.
loadingSave
=
true
this
.
apipost
(
'app_add_new_visit_customer'
,
this
.
addMsgS
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
...
...
@@ -2041,6 +2060,7 @@
},
cancelData
()
{
this
.
addMsg
.
CustomerId
=
0
;
this
.
addMsg
.
IsGuideOrLeader
=
false
;
this
.
addMsg
.
customerName
=
""
;
this
.
addMsg
.
contact
=
""
;
this
.
addMsg
.
contactNumber
=
""
;
...
...
src/components/TravelContractDetail.vue
View file @
a9291ad5
...
...
@@ -831,6 +831,7 @@
<p
class=
"bold colorRed"
>
電話番号:0748-65-1011
</p>
<p
class=
"bold colorRed"
>
SWIFT CODE: BOKFJPJZ
</p>
</
template
>
<p
class=
"bold colorRed"
>
款项必须支付至本合同指定公账,如转账到其他账户或私人账户则与公司无关、支付无效,视为未支付旅游费用,公司有权选择解除合同或者继续向旅游者要求费用支付
</p>
<h3>
第二十二条 人身意外伤害保险
</h3>
<p>
1.出境社提示旅游者购买人身意外伤害保险;
</p>
<p>
...
...
src/components/clientConfirm.vue
View file @
a9291ad5
...
...
@@ -970,6 +970,7 @@
<p
class=
"bold colorRed"
>
電話番号:0748-65-1011
</p>
<p
class=
"bold colorRed"
>
SWIFT CODE: BOKFJPJZ
</p>
</
template
>
<p
class=
"bold colorRed"
>
款项必须支付至本合同指定公账,如转账到其他账户或私人账户则与公司无关、支付无效,视为未支付旅游费用,公司有权选择解除合同或者继续向旅游者要求费用支付
</p>
<h3>
<p
class=
"toTopDistance"
>
第二十二条 人身意外伤害保险
</p>
</h3>
...
...
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