Commit 27063e94 authored by liudong1993's avatar liudong1993

1

parent 71b5cf87
...@@ -542,6 +542,8 @@ ...@@ -542,6 +542,8 @@
<p>{{$t('objFill.v101.Contract.chujins')}}:<span>{{dataList.company}}</span></p> <p>{{$t('objFill.v101.Contract.chujins')}}:<span>{{dataList.company}}</span></p>
<p>{{$t('objFill.v101.Contract.lxsywxkz')}}:<span>{{dataList.businessCertificate}}</span></p> <p>{{$t('objFill.v101.Contract.lxsywxkz')}}:<span>{{dataList.businessCertificate}}</span></p>
<br /> <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> <h2>第一章 术语和定义</h2>
<h3>第一条 本合同术语和定义</h3> <h3>第一条 本合同术语和定义</h3>
<p> <p>
......
...@@ -1126,6 +1126,10 @@ ...@@ -1126,6 +1126,10 @@
</p> </p>
<p>{{$t('objFill.v101.Contract.lxsywxkz')}}:<font>{{CtObj.TravelAgency_LicenseNum}}</font> <p>{{$t('objFill.v101.Contract.lxsywxkz')}}:<font>{{CtObj.TravelAgency_LicenseNum}}</font>
</p> </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> <h3>
<p class="zhangTitle"> <p class="zhangTitle">
{{$t('objFill.v101.Contract.diyizhang')}}&nbsp;&nbsp;{{$t('objFill.v101.Contract.shuyuhdinyi')}}</p> {{$t('objFill.v101.Contract.diyizhang')}}&nbsp;&nbsp;{{$t('objFill.v101.Contract.shuyuhdinyi')}}</p>
...@@ -2569,6 +2573,21 @@ ...@@ -2569,6 +2573,21 @@
this.fallbackCopy(text); 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(){ SMSnotification(){
if(this.SMLoading) return if(this.SMLoading) return
this.$confirm("是否发送短信通知?", this.$t("tips.tips"), { this.$confirm("是否发送短信通知?", this.$t("tips.tips"), {
......
...@@ -353,6 +353,21 @@ ...@@ -353,6 +353,21 @@
this.fallbackCopy(text); 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) { SubmitContract(item) {
var that = this; var that = this;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment