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
27063e94
Commit
27063e94
authored
Apr 13, 2026
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
71b5cf87
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
0 deletions
+36
-0
TravelContractDetail.vue
src/components/TravelContractDetail.vue
+2
-0
TravelContractView.vue
src/components/TravelContractView.vue
+19
-0
ContractManage.vue
src/components/administrative/ContractManage.vue
+15
-0
No files found.
src/components/TravelContractDetail.vue
View file @
27063e94
...
...
@@ -542,6 +542,8 @@
<p>
{{$t('objFill.v101.Contract.chujins')}}:
<span>
{{dataList.company}}
</span></p>
<p>
{{$t('objFill.v101.Contract.lxsywxkz')}}:
<span>
{{dataList.businessCertificate}}
</span></p>
<br
/>
<p
v-for=
"(ditem,dindex) in dataList.dmcInfoList"
:key=
"dindex"
>
地接社信息:
<span>
{{ditem.DmcName}}
</span>
/
<span>
{{ditem.DmcContact}}
</span>
/
<span>
{{ditem.DmcContactPhone}}
</span>
/
<span>
{{ditem.DmcAddress}}
</span></p>
<br
/>
<h2>
第一章 术语和定义
</h2>
<h3>
第一条 本合同术语和定义
</h3>
<p>
...
...
src/components/TravelContractView.vue
View file @
27063e94
...
...
@@ -1126,6 +1126,10 @@
</p>
<p>
{{$t('objFill.v101.Contract.lxsywxkz')}}:
<font>
{{CtObj.TravelAgency_LicenseNum}}
</font>
</p>
<br
/>
<p
v-for=
"(ditem,dindex) in CtObj.DmcInfoList"
:key=
"dindex"
>
地接社信息:
<span>
{{ditem.DmcName}}
</span>
/
<span>
{{ditem.DmcContact}}
</span>
/
<span>
{{ditem.DmcContactPhone}}
</span>
/
<span>
{{ditem.DmcAddress}}
</span></p>
<br
/>
<h3>
<p
class=
"zhangTitle"
>
{{$t('objFill.v101.Contract.diyizhang')}}
{{$t('objFill.v101.Contract.shuyuhdinyi')}}
</p>
...
...
@@ -2569,6 +2573,21 @@
this
.
fallbackCopy
(
text
);
}
},
fallbackCopy
(
text
)
{
const
textarea
=
document
.
createElement
(
'textarea'
);
textarea
.
value
=
text
;
textarea
.
style
.
position
=
'fixed'
;
textarea
.
style
.
opacity
=
'0'
;
document
.
body
.
appendChild
(
textarea
);
textarea
.
select
();
try
{
document
.
execCommand
(
'copy'
);
this
.
Success
(
'链接已复制到剪贴板'
);
}
catch
(
err
)
{
this
.
Error
(
'复制失败,请手动复制'
);
}
document
.
body
.
removeChild
(
textarea
);
},
SMSnotification
(){
if
(
this
.
SMLoading
)
return
this
.
$confirm
(
"是否发送短信通知?"
,
this
.
$t
(
"tips.tips"
),
{
...
...
src/components/administrative/ContractManage.vue
View file @
27063e94
...
...
@@ -353,6 +353,21 @@
this
.
fallbackCopy
(
text
);
}
},
fallbackCopy
(
text
)
{
const
textarea
=
document
.
createElement
(
'textarea'
);
textarea
.
value
=
text
;
textarea
.
style
.
position
=
'fixed'
;
textarea
.
style
.
opacity
=
'0'
;
document
.
body
.
appendChild
(
textarea
);
textarea
.
select
();
try
{
document
.
execCommand
(
'copy'
);
this
.
Success
(
'链接已复制到剪贴板'
);
}
catch
(
err
)
{
this
.
Error
(
'复制失败,请手动复制'
);
}
document
.
body
.
removeChild
(
textarea
);
},
//提交并盖章
SubmitContract
(
item
)
{
var
that
=
this
;
...
...
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