Browse Source

考勤管理-代码格式

jingbb 1 year ago
parent
commit
23c68256b9
1 changed files with 11 additions and 11 deletions
  1. 11 11
      src/views/oa/salary_management/Attendance/attendanceManagement.vue

+ 11 - 11
src/views/oa/salary_management/Attendance/attendanceManagement.vue

@@ -193,17 +193,17 @@
             if (typeof window.navigator.msSaveBlob !== 'undefined') {
                 window.navigator.msSaveBlob(new Blob([data], { type: 'application/vnd.ms-excel' }),  record.type + '.xlsx')
             } else {
-            let url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
-            let link = document.createElement('a')
-            link.style.display = 'none'
-            link.href = url
-            link.setAttribute('download',  record.type+'.xlsx')
-            document.body.appendChild(link)
-            link.click()
-            document.body.removeChild(link) // 下载完成移除元素
-            window.URL.revokeObjectURL(url) // 释放掉blob对象
-        }
-      })
+              let url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
+              let link = document.createElement('a')
+              link.style.display = 'none'
+              link.href = url
+              link.setAttribute('download',  record.type+'.xlsx')
+              document.body.appendChild(link)
+              link.click()
+              document.body.removeChild(link) // 下载完成移除元素
+              window.URL.revokeObjectURL(url) // 释放掉blob对象
+            }
+          })
 
         },
         onChange(data){