Przeglądaj źródła

fix: 软件锁下载增加s

outaozhen 5 lat temu
rodzic
commit
68d2a01e1e

+ 1 - 1
src/pages/Product/Lock/Lockstore/components/DownUpdateFile/index.jsx

@@ -9,7 +9,7 @@ const DownUpdateFile = ({ updateFile }) => {
   if (isNullOrUnDef(updateFile) || isEmpty(updateFile)) return null
   const handleDownExcel = () => {
     const oa = document.createElement('a')
-    oa.href = `http://cld.smartcost.com.cn/${updateFile}`
+    oa.href = `https://cld.smartcost.com.cn/${updateFile}`
     oa.setAttribute('target', '_blank')
     document.body.appendChild(oa)
     oa.click()