跳转提示
This commit is contained in:
parent
e3407b1046
commit
0c8e81f484
@ -181,7 +181,6 @@
|
|||||||
me.loginIn(res.data.token); //存储一个字符传值
|
me.loginIn(res.data.token); //存储一个字符传值
|
||||||
// 缓存用户的信息
|
// 缓存用户的信息
|
||||||
uni.setStorageSync('user_info',res.data);
|
uni.setStorageSync('user_info',res.data);
|
||||||
|
|
||||||
if (res.data.member.has_labels) {
|
if (res.data.member.has_labels) {
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/index/index'
|
url: '/pages/index/index'
|
||||||
|
@ -256,32 +256,40 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
customers(){
|
customers(){
|
||||||
function Friend(uuid, name, avatar,time = "", text = "",date = "") {
|
if(!this.$store.state.hasLogin){
|
||||||
this.uuid = uuid;
|
this.$refs.uToast.show({
|
||||||
this.name = name;
|
title: "请先登录",
|
||||||
this.avatar = avatar;
|
type: 'warning'
|
||||||
this.online = false;
|
|
||||||
this.unReadMessage = 0;
|
|
||||||
this.text = text;
|
|
||||||
this.time = time;
|
|
||||||
this.date = date
|
|
||||||
}
|
|
||||||
console.log(123)
|
|
||||||
this.$u.api.getAtwillUserInfo({
|
|
||||||
id:this.storeid
|
|
||||||
}).then((res)=>{
|
|
||||||
console.log(res)
|
|
||||||
let user = new Friend(res.data.member_id,res.data.member_nickname,res.data.member_avatar)
|
|
||||||
this.$u.route({
|
|
||||||
url:"/pageD/privateChat/privateChat",
|
|
||||||
params:{
|
|
||||||
id:JSON.stringify(user)
|
|
||||||
}
|
|
||||||
|
|
||||||
})
|
})
|
||||||
}).catch((err)=>{
|
}else{
|
||||||
console.log(err)
|
function Friend(uuid, name, avatar,time = "", text = "",date = "") {
|
||||||
})
|
this.uuid = uuid;
|
||||||
|
this.name = name;
|
||||||
|
this.avatar = avatar;
|
||||||
|
this.online = false;
|
||||||
|
this.unReadMessage = 0;
|
||||||
|
this.text = text;
|
||||||
|
this.time = time;
|
||||||
|
this.date = date
|
||||||
|
}
|
||||||
|
console.log(123)
|
||||||
|
this.$u.api.getAtwillUserInfo({
|
||||||
|
id:this.storeid
|
||||||
|
}).then((res)=>{
|
||||||
|
console.log(res)
|
||||||
|
let user = new Friend(res.data.member_id,res.data.member_nickname,res.data.member_avatar)
|
||||||
|
this.$u.route({
|
||||||
|
url:"/pageD/privateChat/privateChat",
|
||||||
|
params:{
|
||||||
|
id:JSON.stringify(user)
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
}).catch((err)=>{
|
||||||
|
console.log(err)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
setSwiperList(list) {
|
setSwiperList(list) {
|
||||||
let img = [];
|
let img = [];
|
||||||
|
Loading…
Reference in New Issue
Block a user