fix(测试跟踪): 功能用例自动保存问题
--bug=1022784 --user=宋昌昌 【测试跟踪】功能用例,编辑用例,只有编辑用例步骤后才会自动保存 https://www.tapd.cn/55049933/s/1337604
This commit is contained in:
parent
daa135761b
commit
a87b624b24
|
@ -48,7 +48,25 @@ export default {
|
||||||
Vue.directive('bottom-to-top-drag', Drag.bottom2TopDrag);
|
Vue.directive('bottom-to-top-drag', Drag.bottom2TopDrag);
|
||||||
Vue.directive('top-bottom-to-drag', Drag.top2BottomDrag);
|
Vue.directive('top-bottom-to-drag', Drag.top2BottomDrag);
|
||||||
Vue.directive('vertical-drag', Drag.verticalDrag);
|
Vue.directive('vertical-drag', Drag.verticalDrag);
|
||||||
//
|
Vue.directive('my-click-outside', {
|
||||||
|
bind(el, binding, vnode) {
|
||||||
|
function clickHandler(e) {
|
||||||
|
if (el.contains(e.target)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (binding.expression) {
|
||||||
|
binding.value(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
el.__vueClickOutside__ = clickHandler;
|
||||||
|
document.addEventListener('click', clickHandler);
|
||||||
|
},
|
||||||
|
update() {},
|
||||||
|
unbind(el, binding) {
|
||||||
|
document.removeEventListener('click', el.__vueClickOutside__);
|
||||||
|
delete el.__vueClickOutside__;
|
||||||
|
},
|
||||||
|
});
|
||||||
Vue.use(directive);
|
Vue.use(directive);
|
||||||
Vue.prototype.$loading = service;
|
Vue.prototype.$loading = service;
|
||||||
},
|
},
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<div class="edit-container">
|
<div class="edit-container">
|
||||||
<div
|
<div
|
||||||
class="content"
|
class="content"
|
||||||
v-click-outside="preSave"
|
v-my-click-outside="preSave"
|
||||||
@mouseleave="mouseLeaveEvent"
|
@mouseleave="mouseLeaveEvent"
|
||||||
>
|
>
|
||||||
<div class="edit" v-show="edit">
|
<div class="edit" v-show="edit">
|
||||||
|
|
Loading…
Reference in New Issue