Commit c02c99b8 authored by 沈良进's avatar 沈良进
parents e39e955d 45c0ce8d
...@@ -1279,6 +1279,7 @@ export default { ...@@ -1279,6 +1279,7 @@ export default {
let copyText = item.OrderId; let copyText = item.OrderId;
const save = function(e) { const save = function(e) {
e.clipboardData.setData('text/plain', copyText) e.clipboardData.setData('text/plain', copyText)
e.preventDefault() // 阻止默认行为
} }
document.addEventListener('copy', save) // 添加一个copy事件 document.addEventListener('copy', save) // 添加一个copy事件
let x = document.execCommand('copy') // 执行copy方法 let x = document.execCommand('copy') // 执行copy方法
......
...@@ -1090,6 +1090,7 @@ export default { ...@@ -1090,6 +1090,7 @@ export default {
let copyText = item.OrderId; let copyText = item.OrderId;
const save = function(e) { const save = function(e) {
e.clipboardData.setData('text/plain', copyText) e.clipboardData.setData('text/plain', copyText)
e.preventDefault() // 阻止默认行为
} }
document.addEventListener('copy', save) // 添加一个copy事件 document.addEventListener('copy', save) // 添加一个copy事件
let x = document.execCommand('copy') // 执行copy方法 let x = document.execCommand('copy') // 执行copy方法
......
...@@ -1057,7 +1057,7 @@ ...@@ -1057,7 +1057,7 @@
<el-input v-model="msg.TCID" class="w150"></el-input> <el-input v-model="msg.TCID" class="w150"></el-input>
</span> </span>
</li> </li>
<li> <li>
<span> <span>
<em>团名</em> <em>团名</em>
<el-input v-model="msg.Title" class="w150" clearable></el-input> <el-input v-model="msg.Title" class="w150" clearable></el-input>
...@@ -1240,14 +1240,12 @@ ...@@ -1240,14 +1240,12 @@
{{ item.Title }} {{ item.Title }}
</p> </p>
</el-tooltip> </el-tooltip>
<p v-if="item.CustomerName&&item.CustomerName!=''" <p v-if="item.CustomerName&&item.CustomerName!=''" style="font-size: 11px;font-weight:bold;color:red">
style="font-size: 11px;font-weight:bold;color:red">
<span v-if="item.CustomerName">客户名称:{{item.CustomerName}} <span v-if="item.CustomerName">客户名称:{{item.CustomerName}}
</span> </span>
</p> </p>
<p v-if="item.PriceOfferUrl&&item.PriceOfferUrl!=''"> <p v-if="item.PriceOfferUrl&&item.PriceOfferUrl!=''">
<a style="color:blue;" :href="item.PriceOfferUrl" v-if="item.PriceOfferUrl" <a style="color:blue;" :href="item.PriceOfferUrl" v-if="item.PriceOfferUrl" target="_blank">下载报价单</a>
target="_blank">下载报价单</a>
</p> </p>
</div> </div>
</div> </div>
...@@ -1843,7 +1841,7 @@ ...@@ -1843,7 +1841,7 @@
SonControlID: "-1", SonControlID: "-1",
IsShowMessagesMoney: "2", IsShowMessagesMoney: "2",
QuotationUrl: "", //单团附件 QuotationUrl: "", //单团附件
LureEmpId: 0,//引流id LureEmpId: 0, //引流id
CRMGuestId: 0, //客人ID CRMGuestId: 0, //客人ID
}, },
uploadLloading: false, uploadLloading: false,
...@@ -1921,7 +1919,7 @@ ...@@ -1921,7 +1919,7 @@
WarningQuery: "-1", WarningQuery: "-1",
RateOnDay: "-1", RateOnDay: "-1",
RateOn: "-1", RateOn: "-1",
Title:"",//团名 Title: "", //团名
}, },
defaultImg: 'this.src="' + require("../../assets/img/bg_z1@2x.png") + '"', defaultImg: 'this.src="' + require("../../assets/img/bg_z1@2x.png") + '"',
list: [], list: [],
...@@ -3643,11 +3641,11 @@ ...@@ -3643,11 +3641,11 @@
}, },
mounted() { mounted() {
// crm自动登陆传过来的参数 // crm自动登陆传过来的参数
if(this.$route.query.crmOrderObj){ if (this.$route.query.crmOrderObj) {
this.crmOrderObj = JSON.parse(this.$route.query.crmOrderObj) this.crmOrderObj = JSON.parse(this.$route.query.crmOrderObj)
this.addMsg.LureEmpId = this.crmOrderObj.LureEmpId//引流id this.addMsg.LureEmpId = this.crmOrderObj.LureEmpId //引流id
this.addMsg.CRMGuestId = this.crmOrderObj.CRMGuestId //客人ID this.addMsg.CRMGuestId = this.crmOrderObj.CRMGuestId //客人ID
} }
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
this.userInfo = this.getLocalStorage(); this.userInfo = this.getLocalStorage();
this.GetSupperOrderEditAuth(); this.GetSupperOrderEditAuth();
......
...@@ -612,7 +612,7 @@ ...@@ -612,7 +612,7 @@
</el-table-column> </el-table-column>
<template slot="append" > <template slot="append" >
<div class="row justify-sb" style="padding:10px;"> <div class="row justify-sb" style="padding:10px;">
<div class="cF1416C flex-g" style="min-width: 150px;" > <div class="cF1416C flex-g" style="min-width: 300px;" >
<div class="row flex-wrap mb"v-if="item.guestList&&item.guestList.length>0"> <div class="row flex-wrap mb"v-if="item.guestList&&item.guestList.length>0">
<span class="flex-s">旅客名单:</span> <span class="flex-s">旅客名单:</span>
<div class="row wrap orderNo fz12 ml"> <div class="row wrap orderNo fz12 ml">
...@@ -620,9 +620,9 @@ ...@@ -620,9 +620,9 @@
@click="goUrl2('VisapassengerList',item.id,'旅客名单')">{{ x.userName }}</span> @click="goUrl2('VisapassengerList',item.id,'旅客名单')">{{ x.userName }}</span>
</div> </div>
</div> </div>
<div v-if="item.remark"> <div v-if="(pagesTitle=='OP'&&!item.remark)||item.remark">
{{$t('pub.pubRemark')}}{{ item.remark }} {{$t('pub.pubRemark')}}{{ item.remark }}
<el-tooltip class="item" effect="dark" :content="$t('salesModule.UpRemarks')" <el-tooltip v-if="pagesTitle=='OP'" class="item" effect="dark" :content="$t('salesModule.UpRemarks')"
placement="top-start"> placement="top-start">
<i class="el-icon-edit cursor-pointer c059FF6 mx" @click='getDetail(item,true)'></i> <i class="el-icon-edit cursor-pointer c059FF6 mx" @click='getDetail(item,true)'></i>
</el-tooltip> </el-tooltip>
...@@ -630,7 +630,7 @@ ...@@ -630,7 +630,7 @@
</div> </div>
<div class="row justify-sb"> <div class="row justify-sb">
<div class="row-c justify-sb px15 bgf5 radius5 flex-g pa relative" style="min-width: 150px;max-width: 300px;"> <div class="row-c justify-sb px15 bgf5 radius5 flex-g pa relative" style="min-width: 200px;max-width: 400px;">
<div class="row-c"> <div class="row-c">
<div class="fz12 flex-s">收款单据</div> <div class="fz12 flex-s">收款单据</div>
<div class="row wrap orderNo fz12 ml"> <div class="row wrap orderNo fz12 ml">
...@@ -648,7 +648,7 @@ ...@@ -648,7 +648,7 @@
@click="makeAdocument(item, index, 1)"></i> @click="makeAdocument(item, index, 1)"></i>
</el-tooltip> </el-tooltip>
</div> </div>
<div class="row-c justify-sb px15 bgf5 radius5 ml flex-g pa relative" style="min-width: 150px;max-width: 300px;"> <div class="row-c justify-sb px15 bgf5 radius5 ml flex-g pa relative" style="min-width: 200px;max-width: 400px;">
<div class="row-c"> <div class="row-c">
<div class="fz12 flex-s">退款单据</div> <div class="fz12 flex-s">退款单据</div>
<div class="row wrap orderNo fz12 ml"> <div class="row wrap orderNo fz12 ml">
...@@ -666,7 +666,7 @@ ...@@ -666,7 +666,7 @@
@click="makeAdocument(item, index, 2)"></i> @click="makeAdocument(item, index, 2)"></i>
</el-tooltip> </el-tooltip>
</div> </div>
<div class="row-c justify-sb px15 bgf5 radius5 ml flex-g pa relative" style="min-width: 150px;max-width: 300px;"> <div class="row-c justify-sb px15 bgf5 radius5 ml flex-g pa relative" style="min-width: 200px;max-width: 400px;">
<div class="row-c"> <div class="row-c">
<div class="fz12 flex-s">成本单据</div> <div class="fz12 flex-s">成本单据</div>
<div class="row wrap orderNo fz12 ml"> <div class="row wrap orderNo fz12 ml">
...@@ -1347,6 +1347,7 @@ export default { ...@@ -1347,6 +1347,7 @@ export default {
let copyText = item.id; let copyText = item.id;
const save = function(e) { const save = function(e) {
e.clipboardData.setData('text/plain', copyText) e.clipboardData.setData('text/plain', copyText)
e.preventDefault() // 阻止默认行为
} }
document.addEventListener('copy', save) // 添加一个copy事件 document.addEventListener('copy', save) // 添加一个copy事件
let x = document.execCommand('copy') // 执行copy方法 let x = document.execCommand('copy') // 执行copy方法
......
...@@ -1388,6 +1388,7 @@ ...@@ -1388,6 +1388,7 @@
let copyText = item.OrderId; let copyText = item.OrderId;
const save = function(e) { const save = function(e) {
e.clipboardData.setData('text/plain', copyText) e.clipboardData.setData('text/plain', copyText)
e.preventDefault() // 阻止默认行为
} }
document.addEventListener('copy', save) // 添加一个copy事件 document.addEventListener('copy', save) // 添加一个copy事件
let x = document.execCommand('copy') // 执行copy方法 let x = document.execCommand('copy') // 执行copy方法
......
...@@ -172,6 +172,12 @@ ...@@ -172,6 +172,12 @@
:placeholder="$t('pub.pleaseImport')" @keyup.native="checkInteger(queryMsg,'TCID')"></el-input> :placeholder="$t('pub.pleaseImport')" @keyup.native="checkInteger(queryMsg,'TCID')"></el-input>
</span> </span>
</li> </li>
<li>
<span>
<em>团名</em>
<el-input v-model="queryMsg.Title" class="w150" clearable></el-input>
</span>
</li>
<li> <li>
<span> <span>
<em>{{$t('scen.sc_ftTime')}}</em> <em>{{$t('scen.sc_ftTime')}}</em>
...@@ -1369,6 +1375,7 @@ ...@@ -1369,6 +1375,7 @@
HotelUseTime: "", //酒店使用时间 HotelUseTime: "", //酒店使用时间
QBusNumber: "", QBusNumber: "",
PriceTeamType: "", //团队类型 PriceTeamType: "", //团队类型
Title:"",//团名
}, },
TeamListArr: [], //团队类型 TeamListArr: [], //团队类型
//报价单查询条件 //报价单查询条件
......
...@@ -1328,6 +1328,7 @@ ...@@ -1328,6 +1328,7 @@
let copyText = item.OrderId; let copyText = item.OrderId;
const save = function(e) { const save = function(e) {
e.clipboardData.setData('text/plain', copyText) e.clipboardData.setData('text/plain', copyText)
e.preventDefault() // 阻止默认行为
} }
document.addEventListener('copy', save) // 添加一个copy事件 document.addEventListener('copy', save) // 添加一个copy事件
let x = document.execCommand('copy') // 执行copy方法 let x = document.execCommand('copy') // 执行copy方法
......
...@@ -1543,6 +1543,7 @@ ...@@ -1543,6 +1543,7 @@
let copyText = item.Id; let copyText = item.Id;
const save = function(e) { const save = function(e) {
e.clipboardData.setData('text/plain', copyText) e.clipboardData.setData('text/plain', copyText)
e.preventDefault() // 阻止默认行为
} }
document.addEventListener('copy', save) // 添加一个copy事件 document.addEventListener('copy', save) // 添加一个copy事件
let x = document.execCommand('copy') // 执行copy方法 let x = document.execCommand('copy') // 执行copy方法
......
...@@ -1494,6 +1494,7 @@ export default { ...@@ -1494,6 +1494,7 @@ export default {
let copyText = item.OrderId; let copyText = item.OrderId;
const save = function(e) { const save = function(e) {
e.clipboardData.setData('text/plain', copyText) e.clipboardData.setData('text/plain', copyText)
e.preventDefault() // 阻止默认行为
} }
document.addEventListener('copy', save) // 添加一个copy事件 document.addEventListener('copy', save) // 添加一个copy事件
let x = document.execCommand('copy') // 执行copy方法 let x = document.execCommand('copy') // 执行copy方法
......
...@@ -776,7 +776,6 @@ export default { ...@@ -776,7 +776,6 @@ export default {
"ticketcouponsprice_post_Set", "ticketcouponsprice_post_Set",
this.addMsg, this.addMsg,
res => { res => {
debugger
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.initDataTable(); this.initDataTable();
this.Success("保存成功!"); this.Success("保存成功!");
...@@ -787,7 +786,6 @@ export default { ...@@ -787,7 +786,6 @@ export default {
} }
}, },
e=>{ e=>{
debugger;
console.log(e.message) console.log(e.message)
} }
); );
......
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