Commit 043f4f00 by 无尘

fix: 修改绑定导购

parent 13e362bd
......@@ -3,7 +3,7 @@
* @Author : 无尘
* @Date : 2020-02-13 16:13:59
* @LastEditors: 无尘
* @LastEditTime: 2020-10-22 15:10:42
* @LastEditTime: 2020-11-30 17:15:23
* @FilePath : \haoban-4\src\components\company\add-relate.vue
-->
<!--
......@@ -170,16 +170,21 @@ export default {
},
/**
* @description: 输入
* @param {Object} e
* @author: 无尘
*/
toInput: _debounce(function() {
toInput: _debounce(function(e) {
const that = this;
if (that.searchSelect.trim() == '') {
that.storeData = [];
if (e.keyCode == 8) {
that.selectId = '';
that.partForm.salerName = '';
}
return false;
}
that.getData();
}, 500),
}, 200),
/**
* @description: 搜索清除
* @author: 无尘
......
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