改名
This commit is contained in:
parent
db9b387738
commit
8242edbfeb
@ -600,7 +600,7 @@ export default function TrademarkMall() {
|
||||
title: '当前进度',
|
||||
dataIndex: 'correctionStatus',
|
||||
align: 'center',
|
||||
width: 100,
|
||||
width: 120,
|
||||
render: (text) => (
|
||||
<>
|
||||
|
||||
@ -614,11 +614,11 @@ export default function TrademarkMall() {
|
||||
dataIndex: 'buyId',
|
||||
align: 'center',
|
||||
width: 100,
|
||||
render: (text) => (
|
||||
render: (text,record) => (
|
||||
<>
|
||||
|
||||
<span style={{ color: '#DD0000', fontSize: '16px', fontWeight: '700', display: text == '' ? 'unset' : 'none' }}>待补充</span>
|
||||
<span style={{ color: 'green', fontSize: '16px', fontWeight: '700', display: text == '' ? 'none' : 'unset' }}>已补充</span>
|
||||
<span style={{ color: '#DD0000', fontSize: '16px', fontWeight: '700', display: text == '' ? 'unset' : 'none' }}>{record.correctionReply=='0'?'未读':'待补充'}</span>
|
||||
<span style={{ color: 'green', fontSize: '16px', fontWeight: '700', display: text == '' ? 'none' : 'unset' }}>{record.correctionReply=='0'?'已读':'已补充'}</span>
|
||||
{/* <span> {text == '4' ? '不予受理' : text == '5' ? '已受理' : text == '6' ? '已发初审公告' : text == '7' ? '部分驳回' : text == '8' ? '全部驳回' : text == '9' ? '商标注册完成' : "未知"}</span> */}
|
||||
</>
|
||||
)
|
||||
@ -778,7 +778,7 @@ export default function TrademarkMall() {
|
||||
}
|
||||
}
|
||||
style={{ textAlign: 'center' }} // 设置表格内容居中显示
|
||||
rowKey="trademarkId" // 指定数据项的唯一标识符
|
||||
rowKey="correctionId" // 指定数据项的唯一标识符
|
||||
locale={{ emptyText: '暂无数据' }}
|
||||
></Table>
|
||||
</Modal>
|
||||
@ -799,7 +799,9 @@ export default function TrademarkMall() {
|
||||
{CorrectionType} */}
|
||||
<div className='editModal-title'>
|
||||
<div className='editModal-title-box'></div>
|
||||
<div className='editModal-title-name'>平台需要您补充的内容说明</div>
|
||||
<div className='editModal-title-name'>
|
||||
{correctionReply == '1' ? '平台需要您补充的内容说明' : '通知'}
|
||||
</div>
|
||||
</div>
|
||||
<div className='correctionTitleBox'>
|
||||
<div className='correctionTitle'>主题</div>
|
||||
@ -865,10 +867,16 @@ export default function TrademarkMall() {
|
||||
<div style={{
|
||||
display: correctionReply == '0' && disabled ? 'none' : 'unset'
|
||||
}}>
|
||||
<div style={{
|
||||
display: correctionReply == '0' ? 'none' : 'unset'
|
||||
}}>
|
||||
|
||||
|
||||
<div className='editModal-title' style={{ marginTop: 30, }}>
|
||||
<div className='editModal-title-box'></div>
|
||||
<div className='editModal-title-name'>在下面填写您补充的内容</div>
|
||||
</div>
|
||||
</div>
|
||||
<Form
|
||||
name="basic"
|
||||
form={form}
|
||||
@ -891,6 +899,9 @@ export default function TrademarkMall() {
|
||||
}}
|
||||
autoComplete="off"
|
||||
>
|
||||
<div style={{
|
||||
display: correctionReply == '0' ? 'none' : 'unset'
|
||||
}}>
|
||||
<div className='correctionRemarkBox' >
|
||||
<div className='correctionTitle'>内容</div>
|
||||
<Form.Item
|
||||
@ -922,6 +933,10 @@ export default function TrademarkMall() {
|
||||
</Form.Item>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div style={{
|
||||
display: correctionReply == '0' ? 'none' : 'unset'
|
||||
}}>
|
||||
<div className='correctionRemarkBox' style={{
|
||||
marginTop: 0
|
||||
}}>
|
||||
@ -968,6 +983,7 @@ export default function TrademarkMall() {
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Form.Item
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user