Compare commits

..

No commits in common. "668c6885f562f55bbd2d41ff6b14cfd8c961da68" and "5c7622aa5277d36643496b4ea990d6904d84bf1c" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -125,7 +125,7 @@ const Page = () => {
const exportExcel = () => { const exportExcel = () => {
let params = { let params = {
...searchVal, ...searchVal,
stationCodes: [trData.find(s => s.stationCode == wyObj.wy)?.stationCode], stationCodes: trData.map(s => s.stationCode),
type:2, type:2,
id:1 id:1
} }

View File

@ -244,7 +244,7 @@ const ModalForm = ({ mode, record, onEdit, onSave, onSimilarSave }) => {
} }
<Row gutter={[16]}> <Row gutter={[16]}>
{ {
// imgloading ? <span>文件正在上传中,请等待</span> : imgloading ? <span>文件正在上传中请等待</span> :
imgfileList.length > 0 && imgfileList.map(file => { imgfileList.length > 0 && imgfileList.map(file => {
return ( return (
<Col span={12}> <Col span={12}>
@ -295,7 +295,7 @@ const ModalForm = ({ mode, record, onEdit, onSave, onSimilarSave }) => {
} }
<Row gutter={[16]}> <Row gutter={[16]}>
{ {
// videoLoading ? <span>文件正在上传中,请等待</span> : videoLoading ? <span>文件正在上传中请等待</span> :
videoFileList.length > 0 && videoFileList.map(file => { videoFileList.length > 0 && videoFileList.map(file => {
return ( return (
<Col span={12}> <Col span={12}>