zhuliu 5 months ago
parent
commit
d08616849a

+ 1 - 1
src/views/report/InvalidResponse/components/Evidence/evidence.vue

@@ -91,7 +91,7 @@
                     <template slot-scope="scope">
                         <div v-if="scope.row.systemFiles && scope.row.systemFiles.length">
                             <div v-for="(file, index) in scope.row.systemFiles" :key="index" style="margin:0;display:flex;justify-content:space-around;">
-                                <p style="margin:0;width:calc(100% - 40px);overflow: hidden;white-space: nowrap;text-overflow:ellipsis;cursor: pointer;">{{file.originalName}}</p> 
+                                <p :title="file.originalName" style="margin:0;width:calc(100% - 40px);overflow: hidden;white-space: nowrap;text-overflow:ellipsis;cursor: pointer;">{{file.originalName}}</p> 
                                 <myMenu :data="file" :deleted="false" ></myMenu>
                             </div>
                         </div>

+ 3 - 1
src/views/report/InvalidResponse/components/ManualImport/manualImport.vue

@@ -208,10 +208,12 @@ export default {
                 let index = row.systemFiles.findIndex(item=>{
                     return item.uid == file.uid
                 })
+                let guid = response.data[0]
                 if(index != -1){
+                    file.raw.guid = guid
                     row.systemFiles.splice(index,1,file.raw)
                 }
-                row.fileGuids.push(response.data[0])
+                row.fileGuids.push(guid)
             }
         })
     },