Commit fbc93743 authored by 华国豪's avatar 华国豪 🙄

no message

parent f615ae06
...@@ -446,6 +446,7 @@ export default { ...@@ -446,6 +446,7 @@ export default {
); );
}, },
getUnicos() { getUnicos() {
if (!localStorage.userInfo) return
let msg = {tcid:this.trip.currentPriceInfo.tcid} let msg = {tcid:this.trip.currentPriceInfo.tcid}
this.apipost( this.apipost(
"b2b_get_GetTeamUnionInfo", "b2b_get_GetTeamUnionInfo",
...@@ -457,6 +458,7 @@ export default { ...@@ -457,6 +458,7 @@ export default {
); );
}, },
getB2BSellByCustomerId(){ getB2BSellByCustomerId(){
if (!localStorage.userInfo) return
this.apipost('b2b_get_GetCustomerSummary',{},r=>{ this.apipost('b2b_get_GetCustomerSummary',{},r=>{
if(r.data.resultCode==1){ if(r.data.resultCode==1){
this.customer = r.data.data this.customer = r.data.data
......
...@@ -557,6 +557,7 @@ export default { ...@@ -557,6 +557,7 @@ export default {
); );
}, },
getUnicos() { getUnicos() {
if (!localStorage.userInfo) return
let msg = {tcid:this.trip.currentPriceInfo.tcid} let msg = {tcid:this.trip.currentPriceInfo.tcid}
this.apipost( this.apipost(
"b2b_get_GetTeamUnionInfo", "b2b_get_GetTeamUnionInfo",
...@@ -568,6 +569,7 @@ export default { ...@@ -568,6 +569,7 @@ export default {
); );
}, },
getB2BSellByCustomerId(){ getB2BSellByCustomerId(){
if (!localStorage.userInfo) return
this.apipost('b2b_get_GetCustomerSummary',{},r=>{ this.apipost('b2b_get_GetCustomerSummary',{},r=>{
if(r.data.resultCode==1){ if(r.data.resultCode==1){
this.customer = r.data.data this.customer = r.data.data
......
...@@ -898,6 +898,7 @@ export default { ...@@ -898,6 +898,7 @@ export default {
},null) },null)
}, },
getUnicos(tcid) { getUnicos(tcid) {
if (!localStorage.userInfo) return
let msg = {tcid:tcid} let msg = {tcid:tcid}
this.apipost( this.apipost(
"b2b_get_GetTeamUnionInfo", "b2b_get_GetTeamUnionInfo",
...@@ -909,6 +910,7 @@ export default { ...@@ -909,6 +910,7 @@ export default {
); );
}, },
getB2BSellByCustomerId(){ getB2BSellByCustomerId(){
if (!localStorage.userInfo) return
this.apipost('b2b_get_GetCustomerSummary',{},r=>{ this.apipost('b2b_get_GetCustomerSummary',{},r=>{
if(r.data.resultCode==1){ if(r.data.resultCode==1){
this.customer = r.data.data this.customer = r.data.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