Commit 32ee9d40 authored by youjie's avatar youjie

no message

parent 23936d2d
......@@ -276,7 +276,7 @@
props: ["detailsData","ID", "BusinessType"],
data() {
return {
title: '销售',
title: '详情',
VisaList: [{
Name: "不限",
Id: "0"
......@@ -420,10 +420,10 @@
handleCommand(command) {
let data = [{
path: "",
LureEmpNmae: this.detailsData.CreateByStr,//引流姓名
LureEmpNmae: encodeURIComponent(this.detailsData.CreateByStr),//引流姓名
LureEmpId: this.detailsData.CreateBy,//引流id
CRMGuestId: this.ID, //客人ID
CRMGuestName: this.detailsData.SurName+this.detailsData.Name //客人ID
CRMGuestName: encodeURIComponent(this.detailsData.SurName+this.detailsData.Name) //客人ID
}]
let href
let url = this.domainManager().erpRoutingUrl;
......
......@@ -45,7 +45,7 @@
label="客人姓名"
show-overflow-tooltip>
<template slot-scope="scope">
<span class="colorblue font-color-link" @click="openNameDetails(scope.row)">
<span :class="{'colorblue font-color-link':pagesTitle!='详情'}" @click="pagesTitle!='详情'?openNameDetails(scope.row):''">
{{scope.row.GuestName}}
</span>
</template>
......@@ -239,7 +239,7 @@ export default {
}else{
data[0].path = 'VisaProductEditOrderOP'
}
href =url +"automaticLogin?token=" +this.getLocalStorage().token +"&data=" +JSON.stringify(data);
href =url +"automaticLogin?token=" +this.getLocalStorage().token +"&data=" + JSON.stringify(data);
}else if (row.OrderType == 2) {//3跟团 4一日游
data[0].path = 'enrollTotal'
href =url +"automaticLogin?token=" +this.getLocalStorage().token +"&data=" +JSON.stringify(data);
......
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