Commit b21a0051 authored by XieZhiXiong's avatar XieZhiXiong

chore: 修改样式

parent 25a61922
/*
* @Author: XieZhiXiong
* @Date: 2020-09-15 17:48:36
* @LastEditors: zwp
* @LastEditTime: 2021-01-06 10:54:54
* @LastEditors: XieZhiXiong
* @LastEditTime: 2021-01-22 10:44:04
* @Description: 内外部流转记录组件
*/
import React from 'react';
......@@ -43,7 +43,7 @@ const AuditProcess: React.FC<AuditProcessProp> = ({
{
outerVerifySteps?.length > 0 &&
<Tabs.TabPane tab="外部审核流程" key="1">
<Steps style={{ marginTop: 30 }} progressDot current={outerVerifyCurrent}>
<Steps style={{ marginTop: 30, overflow: 'auto', padding: '5px 0' }} progressDot current={outerVerifyCurrent}>
{outerVerifySteps.map(item => (
<Steps.Step
key={customKey ? item[customKey] : item.step}
......@@ -58,7 +58,7 @@ const AuditProcess: React.FC<AuditProcessProp> = ({
{
innerVerifySteps?.length > 0 &&
<Tabs.TabPane tab="内部审核流程" key="2">
<Steps style={{ marginTop: 30 }} progressDot current={innerVerifyCurrent}>
<Steps style={{ marginTop: 30, overflow: 'auto', padding: '5px 0' }} progressDot current={innerVerifyCurrent}>
{innerVerifySteps.map(item => (
<Steps.Step
key={customKey ? item[customKey] : item.step}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment