Browse Source

commit: bugfix no tooltips

lihao16 1 year ago
parent
commit
2d50175974

+ 3 - 1
inspur-ui/src/components/FileDocUpload/index.vue

@@ -29,7 +29,7 @@
     <!-- 文件列表 -->
     <transition-group class="upload-file-list el-upload-list el-upload-list--text" name="el-fade-in-linear" tag="ul">
       <li :key="file.url" class="el-upload-list__item ele-upload-list__item-content" v-for="(file, index) in fileList">
-        <el-link :href="`${baseUrl}${file.url}`" :underline="false" target="_blank">
+        <el-link :href="`${file.url}`" :underline="false" target="_blank">
           <span class="el-icon-document"> {{ getFileName(file.name) }} </span>
         </el-link>
         <div class="ele-upload-list__item-content-action">
@@ -162,12 +162,14 @@ export default {
         this.number = 0;
         this.$emit("input", this.listToString(this.fileList));
         this.$modal.closeLoading();
+        this.$modal.msgSuccess("文件上传成功!");
       }
     },
     // 删除文件
     handleDelete(index) {
       this.fileList.splice(index, 1);
       this.$emit("input", this.listToString(this.fileList));
+      this.$modal.msgSuccess("删除成功!");
     },
     // 获取文件名称
     getFileName(name) {

+ 1 - 0
inspur-ui/src/views/party_work/meeting/branch_party.vue

@@ -397,6 +397,7 @@ export default {
     },
     handleDelOptions(index) {
       this.materialOptions.splice(index, 1);
+      this.$modal.msgSuccess("删除成功!");
     },
     handleIn(row) {
       let meetingId = row.id;