Browse Source

用户导入提示溢出则显示滚动条

tags/v3.4.0
RuoYi 3 years ago
parent
commit
c1b223e3a7
  1. 2
      ruoyi-ui/src/views/system/user/index.vue

2
ruoyi-ui/src/views/system/user/index.vue

@ -663,7 +663,7 @@ export default { @@ -663,7 +663,7 @@ export default {
this.upload.open = false;
this.upload.isUploading = false;
this.$refs.upload.clearFiles();
this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
this.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + "</div>", "导入结果", { dangerouslyUseHTMLString: true });
this.getList();
},
//

Loading…
Cancel
Save