fix(): 年度位移统计表修复导出
parent
646aa39239
commit
5f0d0cfcc5
|
|
@ -125,7 +125,7 @@ const Page = () => {
|
|||
const exportExcel = () => {
|
||||
let params = {
|
||||
...searchVal,
|
||||
stationCodes: trData.map(s => s.stationCode),
|
||||
stationCodes: [trData.find(s => s.stationCode == wyObj.wy)?.stationCode],
|
||||
type:2,
|
||||
id:1
|
||||
}
|
||||
|
|
|
|||
|
|
@ -244,7 +244,7 @@ const ModalForm = ({ mode, record, onEdit, onSave, onSimilarSave }) => {
|
|||
}
|
||||
<Row gutter={[16]}>
|
||||
{
|
||||
imgloading ? <span>文件正在上传中,请等待</span> :
|
||||
// imgloading ? <span>文件正在上传中,请等待</span> :
|
||||
imgfileList.length > 0 && imgfileList.map(file => {
|
||||
return (
|
||||
<Col span={12}>
|
||||
|
|
@ -295,7 +295,7 @@ const ModalForm = ({ mode, record, onEdit, onSave, onSimilarSave }) => {
|
|||
}
|
||||
<Row gutter={[16]}>
|
||||
{
|
||||
videoLoading ? <span>文件正在上传中,请等待</span> :
|
||||
// videoLoading ? <span>文件正在上传中,请等待</span> :
|
||||
videoFileList.length > 0 && videoFileList.map(file => {
|
||||
return (
|
||||
<Col span={12}>
|
||||
|
|
|
|||
Loading…
Reference in New Issue