Commit 4800d9fb authored by 华国豪's avatar 华国豪 🙄

1

parent 8dfcff0a
...@@ -292,15 +292,14 @@ export default { ...@@ -292,15 +292,14 @@ export default {
}, },
methods: { methods: {
AtHim(e){ AtHim(e){
console.log(e.target.dataset.flow, e.target.dataset.scene) if (e.target.dataset.flow == "out" || e.target.dataset.scene !== 'team') {
if (e.target.dataset.flow == "out" && e.target.dataset.scene !== 'team') {
return return
} else { } else {
this.MsgBus.$emit('open-atBox', e.target.dataset.name, e.clientY, e.clientX, e.target.dataset.id, e.target.dataset.scene) this.MsgBus.$emit('open-atBox', e.target.dataset.name, e.clientY, e.clientX, e.target.dataset.id, e.target.dataset.scene)
} }
}, },
headAtBoxShow(e){ headAtBoxShow(e){
if (e.target.dataset.flow == "out" && e.target.dataset.scene !== 'team') { if (e.target.dataset.flow == "out" || e.target.dataset.scene !== 'team') {
return false return false
} else { } else {
this.MsgBus.$emit('open-card', e.target.dataset.name, e.clientY-30, e.clientX+30, e.target.dataset.id, true) this.MsgBus.$emit('open-card', e.target.dataset.name, e.clientY-30, e.clientX+30, e.target.dataset.id, true)
......
...@@ -252,6 +252,7 @@ export default { ...@@ -252,6 +252,7 @@ export default {
}); });
}, },
createImage(dataurl){ createImage(dataurl){
console.log('图片来了!!!!!!!!!!!')
var strLen = dataurl.length; var strLen = dataurl.length;
var size = strLen-(strLen/8)*2; var size = strLen-(strLen/8)*2;
let f = { let f = {
......
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