|
|
@@ -218,7 +218,7 @@ const SliceDetail: React.FC = () => {
|
|
|
},
|
|
|
}}
|
|
|
value={contentMd}
|
|
|
- style={{ height: "450px", width: "98%" }}
|
|
|
+ style={{ height: "450px", width: "100%" }}
|
|
|
renderHTML={customRender}
|
|
|
onChange={({ text }) => setContentMd(text)}
|
|
|
onBlur={(e: React.FocusEvent<HTMLTextAreaElement>) => {
|
|
|
@@ -415,8 +415,9 @@ const SliceDetail: React.FC = () => {
|
|
|
>
|
|
|
保存
|
|
|
</Button>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
<Button
|
|
|
- style={{ marginLeft: 16 }}
|
|
|
type="default"
|
|
|
disabled={
|
|
|
currentIndex <= 0 ||
|
|
|
@@ -425,7 +426,7 @@ const SliceDetail: React.FC = () => {
|
|
|
}
|
|
|
onClick={handlePrevious}
|
|
|
>
|
|
|
- 上一步
|
|
|
+ 上一页
|
|
|
</Button>
|
|
|
<Button
|
|
|
style={{ marginLeft: 8 }}
|
|
|
@@ -437,7 +438,7 @@ const SliceDetail: React.FC = () => {
|
|
|
}
|
|
|
onClick={handleNext}
|
|
|
>
|
|
|
- 下一步
|
|
|
+ 下一页
|
|
|
</Button>
|
|
|
</div>
|
|
|
</div>
|