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
3cce5d4a
Commit
3cce5d4a
authored
Jan 26, 2026
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
4534cf09
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
5626 additions
and
7 deletions
+5626
-7
SignName.vue
src/components/SignName.vue
+24
-0
TravelContractDetailWT.vue
src/components/TravelContractDetailWT.vue
+1521
-0
TravelContractNew.vue
src/components/TravelContractNew.vue
+23
-7
TravelContractNewWT.vue
src/components/TravelContractNewWT.vue
+2651
-0
ElectronicAudit.vue
src/components/administrative/ElectronicAudit.vue
+3
-0
clientConfirmWT.vue
src/components/clientConfirmWT.vue
+1382
-0
config.js
src/router/config.js
+22
-0
No files found.
src/components/SignName.vue
View file @
3cce5d4a
...
...
@@ -272,6 +272,30 @@
}
},
null
);
}
else
if
(
this
.
msg
.
TypeStr
==
'clientConfirmWT'
)
{
var
postMsg
=
{
Id
:
this
.
msg
.
Id
,
companySignature
:
this
.
SignInfo
}
this
.
apipost
(
"travelcontract_post_UpdateCompanySignatureService"
,
postMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
===
1
)
{
this
.
Success
(
res
.
data
.
message
);
var
path
=
"clientConfirmWT"
;
this
.
$router
.
push
({
name
:
path
,
query
:
{
TCID
:
this
.
msg
.
TCID
,
orderID
:
this
.
msg
.
orderID
,
guestId
:
this
.
msg
.
guestId
,
Id
:
this
.
msg
.
Id
,
str
:
""
,
//不弹窗
}
})
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
null
);
}
//保密协议
else
if
(
this
.
msg
.
TypeStr
==
'clientProtocol'
)
{
var
clientProtocolMsg
=
{
...
...
src/components/TravelContractDetailWT.vue
0 → 100644
View file @
3cce5d4a
This diff is collapsed.
Click to expand it.
src/components/TravelContractNew.vue
View file @
3cce5d4a
...
...
@@ -367,6 +367,17 @@
<div
class=
"createTableTitle"
>
旅游者代表信息
</div>
<table
class=
"createTable"
>
<tbody>
<tr>
<td>
<el-form-item
label=
"合同类型"
>
<el-select
v-model=
"CtObj.contractType"
:placeholder=
"$t('pub.pleaseSel')"
>
<el-option
key=
"0"
label=
"标准出境"
:value=
"0"
>
</el-option>
<el-option
key=
"1"
label=
"委托代订"
:value=
"1"
>
</el-option>
</el-select>
</el-form-item>
</td>
</tr>
<tr>
<td>
<el-form-item
:label=
"$t('system.query_name')"
prop=
"clientName"
>
...
...
@@ -999,10 +1010,10 @@
<div
v-else
ref=
"TcTravel_Table"
>
<table
class=
"TcTravel_Table"
>
<tbody>
<tr>
<tr
v-if=
"CtObj.contractType!=1"
>
<td
colspan=
"5"
contenteditable=
"true"
>
组团社:四川和平国际旅行社有限公司
</td>
</tr>
<tr>
<tr
v-if=
"CtObj.contractType!=1"
>
<td
colspan=
"5"
contenteditable=
"true"
>
旅游线路名称:{{
CtObj.productName
...
...
@@ -1010,7 +1021,7 @@
{{ CtObj.nightNum }}{{$t('objFill.wan')}}(含在途时间)
</td>
</tr>
<tr>
<tr
v-if=
"CtObj.contractType!=1"
>
<td
colspan=
"5"
contenteditable=
"true"
>
{{$t('Airticket.Air_StartTime')}}:{{
getDate(CtObj.startDate)
...
...
@@ -1022,7 +1033,7 @@
}}
</td>
</tr>
<tr>
<tr
v-if=
"CtObj.contractType!=1"
>
<td
colspan=
"5"
contenteditable=
"true"
>
结束时间:{{
getDate(CtObj.returnDate)
...
...
@@ -1208,7 +1219,7 @@
</table>
</
template
>
</div>
<div
class=
"block mtop15"
id=
"anchor-6"
ref=
"anchor6"
>
<div
v-if=
"CtObj.contractType!=1"
class=
"block mtop15"
id=
"anchor-6"
ref=
"anchor6"
>
<div
class=
"blockTitle"
>
<span
class=
"icon"
>
<i
class=
"iconfont icon-bianji"
></i>
...
...
@@ -1288,7 +1299,7 @@
</tbody>
</table>
</div>
<div
class=
"block mtop15"
id=
"anchor-7"
ref=
"anchor7"
>
<div
v-if=
"CtObj.contractType!=1"
class=
"block mtop15"
id=
"anchor-7"
ref=
"anchor7"
>
<div
class=
"blockTitle"
>
<span
class=
"icon"
>
<i
class=
"iconfont icon-bianji"
></i>
...
...
@@ -1512,6 +1523,7 @@
//参数
CtObj
:
{
//基本信息
contractType
:
""
,
clientName
:
""
,
clientIdcardnum
:
""
,
clientCall
:
""
,
...
...
@@ -1799,8 +1811,12 @@
}
},
goContract
()
{
let
path
=
"TravelContractDetail"
;
if
(
this
.
CtObj
.
contractType
==
1
){
path
=
"TravelContractDetailWT"
;
}
this
.
$router
.
push
({
name
:
"TravelContractDetail"
,
name
:
path
,
query
:
{
TCID
:
this
.
$route
.
query
.
TCID
,
guestId
:
this
.
CtObj
.
guestId
,
...
...
src/components/TravelContractNewWT.vue
0 → 100644
View file @
3cce5d4a
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/components/administrative/ElectronicAudit.vue
View file @
3cce5d4a
...
...
@@ -807,6 +807,9 @@
if
(
item
.
TemplateType
==
1
)
{
path
=
"TravelContractDetailRB"
;
}
if
(
item
.
ContractType
==
1
){
path
=
"TravelContractDetailWT"
;
}
this
.
$router
.
push
({
name
:
path
,
query
:
{
...
...
src/components/clientConfirmWT.vue
0 → 100644
View file @
3cce5d4a
This diff is collapsed.
Click to expand it.
src/router/config.js
View file @
3cce5d4a
...
...
@@ -2,6 +2,7 @@
import
login
from
'../components/Login2019'
import
index
from
'../components/index'
import
clientConfirm
from
'../components/clientConfirm'
import
clientConfirmWT
from
'../components/clientConfirmWT'
import
clientConfirmRB
from
'../components/clientConfirmRB'
import
clientProtocol
from
'../components/clientProtocol'
import
clientDisclaimerProtocol
from
'../components/clientDisclaimerProtocol'
...
...
@@ -6557,6 +6558,11 @@ export default {
name
:
'clientConfirm'
,
component
:
clientConfirm
},
{
path
:
'/clientConfirmWT'
,
name
:
'clientConfirmWT'
,
component
:
clientConfirmWT
},
{
path
:
'/clientConfirmRB'
,
name
:
'clientConfirmRB'
,
...
...
@@ -6593,6 +6599,14 @@ export default {
title
:
'电子合同'
}
},
{
path
:
'/TravelContractNewWT'
,
//委托代订协议
name
:
'TravelContractNewWT'
,
component
:
resolve
=>
require
([
'@/components/TravelContractNewWT'
],
resolve
),
meta
:
{
title
:
'委托电子合同'
}
},
{
path
:
'/TravelContractNewRB'
,
//新日本线电子合同
name
:
'TravelContractNewRB'
,
...
...
@@ -6672,6 +6686,14 @@ export default {
title
:
'电子合同'
}
},
{
path
:
'/TravelContractDetailWT'
,
//团队出境委托电子合同详情
name
:
'TravelContractDetailWT'
,
component
:
resolve
=>
require
([
'@/components/TravelContractDetailWT'
],
resolve
),
meta
:
{
title
:
'委托电子合同'
}
},
{
path
:
'/TravelContractDetailRB'
,
//新日本线电子合同详情
name
:
'TravelContractDetailRB'
,
...
...
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