This commit is contained in:
xiaozhiyong
2023-02-20 10:02:33 +08:00
parent 686ca1220d
commit a4a912ff5f
2 changed files with 5 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ export default {
params: Object, params: Object,
config: Object, config: Object,
// config: { // config: {
// serveTarget: {}, // 接口 // serveTarget: {}, // 远程搜索接口
// autocomplateKey: "", //远程搜索接口参数名 // autocomplateKey: "", //远程搜索接口参数名
// querykey: "", //查询接口参数名 // querykey: "", //查询接口参数名
// }, // },

View File

@@ -23,6 +23,9 @@ Vue.directive("checkNum", {
}); });
}, },
unbind(el) { unbind(el) {
el.children[0].removeEventListener("keyup"); // console.log("el.children", el.children);
// if (el.children.length) {
// el.children[0].removeEventListener("keyup");
// }
}, },
}); });