// import React from 'react'
import { useEffect, useState } from 'react'
import { useNavigate } from 'react-router-dom'
import { useLocation } from 'react-router-dom'
import './detail.less'
import {
Button,
Loading,
Mask,
Space,
} from 'antd-mobile'
import { GetDownAll, GetDownapply, GetDownmanualPdf,GetDowncode } from '../../request/api'
import pen from '@/static/images/Detail/pen.png'
import center from '@/static/images/Detail/center.png'
import file from '@/static/images/Detail/file.png'
export default function Detail() {
const [loading, setLoading] = useState(false);//是否有加载中
const nav = useNavigate()
const location = useLocation();
const item = location.state;
useEffect(() => {
// 获取token
let token = sessionStorage.getItem('token')
if (!token) {
nav('/login')
}
if (!item) {
// 如果没有接收到item,可以导航回列表页或者显示错误信息
nav('/list');
}
// console.log(item);
// console.log(downloadAll(item.projId));
}, [])
return (
{item.projName}
产权所属者:{item.apply.authorName}
{item.apply.projDevCompleteDate}
{
setLoading(true)
const res = await GetDownapply(item.projId);
setLoading(false)
// console.log(res);
const blob = new Blob([res]);
let url = window.URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = url;
// console.log(url);
link.download = `申请表.docx`;
link.click();
URL.revokeObjectURL(url);
}}>
申请表
{
setLoading(true)
const res = await GetDownmanualPdf(item.projId);
setLoading(false)
// console.log(res);
const blob = new Blob([res]);
let url = window.URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = url;
// console.log(url);
link.download = `${item.projName}操作手册.pdf`;
link.click();
URL.revokeObjectURL(url);
}}
>
操作手册
{
setLoading(true)
const res = await GetDowncode(item.projId);
setLoading(false)
// console.log(res);
const blob = new Blob([res]);
let url = window.URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = url;
// console.log(url);
link.download = `${item.projName}源代码.zip`;
link.click();
URL.revokeObjectURL(url);
}}
>
源代码
{
// window.open(`http://192.168.0.15:7025/copyright/app/proj/download/all/${item.projId}`)
// try {
// setLoading(true)
// const res = await GetDownAll(item.projId);
// setLoading(false)
// console.log(res);
// const blob = new Blob([res]);
// let url = window.URL.createObjectURL(blob);
// const link = document.createElement("a");
// link.href = url;
// console.log(url);
// link.download = `${item.projName}.zip`;
// link.click();
// URL.revokeObjectURL(url);
// } catch (error) {
// console.log(error);
// }
setLoading(true)
const res = await GetDownAll(item.projId);
setLoading(false)
// console.log(res);
const blob = new Blob([res]);
let url = window.URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = url;
// console.log(url);
link.download = `${item.projName}.zip`;
link.click();
URL.revokeObjectURL(url);
}}>
全部
)
}