Commit c05311f3 by 无尘

fix: 修改注释

parent ee7f0790
......@@ -4,7 +4,7 @@
* @Author: 无尘
* @Date: 2020-02-08 10:27:21
* @LastEditors: 无尘
* @LastEditTime: 2020-08-17 17:25:09
* @LastEditTime: 2020-08-18 09:49:23
-->
<!--
选择门店分组组件:
......@@ -105,6 +105,13 @@ export default {
that.getGroup();
},
methods: {
/**
* @description: 过滤
* @param {String} value
* @param {Object} data
* @return {Boolean}
* @author: 无尘
*/
filterNode(value, data) {
if (!value || !data.label) return true;
return data.label.indexOf(value) !== -1;
......
......@@ -4,7 +4,7 @@
* @Author: 无尘
* @Date: 2020-02-08 10:27:21
* @LastEditors: 无尘
* @LastEditTime: 2020-08-17 17:26:34
* @LastEditTime: 2020-08-18 09:49:05
-->
<!--
选择门店分组组件:
......@@ -105,6 +105,13 @@ export default {
that.getGroup();
},
methods: {
/**
* @description: 过滤
* @param {String} value
* @param {Object} data
* @return {Boolean}
* @author: 无尘
*/
filterNode(value, data) {
if (!value || !data.label) return true;
return data.label.indexOf(value) !== -1;
......
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