forked from gxwebsoft/mp-10550
55 lines
1.9 KiB
TypeScript
55 lines
1.9 KiB
TypeScript
import {Cell} from '@nutui/nutui-react-taro';
|
|
import {ArrowRight} from '@nutui/icons-react-taro'
|
|
|
|
function Company() {
|
|
return (
|
|
<div className={'p-4'}>
|
|
<Cell title={
|
|
<div className={'flex'}>
|
|
<div className={'title w-16 pr-4'}>企业名称</div>
|
|
<div className={'extra'}>南宁市网宿信息科技有限公司</div>
|
|
</div>
|
|
} align={'center'}/>
|
|
<div className={'py-2 text-red-100 text-sm'}>经营信息</div>
|
|
<Cell.Group>
|
|
{/*<Cell title={*/}
|
|
{/* <div className={'flex'}>*/}
|
|
{/* <div className={'title w-16 pr-4'}>商户号</div>*/}
|
|
{/* <div className={'extra'}>1557418831</div>*/}
|
|
{/* </div>*/}
|
|
{/*} align={'center'}/>*/}
|
|
<Cell title={
|
|
<div className={'flex'}>
|
|
<div className={'title w-16 pr-4'}>企业简称</div>
|
|
<div className={'extra'}>网宿软件</div>
|
|
</div>
|
|
} align={'center'}/>
|
|
<Cell title={
|
|
<div className={'flex'}>
|
|
<div className={'title w-16 pr-4'}>联系电话</div>
|
|
<div className={'extra'}>137****8880</div>
|
|
</div>
|
|
} align={'center'}/>
|
|
</Cell.Group>
|
|
<div className={'py-2 text-red-100 text-sm'}>主体信息</div>
|
|
<Cell title={
|
|
<div className={'flex'}>
|
|
<div className={'title w-16 pr-4'}>信息详情</div>
|
|
<div className={'extra'}></div>
|
|
</div>
|
|
} align={'center'} extra={<ArrowRight color="#cccccc" size={16} />}/>
|
|
<div className={'py-2 text-red-100 text-sm'}>企业负责人</div>
|
|
<Cell.Group>
|
|
<Cell title={
|
|
<div className={'flex'}>
|
|
<div className={'title w-16 pr-4'}>姓名</div>
|
|
<div className={'extra'}>赵*林</div>
|
|
</div>
|
|
} align={'center'}/>
|
|
</Cell.Group>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Company
|