Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
L
LiFeiShiYong
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
仿真软件web页面
LiFeiShiYong
Commits
edcddbdd
提交
edcddbdd
authored
8月 24, 2019
作者:
王绍森
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
有跳转的动画增加3秒延时;增加返回,主页按钮。
上级
0991c801
显示空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
161 行增加
和
65 行删除
+161
-65
AddAlkalineBtn.js
src/pages/FertilizeByGround/Acid/AddAlkalineBtn.js
+0
-1
AddOrganicBtn.js
src/pages/FertilizeByGround/Acid/AddOrganicBtn.js
+0
-1
index.js
src/pages/FertilizeByGround/index.js
+14
-21
FertilizeConcentrated.js
src/pages/FertilizeConcentrated.js
+2
-3
FertilizeControl.js
src/pages/FertilizeControl.js
+2
-3
lifetime.js
src/pages/FertilizeEarly/Corn/lifetime.js
+7
-9
lifetime.js
src/pages/FertilizeEarly/Rape/lifetime.js
+5
-5
lifetime.js
src/pages/FertilizeEarly/Wheat/lifetime.js
+7
-6
select.js
src/pages/FertilizeEarly/select.js
+1
-4
SubHome.js
src/pages/SubHome.js
+3
-3
Video.js
src/pages/Video.js
+120
-9
没有找到文件。
src/pages/FertilizeByGround/Acid/AddAlkalineBtn.js
浏览文件 @
edcddbdd
import
React
from
'react'
;
import
styled
from
'styled-components'
;
import
styled
from
'styled-components'
;
import
bg
from
'../../../磷肥施用技术切图/默认状态/画面a-1-assets/施用碱性肥料.png'
;
import
bg
from
'../../../磷肥施用技术切图/默认状态/画面a-1-assets/施用碱性肥料.png'
;
import
bgActive
from
'../../../磷肥施用技术切图/按下状态/画面a-1-按下-assets/施用碱性肥料.png'
;
import
bgActive
from
'../../../磷肥施用技术切图/按下状态/画面a-1-按下-assets/施用碱性肥料.png'
;
...
...
src/pages/FertilizeByGround/Acid/AddOrganicBtn.js
浏览文件 @
edcddbdd
import
React
from
'react'
;
import
styled
from
'styled-components'
;
import
styled
from
'styled-components'
;
import
bg
from
'../../../磷肥施用技术切图/默认状态/画面a-1-assets/增施有机肥.png'
;
import
bg
from
'../../../磷肥施用技术切图/默认状态/画面a-1-assets/增施有机肥.png'
;
import
bgActive
from
'../../../磷肥施用技术切图/按下状态/画面a-1-按下-assets/增施有机肥.png'
;
import
bgActive
from
'../../../磷肥施用技术切图/按下状态/画面a-1-按下-assets/增施有机肥.png'
;
...
...
src/pages/FertilizeByGround/index.js
浏览文件 @
edcddbdd
...
@@ -9,6 +9,7 @@ import AlkalineGroundBg from '../../磷肥施用技术切图/默认状态/画面
...
@@ -9,6 +9,7 @@ import AlkalineGroundBg from '../../磷肥施用技术切图/默认状态/画面
import
AcidVideoSrc
from
'../../动画/因土施肥/画面a酸性土壤.mp4'
;
import
AcidVideoSrc
from
'../../动画/因土施肥/画面a酸性土壤.mp4'
;
import
NeutralVideoSrc
from
'../../动画/因土施肥/画面b中性土壤.mp4'
;
import
NeutralVideoSrc
from
'../../动画/因土施肥/画面b中性土壤.mp4'
;
import
AlkalineVideoSrc
from
'../../动画/因土施肥/画面c石灰性土壤.mp4'
;
import
AlkalineVideoSrc
from
'../../动画/因土施肥/画面c石灰性土壤.mp4'
;
import
VideoDiy
from
'../Video'
;
const
Container
=
styled
(
WheatBg
)
`
const
Container
=
styled
(
WheatBg
)
`
display: flex;
display: flex;
...
@@ -63,26 +64,20 @@ const videoSrcs = {
...
@@ -63,26 +64,20 @@ const videoSrcs = {
}
}
function
FertilizeByGround
({
history
,
match
})
{
function
FertilizeByGround
({
history
,
match
})
{
const
videoRef
=
useRef
(
null
);
const
videoRef
=
useRef
({});
const
[
isPlay
,
setIsPlay
]
=
useState
(
false
);
const
[
currentType
,
setCurrentType
]
=
useState
();
// acid, neutral, alkaline
const
[
currentType
,
setCurrentType
]
=
useState
();
// acid, neutral, alkaline
const
[
isRedirect
,
setIsRedirect
]
=
useState
(
true
);
function
handleClick
(
e
,
type
,
noRedirect
)
{
e
.
preventDefault
();
setIsPlay
(
true
);
setCurrentType
(
type
);
setIsRedirect
(
noRedirect
?
false
:
true
);
}
useEffect
(()
=>
{
videoRef
.
current
.
src
=
videoSrcs
[
currentType
]
videoRef
.
current
.
play
();
},
[
currentType
]);
function
handleEnded
()
{
function
getRedirectPath
()
{
setIsPlay
(
false
);
if
(
currentType
===
'acid'
||
currentType
===
'alkaline'
)
{
if
(
isRedirect
)
{
return
`
${
match
.
url
}
/
${
currentType
}
`
;
history
.
push
(
`
${
match
.
url
}
/
${
currentType
}
`
);
}
return
null
;
}
}
function
handleClick
(
e
,
type
)
{
e
.
preventDefault
();
videoRef
.
current
.
play
(
videoSrcs
[
type
]);
setCurrentType
(
type
);
}
}
return
(
return
(
...
@@ -90,14 +85,12 @@ function FertilizeByGround({ history, match }) {
...
@@ -90,14 +85,12 @@ function FertilizeByGround({ history, match }) {
<
PositionedFertilizeByGround
as
=
"div"
/>
<
PositionedFertilizeByGround
as
=
"div"
/>
<
RowBtn
>
<
RowBtn
>
<
AcidGroundBtn
to
=
'#'
onClick
=
{
e
=>
handleClick
(
e
,
'acid'
)}
/
>
<
AcidGroundBtn
to
=
'#'
onClick
=
{
e
=>
handleClick
(
e
,
'acid'
)}
/
>
<
NeutralGroundBtn
to
=
'#'
onClick
=
{
e
=>
handleClick
(
e
,
'neutral'
,
true
)}
/
>
<
NeutralGroundBtn
to
=
'#'
onClick
=
{
e
=>
handleClick
(
e
,
'neutral'
)}
/
>
<
AlkalineGroundBtn
to
=
'#'
onClick
=
{
e
=>
handleClick
(
e
,
'alkaline'
)}
/
>
<
AlkalineGroundBtn
to
=
'#'
onClick
=
{
e
=>
handleClick
(
e
,
'alkaline'
)}
/
>
<
/RowBtn
>
<
/RowBtn
>
<
BackBtn
/>
<
BackBtn
/>
<
HomeBtn
/>
<
HomeBtn
/>
<
VideoWrapper
show
=
{
isPlay
}
>
<
VideoDiy
wrappedComponentRef
=
{
c
=>
videoRef
.
current
=
c
}
to
=
{
getRedirectPath
()}
/
>
<
StyledVideo
ref
=
{
videoRef
}
onEnded
=
{
handleEnded
}
/
>
<
/VideoWrapper
>
<
/Container
>
<
/Container
>
);
);
}
}
...
...
src/pages/FertilizeConcentrated.js
浏览文件 @
edcddbdd
...
@@ -68,8 +68,7 @@ export default function ({ match }) {
...
@@ -68,8 +68,7 @@ export default function ({ match }) {
const
videoRef
=
useRef
();
const
videoRef
=
useRef
();
function
handleClick
(
name
)
{
function
handleClick
(
name
)
{
videoRef
.
current
.
src
=
videoSrcs
[
name
+
'VideoSrc'
];
videoRef
.
current
.
play
(
videoSrcs
[
name
+
'VideoSrc'
]);
videoRef
.
current
.
play
();
}
}
return
(
return
(
<
StyledWheatBg
>
<
StyledWheatBg
>
...
@@ -88,7 +87,7 @@ export default function ({ match }) {
...
@@ -88,7 +87,7 @@ export default function ({ match }) {
<
/Container
>
<
/Container
>
<
BackBtn
/>
<
BackBtn
/>
<
HomeBtn
/>
<
HomeBtn
/>
<
Video
ref
=
{
videoRef
}
/
>
<
Video
wrappedComponentRef
=
{
c
=>
videoRef
.
current
=
c
}
/
>
<
/StyledWheatBg
>
<
/StyledWheatBg
>
);
);
}
}
src/pages/FertilizeControl.js
浏览文件 @
edcddbdd
...
@@ -62,8 +62,7 @@ export default function ({ match }) {
...
@@ -62,8 +62,7 @@ export default function ({ match }) {
const
videoRef
=
useRef
();
const
videoRef
=
useRef
();
function
handleClick
(
name
)
{
function
handleClick
(
name
)
{
videoRef
.
current
.
src
=
videoSrcs
[
name
+
'VideoSrc'
];
videoRef
.
current
.
play
(
videoSrcs
[
name
+
'VideoSrc'
]);
videoRef
.
current
.
play
();
}
}
return
(
return
(
<
StyledWheatBg
>
<
StyledWheatBg
>
...
@@ -82,7 +81,7 @@ export default function ({ match }) {
...
@@ -82,7 +81,7 @@ export default function ({ match }) {
<
/Container
>
<
/Container
>
<
BackBtn
/>
<
BackBtn
/>
<
HomeBtn
/>
<
HomeBtn
/>
<
Video
ref
=
{
videoRef
}
/
>
<
Video
wrappedComponentRef
=
{
c
=>
videoRef
.
current
=
c
}
/
>
<
/StyledWheatBg
>
<
/StyledWheatBg
>
);
);
}
}
src/pages/FertilizeEarly/Corn/lifetime.js
浏览文件 @
edcddbdd
import
React
,
{
useState
,
useRef
}
from
'react'
;
import
React
,
{
useRef
}
from
'react'
;
import
{
Link
,
withRouter
}
from
'react-router-dom'
;
import
styled
from
'styled-components'
;
import
styled
from
'styled-components'
;
import
WheatBg
from
'../../WheatBg'
;
import
WheatBg
from
'../../WheatBg'
;
import
ContainerBg
from
'../../../磷肥施用技术切图/默认状态/玉米02-assets/玉米.png'
;
import
ContainerBg
from
'../../../磷肥施用技术切图/默认状态/玉米02-assets/玉米.png'
;
import
{
BackBtn
,
HomeBtn
}
from
'../../SubHome'
;
import
{
BackBtn
,
HomeBtn
}
from
'../../SubHome'
;
import
Video
from
'../../Video'
;
import
Video
Diy
from
'../../Video'
;
import
SeedlingBg
from
'../../../磷肥施用技术切图/默认状态/玉米02-assets/苗期.png'
import
SeedlingBg
from
'../../../磷肥施用技术切图/默认状态/玉米02-assets/苗期.png'
import
JointingBg
from
'../../../磷肥施用技术切图/默认状态/玉米02-assets/拔节期.png'
import
JointingBg
from
'../../../磷肥施用技术切图/默认状态/玉米02-assets/拔节期.png'
...
@@ -70,12 +69,11 @@ const videoSrcs = {
...
@@ -70,12 +69,11 @@ const videoSrcs = {
TasselVideoSrcs
,
TasselVideoSrcs
,
MaturityVideoSrcs
,
MaturityVideoSrcs
,
};
};
export
default
withRouter
(({
match
,
history
}
)
=>
{
export
default
(
)
=>
{
const
videoRef
=
useRef
();
const
videoRef
=
useRef
();
function
handleClick
(
name
)
{
function
handleClick
(
name
)
{
videoRef
.
current
.
src
=
videoSrcs
[
name
+
'VideoSrcs'
];
videoRef
.
current
.
play
(
videoSrcs
[
name
+
'VideoSrcs'
]);
videoRef
.
current
.
play
();
}
}
return
(
return
(
...
@@ -95,7 +93,7 @@ export default withRouter(({ match, history }) => {
...
@@ -95,7 +93,7 @@ export default withRouter(({ match, history }) => {
<
BackBtn
/>
<
BackBtn
/>
<
HomeBtn
/>
<
HomeBtn
/>
<
Video
ref
=
{
videoRef
}
/
>
<
Video
Diy
wrappedComponentRef
=
{
c
=>
videoRef
.
current
=
c
}
/
>
<
/WheatBg
>
<
/WheatBg
>
);
);
});
};
\ No newline at end of file
\ No newline at end of file
src/pages/FertilizeEarly/Rape/lifetime.js
浏览文件 @
edcddbdd
import
React
,
{
use
State
,
use
Ref
}
from
'react'
;
import
React
,
{
useRef
}
from
'react'
;
import
{
Link
,
withRouter
}
from
'react-router-dom'
;
import
{
withRouter
}
from
'react-router-dom'
;
import
styled
from
'styled-components'
;
import
styled
from
'styled-components'
;
import
WheatBg
from
'../../WheatBg'
;
import
WheatBg
from
'../../WheatBg'
;
import
ContainerBg
from
'../../../磷肥施用技术切图/默认状态/油菜02-assets/油菜.png'
;
import
ContainerBg
from
'../../../磷肥施用技术切图/默认状态/油菜02-assets/油菜.png'
;
...
@@ -69,8 +69,7 @@ export default withRouter(({ match, history }) => {
...
@@ -69,8 +69,7 @@ export default withRouter(({ match, history }) => {
function
handleClick
(
name
)
{
function
handleClick
(
name
)
{
if
(
name
===
'Flowering'
)
return
;
if
(
name
===
'Flowering'
)
return
;
videoRef
.
current
.
src
=
videoSrcs
[
name
+
'VideoSrcs'
];
videoRef
.
current
.
play
(
videoSrcs
[
name
+
'VideoSrcs'
]);
videoRef
.
current
.
play
();
}
}
return
(
return
(
...
@@ -90,7 +89,7 @@ export default withRouter(({ match, history }) => {
...
@@ -90,7 +89,7 @@ export default withRouter(({ match, history }) => {
<
BackBtn
/>
<
BackBtn
/>
<
HomeBtn
/>
<
HomeBtn
/>
<
Video
ref
=
{
videoRef
}
/
>
<
Video
wrappedComponentRef
=
{
c
=>
videoRef
.
current
=
c
}
/
>
<
/WheatBg
>
<
/WheatBg
>
);
);
});
});
\ No newline at end of file
src/pages/FertilizeEarly/Wheat/lifetime.js
浏览文件 @
edcddbdd
import
React
,
{
useState
,
useRef
}
from
'react'
;
import
React
,
{
useState
,
useRef
}
from
'react'
;
import
{
Link
,
withRouter
}
from
'react-router-dom'
;
import
{
withRouter
}
from
'react-router-dom'
;
import
styled
from
'styled-components'
;
import
styled
from
'styled-components'
;
import
WheatBg
from
'../../WheatBg'
;
import
WheatBg
from
'../../WheatBg'
;
import
ContainerBg
from
'../../../磷肥施用技术切图/默认状态/冬小麦02 -assets/冬小麦.png'
;
import
ContainerBg
from
'../../../磷肥施用技术切图/默认状态/冬小麦02 -assets/冬小麦.png'
;
...
@@ -91,14 +91,14 @@ export default withRouter(({ match, history }) => {
...
@@ -91,14 +91,14 @@ export default withRouter(({ match, history }) => {
function
handleClick
(
name
)
{
function
handleClick
(
name
)
{
setName
(
name
);
setName
(
name
);
if
(
name
===
'Tiller'
)
return
;
if
(
name
===
'Tiller'
)
return
;
videoRef
.
current
.
src
=
videoSrcs
[
name
+
'VideoSrcs'
];
videoRef
.
current
.
play
(
videoSrcs
[
name
+
'VideoSrcs'
]);
videoRef
.
current
.
play
();
}
}
function
handleEnded
()
{
function
getRedirectPath
()
{
if
(
name
===
'Seedling'
)
{
if
(
name
===
'Seedling'
)
{
history
.
push
(
`
${
match
.
url
}
/Seedling`
)
;
return
`
${
match
.
url
}
/Seedling`
;
}
}
return
null
;
}
}
return
(
return
(
...
@@ -118,7 +118,7 @@ export default withRouter(({ match, history }) => {
...
@@ -118,7 +118,7 @@ export default withRouter(({ match, history }) => {
<
BackBtn
/>
<
BackBtn
/>
<
HomeBtn
/>
<
HomeBtn
/>
<
Video
ref
=
{
videoRef
}
onEnded
=
{
handleEnded
}
/
>
<
Video
wrappedComponentRef
=
{
c
=>
videoRef
.
current
=
c
}
to
=
{
getRedirectPath
}
/
>
<
/WheatBg
>
<
/WheatBg
>
);
);
});
});
\ No newline at end of file
src/pages/FertilizeEarly/select.js
浏览文件 @
edcddbdd
...
@@ -32,7 +32,7 @@ const bgs = {
...
@@ -32,7 +32,7 @@ const bgs = {
WheatBtnBg
,
WheatBtnBgActive
,
RapeBtnBg
,
RapeBtnBgActive
,
CornBtnBg
,
CornBtnBgActive
,
WheatBtnBg
,
WheatBtnBgActive
,
RapeBtnBg
,
RapeBtnBgActive
,
CornBtnBg
,
CornBtnBgActive
,
};
};
[
'Wheat'
,
'Rape'
,
'Corn'
].
map
(
name
=>
{
[
'Wheat'
,
'Rape'
,
'Corn'
].
forEach
(
name
=>
{
Btns
[
name
]
=
styled
(
Btn
)
`
Btns
[
name
]
=
styled
(
Btn
)
`
margin-top: 79px;
margin-top: 79px;
background-image: url(
${
bgs
[
name
+
'BtnBg'
]}
);
background-image: url(
${
bgs
[
name
+
'BtnBg'
]}
);
...
@@ -41,9 +41,6 @@ const bgs = {
...
@@ -41,9 +41,6 @@ const bgs = {
}
}
`
;
`
;
});
});
const
Row
=
styled
.
div
`
`
;
const
Col
=
styled
.
div
`
const
Col
=
styled
.
div
`
display: inline-block;
display: inline-block;
text-align: center;
text-align: center;
...
...
src/pages/SubHome.js
浏览文件 @
edcddbdd
...
@@ -52,12 +52,12 @@ const FertilizeControl = styled(FertilizeBtn)`
...
@@ -52,12 +52,12 @@ const FertilizeControl = styled(FertilizeBtn)`
background-image: url(
${
FertilizeControlBg
}
);
background-image: url(
${
FertilizeControlBg
}
);
margin-right: 0;
margin-right: 0;
`
;
`
;
export
const
BackBtn
=
withRouter
((
props
)
=>
{
export
const
BackBtn
=
withRouter
((
{
onClick
,
history
}
)
=>
{
function
handleClick
(
e
)
{
function
handleClick
(
e
)
{
e
.
preventDefault
();
e
.
preventDefault
();
props
.
history
.
goBack
();
history
.
goBack
();
}
}
return
<
StyledBackBtn
to
=
"#"
onClick
=
{
handleClick
}
/
>
return
<
StyledBackBtn
to
=
"#"
onClick
=
{
onClick
||
handleClick
}
/
>
});
});
export
function
HomeBtn
()
{
export
function
HomeBtn
()
{
...
...
src/pages/Video.js
浏览文件 @
edcddbdd
import
React
,
{
useRef
,
useState
,
useEffect
}
from
'react'
;
import
React
from
'react'
;
import
styled
from
'styled-components'
;
import
styled
from
'styled-components'
;
import
{
withRouter
}
from
'react-router-dom'
;
import
{
HomeBtn
,
BackBtn
}
from
'./SubHome'
;
const
VideoWrapper
=
styled
.
div
`
const
VideoWrapper
=
styled
.
div
`
position: absolute;
position: absolute;
...
@@ -14,17 +16,125 @@ const VideoWrapper = styled.div`
...
@@ -14,17 +16,125 @@ const VideoWrapper = styled.div`
const
StyledVideo
=
styled
.
video
`
const
StyledVideo
=
styled
.
video
`
height: 100%;
height: 100%;
`
;
`
;
export
default
React
.
forwardRef
(({
onEnded
},
ref
)
=>
{
class
VideoDiy
extends
React
.
Component
{
const
[
show
,
setShow
]
=
useState
(
false
);
constructor
(
props
)
{
function
handleEnded
()
{
super
(
props
);
setShow
(
false
);
this
.
state
=
{
if
(
onEnded
&&
typeof
onEnded
===
'function'
)
{
show
:
false
,
onEnded
();
timer
:
null
,
};
this
.
videoEle
=
null
;
}
play
=
(
src
)
=>
{
if
(
!
this
.
videoEle
||
!
src
)
return
;
this
.
videoEle
.
src
=
src
;
this
.
videoEle
.
oncanplay
=
()
=>
{
var
playPromise
=
this
.
videoEle
.
play
();
if
(
!
playPromise
)
return
;
playPromise
.
then
(
_
=>
{
console
.
log
(
"video played"
);
})
.
catch
(
err
=>
{
console
.
log
(
err
);
});
}
}
handleVideoBack
=
(
e
)
=>
{
e
.
preventDefault
();
if
(
this
.
videoEle
)
this
.
videoEle
.
pause
();
this
.
setState
({
show
:
false
});
if
(
this
.
state
.
timer
)
clearTimeout
(
this
.
state
.
timer
);
}
handleEnded
=
()
=>
{
const
{
to
,
history
}
=
this
.
props
;
if
(
this
.
props
.
to
)
{
const
timer
=
setTimeout
(()
=>
{
this
.
setState
({
show
:
false
});
history
.
push
(
to
);
},
3000
);
this
.
setState
({
timer
});
}
else
{
this
.
setState
({
show
:
false
});
}
}
}
}
render
()
{
const
{
show
}
=
this
.
state
;
return
(
return
(
<
VideoWrapper
show
=
{
show
}
>
<
VideoWrapper
show
=
{
show
}
>
<
StyledVideo
ref
=
{
ref
}
onPlay
=
{()
=>
setShow
(
true
)}
onEnded
=
{
handleEnded
}
/
>
<
StyledVideo
ref
=
{
node
=>
this
.
videoEle
=
node
}
onPlay
=
{()
=>
this
.
setState
({
show
:
true
})}
onEnded
=
{
this
.
handleEnded
}
/
>
<
BackBtn
onClick
=
{
this
.
handleVideoBack
}
/
>
<
HomeBtn
/>
<
/VideoWrapper
>
<
/VideoWrapper
>
);
);
});
}
}
// const VideoDiy = React.forwardRef(({ to }, ref) => {
// const WithRouterVideo = withRouter(({ history }) => {
// const [show, setShow] = useState(false);
// const [timer, setTimer] = useState(null);
// const videoRef = useRef();
// if (ref.current) {
// ref.current.play = play;
// }
// function play(src) {
// const videoEle = videoRef.current;
// if (!videoEle || !src) return;
// console.log('play: ', src, videoEle);
// videoEle.src = src;
// videoEle.oncanplay = () => {
// var playPromise = videoEle.play();
// if (!playPromise) return;
// playPromise
// .then(d => {
// console.log("video played", d);
// })
// .catch(err => {
// console.log(err);
// });
// }
// }
// function handleVideoBack(e) {
// e.preventDefault();
// const videoEle = videoRef.current;
// if (videoEle) videoEle.pause();
// setShow(false);
// if (timer) clearTimeout(timer);
// }
// function handleEnded() {
// if (to) {
// setTimer(
// setTimeout(() => {
// setShow(false);
// history.push(to);
// }, 3000)
// );
// } else {
// setShow(false);
// }
// }
// return (
// <VideoWrapper show={show} >
// <StyledVideo ref={videoRef} onPlay={() => setShow(true)} onEnded={handleEnded} />
// <BackBtn onClick={handleVideoBack} />
// <HomeBtn />
// </VideoWrapper>
// );
// });
// return <WithRouterVideo />
// });
export
default
withRouter
(
VideoDiy
);
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论