iov-pro-components 0.0.118 → 0.0.119
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.
|
@@ -28726,7 +28726,9 @@ var script = {
|
|
|
28726
28726
|
onDeleteFile: function onDeleteFile(file) {
|
|
28727
28727
|
// 过滤当前文件列表
|
|
28728
28728
|
var fileList = this.modelValue.filter(function (f) {
|
|
28729
|
-
return f
|
|
28729
|
+
return !Object.keys(f).every(function (k) {
|
|
28730
|
+
return f[k] === file[k];
|
|
28731
|
+
});
|
|
28730
28732
|
});
|
|
28731
28733
|
// 更新文件列表
|
|
28732
28734
|
this.onChangeModelValue(fileList);
|
|
@@ -29247,7 +29249,7 @@ var install = function install(Vue, componentConfig) {
|
|
|
29247
29249
|
};
|
|
29248
29250
|
var index = {
|
|
29249
29251
|
install: install,
|
|
29250
|
-
version: '0.0.
|
|
29252
|
+
version: '0.0.119',
|
|
29251
29253
|
BackTop: __vue_component__$K,
|
|
29252
29254
|
ColorPicker: __vue_component__$E,
|
|
29253
29255
|
ColumnTooltip: __vue_component__$D,
|