Browse Source

Pull request #6287: REPORT-83276 fix:修复FileUpload组件errorInfo未隐藏问题

Merge in DEC/decision-webui-dcm from ~ARIES.LSY/decision-webui-dcm:release/11.0 to release/11.0

* commit 'd79323b53c190664ce040d1b9e2267b2ce83070b':
  REPORT-83276 fix:修复FileUpload组件errorInfo未隐藏问题
release/11.0
Aries.Lsy-黎思妤 2 years ago
parent
commit
07ba12dbb3
  1. 3
      src/modules/components/file_upload/file_upload.ts

3
src/modules/components/file_upload/file_upload.ts

@ -157,8 +157,6 @@ export class FileUpload extends BI.Widget {
handler: function () { handler: function () {
NProgress.set(0.0); NProgress.set(0.0);
self.xhr.abort(); self.xhr.abort();
self.uploadButton.setEnable(true);
self.fileInfo.setVisible(false);
self.store.setFileName(''); self.store.setFileName('');
self.clearInfo(); self.clearInfo();
self.fireEvent(FileUpload.EVENT_CLEAR_FILE); self.fireEvent(FileUpload.EVENT_CLEAR_FILE);
@ -308,6 +306,7 @@ export class FileUpload extends BI.Widget {
public clearInfo() { public clearInfo() {
this.uploadButton.setEnable(true); this.uploadButton.setEnable(true);
this.fileInfo.setVisible(false); this.fileInfo.setVisible(false);
this.errorInfo.setVisible(false);
this.textEditor.setValue(''); this.textEditor.setValue('');
this.options.attachId = ''; this.options.attachId = '';
} }

Loading…
Cancel
Save