Commit 32ee9d40 authored by youjie's avatar youjie

no message

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