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

1

parent 8dfcff0a
......@@ -292,15 +292,14 @@ export default {
},
methods: {
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
} else {
this.MsgBus.$emit('open-atBox', e.target.dataset.name, e.clientY, e.clientX, e.target.dataset.id, e.target.dataset.scene)
}
},
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
} else {
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 {
});
},
createImage(dataurl){
console.log('图片来了!!!!!!!!!!!')
var strLen = dataurl.length;
var size = strLen-(strLen/8)*2;
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