@newview/ui 1.1.41 → 1.1.43

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/README.md CHANGED
@@ -1,4 +1,11 @@
1
- ### 1.1.40
1
+ ### 1.1.43
2
+ 1、form表单项增加CA签字签章配置
3
+
4
+ ### 1.1.42
5
+ 1、form附件新增上传数量控制
6
+
7
+
8
+ ### 1.1.41
2
9
  1、优化LuckySheet 从Excel导入后,预览边框不显示问题。
3
10
  2、优化LuckySheet 获取行数、列数API逻辑
4
11
  3、优化LuckySheet 获取行高、列框API逻辑
@@ -189915,6 +189915,11 @@ const propDefine$i = {
189915
189915
  // 是否正在导入中
189916
189916
  type: Boolean,
189917
189917
  default: false
189918
+ },
189919
+ noImportBtn: {
189920
+ // 是否不显示导出按钮
189921
+ type: Boolean,
189922
+ default: false
189918
189923
  }
189919
189924
  };
189920
189925
  const _sfc_main$8 = defineComponent({
@@ -190040,6 +190045,9 @@ let ExcelImportInstance$1 = class ExcelImportInstance2 extends BaseInstance {
190040
190045
  this.selectedSheet.value = wsname;
190041
190046
  this.messageInfo(`${file.name} 读取完成`);
190042
190047
  this.selectedSheetIsLoading.value = false;
190048
+ if (this.props.noImportBtn) {
190049
+ this.doImportExcel();
190050
+ }
190043
190051
  };
190044
190052
  reader.readAsBinaryString(file);
190045
190053
  }
@@ -215026,6 +215034,11 @@ const propDefine = {
215026
215034
  // 是否正在导入中
215027
215035
  type: Boolean,
215028
215036
  default: false
215037
+ },
215038
+ noImportBtn: {
215039
+ // 是否不显示导出按钮
215040
+ type: Boolean,
215041
+ default: false
215029
215042
  }
215030
215043
  };
215031
215044
  defineComponent({
@@ -215151,6 +215164,9 @@ class ExcelImportInstance extends BaseInstance {
215151
215164
  this.selectedSheet.value = wsname;
215152
215165
  this.messageInfo(`${file.name} 读取完成`);
215153
215166
  this.selectedSheetIsLoading.value = false;
215167
+ if (this.props.noImportBtn) {
215168
+ this.doImportExcel();
215169
+ }
215154
215170
  };
215155
215171
  reader.readAsBinaryString(file);
215156
215172
  }