Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TOSTUMI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Maple
TOSTUMI
Commits
c4eb4bab
Commit
c4eb4bab
authored
Jan 22, 2021
by
cellee
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'final' of
http://120.77.240.215:9701/Maple/tostumi.git
into final
parents
fc0bc1b4
8466fc73
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
8 deletions
+34
-8
PictureOptionsRow.tsx
src/components/PictureOptions/PictureOptionsRow.tsx
+22
-5
CommunityService.ts
src/models/CommunityManagement/CommunityService.ts
+8
-0
Detail.tsx
src/pages/CommercialService/Detail.tsx
+4
-3
No files found.
src/components/PictureOptions/PictureOptionsRow.tsx
View file @
c4eb4bab
...
...
@@ -15,14 +15,15 @@ function getBase64(file: File) {
}
import
{
getUrlPicName
}
from
'../../utils/string'
;
import
{
connect
}
from
'umi'
;
const
PictureOptionsRow
=
(
props
:
any
)
=>
{
const
{
value
,
onChange
,
limitNums
,
imgs
}
=
props
;
const
{
value
,
onChange
,
limitNums
,
imgs
,
loadding
,
dispatch
}
=
props
;
const
[
fileList
,
setFileList
]
=
useState
([]
as
any
);
const
[
previewVisible
,
setPreviewVisible
]
=
useState
(
false
);
const
[
previewImage
,
setPreviewImage
]
=
useState
(
''
);
const
[
limitNum
,
setLimitNum
]
=
useState
(
5
);
const
handleCancel
=
()
=>
setPreviewVisible
(
false
);
const
[
imgLoad
,
setimgLoad
]
=
useState
(
false
);
//图片上传 load状态
//
const [imgLoad, setimgLoad] = useState(false); //图片上传 load状态
useEffect
(()
=>
{
if
(
limitNums
!=
null
)
{
...
...
@@ -63,7 +64,7 @@ const PictureOptionsRow = (props: any) => {
// 加载logo
const
uploadButton
=
(
<
div
>
{
imgLoad
?
<
LoadingOutlined
/>
:
<
PlusOutlined
/>
}
{
loadding
?
<
LoadingOutlined
/>
:
<
PlusOutlined
/>
}
<
div
className=
"ant-upload-text"
>
Upload
</
div
>
</
div
>
);
...
...
@@ -76,11 +77,20 @@ const PictureOptionsRow = (props: any) => {
setPreviewVisible
(
true
);
};
const
setLoadding
=
(
value
:
boolean
)
=>
{
dispatch
({
type
:
'CommunityService/setLoadding'
,
payload
:
{
loadding
:
value
,
},
});
};
const
handleChange
=
({
file
,
fileList
}:
any
)
=>
{
// 给传递的附加名字
// props.data.fileName = fileList[0].name;
file
.
status
===
'uploading'
?
set
imgLoad
(
true
)
:
setimgLoad
(
false
);
file
.
status
===
'uploading'
?
set
Loadding
(
true
)
:
setLoadding
(
false
);
if
(
file
.
status
==
'done'
)
{
let
tmp
=
fileList
.
filter
((
file
:
any
)
=>
{
...
...
@@ -159,4 +169,11 @@ const PictureOptionsRow = (props: any) => {
);
};
export
default
PictureOptionsRow
;
function
mapStateToProps
(
state
:
{
CommunityService
:
{
loadding
:
boolean
}
})
{
const
{
loadding
}
=
state
.
CommunityService
;
return
{
loadding
,
};
}
export
default
connect
(
mapStateToProps
)(
PictureOptionsRow
);
src/models/CommunityManagement/CommunityService.ts
View file @
c4eb4bab
...
...
@@ -18,6 +18,7 @@ export default {
Data8
:
null
,
Result
:
null
,
DataSaveDetail
:
null
,
loadding
:
false
,
},
reducers
:
{
...
...
@@ -45,6 +46,9 @@ export default {
returnDataSaveDetail
(
state
:
object
,
{
DataSaveDetail
}:
any
)
{
return
{
...
state
,
DataSaveDetail
};
},
returnLoadding
(
state
:
object
,
{
loadding
}:
{
loadding
:
boolean
})
{
return
{
...
state
,
loadding
}
}
},
effects
:
{
...
...
@@ -199,5 +203,9 @@ export default {
let
Data7
=
null
;
yield
put
({
type
:
'returnPage7'
,
Data7
});
},
*
setLoadding
({
payload
}:
{
payload
:
{
loadding
:
boolean
}
},
{
put
}:
any
)
{
yield
put
({
type
:
'returnLoadding'
,
...
payload
});
},
},
};
src/pages/CommercialService/Detail.tsx
View file @
c4eb4bab
...
...
@@ -16,7 +16,7 @@ const treatStatus = ['Pending', 'Processed'];
const
Detail
=
(
props
:
any
)
=>
{
const
[
editorFlag
,
setEditorFlag
]
=
useState
(
true
);
const
{
dispatch
,
location
,
CurDataDetail
}
=
props
;
const
{
dispatch
,
location
,
CurDataDetail
,
loadding
}
=
props
;
const
fromRef
=
useRef
(
null
)
as
any
;
const
RA
=
(
index
:
any
,
values
:
any
)
=>
{
dispatch
({
type
:
'CommunityService/RA'
,
playload
:
{
index
:
index
,
body
:
values
}
});
...
...
@@ -232,7 +232,7 @@ const Detail = (props: any) => {
<
Col
span=
{
3
}
></
Col
>
<
Col
>
<
Form
.
Item
>
<
Button
type=
"primary"
htmlType=
"submit"
>
<
Button
disabled=
{
loadding
}
type=
"primary"
htmlType=
"submit"
>
Submit
</
Button
>
</
Form
.
Item
>
...
...
@@ -252,9 +252,10 @@ const Detail = (props: any) => {
};
function
mapStateToProps
(
state
:
any
)
{
const
{
CurDataDetail
}
=
state
.
CommunityService
;
const
{
CurDataDetail
,
loadding
}
=
state
.
CommunityService
;
return
{
CurDataDetail
,
loadding
,
};
}
export
default
connect
(
mapStateToProps
)(
Detail
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment