hrsass-components 1.7.59 → 1.7.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/hrsass-components.js +4 -2
- package/lib/hrsass-components.min.js +1 -1
- package/package.json +1 -1
- package/rollup.build.css +5216 -0
package/lib/hrsass-components.js
CHANGED
|
@@ -65,7 +65,7 @@ var contentStyle = _interopDefault(require('!!raw-loader!tinymce/skins/content/d
|
|
|
65
65
|
var SvgPanZoom = _interopDefault(require('svg-pan-zoom'));
|
|
66
66
|
var saveSvgAsPng = require('save-svg-as-png');
|
|
67
67
|
|
|
68
|
-
var version = "1.7.
|
|
68
|
+
var version = "1.7.60";
|
|
69
69
|
|
|
70
70
|
/**
|
|
71
71
|
* 版本号
|
|
@@ -3913,7 +3913,9 @@ var HrSelectEmp = {
|
|
|
3913
3913
|
handleChange: function handleChange(searchValue) {
|
|
3914
3914
|
this.searchValue = searchValue || '';
|
|
3915
3915
|
//修复全删,input框清除不了
|
|
3916
|
-
|
|
3916
|
+
if (!searchValue || searchValue === '') {
|
|
3917
|
+
this.$emit('change', undefined);
|
|
3918
|
+
}
|
|
3917
3919
|
},
|
|
3918
3920
|
handleSelect: function handleSelect(value, vnode) {
|
|
3919
3921
|
if (value && value.indexOf('$$') > -1) {
|