|
@@ -145,18 +145,18 @@ function TaskDetail(props: IPropsType) {
|
|
<div key={record.Id} className={styles.workOrderCard}>
|
|
<div key={record.Id} className={styles.workOrderCard}>
|
|
<div className={styles.leftInfo}>
|
|
<div className={styles.leftInfo}>
|
|
<Row style={{ marginBottom: '0.15rem' }}>
|
|
<Row style={{ marginBottom: '0.15rem' }}>
|
|
- <Col className={styles.fontS32} span={10}>
|
|
|
|
|
|
+ <Col className={styles.fontS30} span={10}>
|
|
<>
|
|
<>
|
|
工单类型:
|
|
工单类型:
|
|
{record.RecordType?.label?.replace('工单', '')}
|
|
{record.RecordType?.label?.replace('工单', '')}
|
|
</>
|
|
</>
|
|
</Col>
|
|
</Col>
|
|
- <Col className={styles.fontS32} span={14}>
|
|
|
|
|
|
+ <Col className={styles.fontS30} span={14}>
|
|
时间:{record.CreateTime || '-'}
|
|
时间:{record.CreateTime || '-'}
|
|
</Col>
|
|
</Col>
|
|
</Row>
|
|
</Row>
|
|
<Row>
|
|
<Row>
|
|
- <Col className={styles.fontS32} span={10}>
|
|
|
|
|
|
+ <Col className={styles.fontS30} span={10}>
|
|
工单状态:
|
|
工单状态:
|
|
<span style={{ color: '#5697e4' }}>
|
|
<span style={{ color: '#5697e4' }}>
|
|
{typeof record.Status === 'number'
|
|
{typeof record.Status === 'number'
|
|
@@ -164,7 +164,7 @@ function TaskDetail(props: IPropsType) {
|
|
: record.Status?.label}
|
|
: record.Status?.label}
|
|
</span>
|
|
</span>
|
|
</Col>
|
|
</Col>
|
|
- <Col className={styles.fontS32} span={14}>
|
|
|
|
|
|
+ <Col className={styles.fontS30} span={14}>
|
|
工单负责人:
|
|
工单负责人:
|
|
{typeof record.Responsible === 'number'
|
|
{typeof record.Responsible === 'number'
|
|
? '-'
|
|
? '-'
|
|
@@ -311,21 +311,21 @@ function TaskDetail(props: IPropsType) {
|
|
<div className={`${styles.cardContainer}`}>
|
|
<div className={`${styles.cardContainer}`}>
|
|
<div className={styles.normalInfo}>
|
|
<div className={styles.normalInfo}>
|
|
<Row className={styles.infoRow}>
|
|
<Row className={styles.infoRow}>
|
|
- <Col span={14} className={styles.fontS32}>
|
|
|
|
|
|
+ <Col span={14} className={styles.fontS30}>
|
|
时间:{mandateDetail?.CreateTime}
|
|
时间:{mandateDetail?.CreateTime}
|
|
</Col>
|
|
</Col>
|
|
{/*// @ts-ignore*/}
|
|
{/*// @ts-ignore*/}
|
|
- <Col className={styles.fontS32}>
|
|
|
|
|
|
+ <Col className={styles.fontS30}>
|
|
{/*//@ts-ignore*/}
|
|
{/*//@ts-ignore*/}
|
|
任务类别:{mandateDetail?.MandateClass?.label}
|
|
任务类别:{mandateDetail?.MandateClass?.label}
|
|
</Col>
|
|
</Col>
|
|
</Row>
|
|
</Row>
|
|
<Row>
|
|
<Row>
|
|
- <Col span={14} className={styles.fontS32}>
|
|
|
|
|
|
+ <Col span={14} className={styles.fontS30}>
|
|
{/*//@ts-ignore*/}
|
|
{/*//@ts-ignore*/}
|
|
任务状态:{mandateDetail?.Status?.label}
|
|
任务状态:{mandateDetail?.Status?.label}
|
|
</Col>
|
|
</Col>
|
|
- <Col className={styles.fontS32}>
|
|
|
|
|
|
+ <Col className={styles.fontS30}>
|
|
{/*// @ts-ignore*/}
|
|
{/*// @ts-ignore*/}
|
|
任务负责人:{mandateDetail?.ResponsiblePeople?.CName}
|
|
任务负责人:{mandateDetail?.ResponsiblePeople?.CName}
|
|
</Col>
|
|
</Col>
|
|
@@ -334,7 +334,7 @@ function TaskDetail(props: IPropsType) {
|
|
<div className={styles.detailInfo}>
|
|
<div className={styles.detailInfo}>
|
|
<Row className={styles.infoRow}>
|
|
<Row className={styles.infoRow}>
|
|
<Col
|
|
<Col
|
|
- className={styles.fontS32}
|
|
|
|
|
|
+ className={styles.fontS30}
|
|
span={4}
|
|
span={4}
|
|
style={{ fontWeight: 600 }}
|
|
style={{ fontWeight: 600 }}
|
|
>
|
|
>
|
|
@@ -342,7 +342,7 @@ function TaskDetail(props: IPropsType) {
|
|
</Col>
|
|
</Col>
|
|
<Col
|
|
<Col
|
|
span={20}
|
|
span={20}
|
|
- className={styles.fontS32}
|
|
|
|
|
|
+ className={styles.fontS30}
|
|
style={{ color: 'rgba(97, 93, 93, 1)' }}
|
|
style={{ color: 'rgba(97, 93, 93, 1)' }}
|
|
>
|
|
>
|
|
{mandateDetail?.Summary ||
|
|
{mandateDetail?.Summary ||
|
|
@@ -352,13 +352,13 @@ function TaskDetail(props: IPropsType) {
|
|
{mandateDetail?.img && (
|
|
{mandateDetail?.img && (
|
|
<Row className={styles.infoRow}>
|
|
<Row className={styles.infoRow}>
|
|
<Col
|
|
<Col
|
|
- className={styles.fontS32}
|
|
|
|
|
|
+ className={styles.fontS30}
|
|
span={4}
|
|
span={4}
|
|
style={{ fontWeight: 600 }}
|
|
style={{ fontWeight: 600 }}
|
|
>
|
|
>
|
|
预警图片
|
|
预警图片
|
|
</Col>
|
|
</Col>
|
|
- <Col className={styles.fontS32}>
|
|
|
|
|
|
+ <Col className={styles.fontS30}>
|
|
<ReactZmage
|
|
<ReactZmage
|
|
controller={{
|
|
controller={{
|
|
// 关闭按钮
|
|
// 关闭按钮
|
|
@@ -383,13 +383,13 @@ function TaskDetail(props: IPropsType) {
|
|
{mandateDetail?.Files.length > 0 && (
|
|
{mandateDetail?.Files.length > 0 && (
|
|
<Row className={styles.infoRow}>
|
|
<Row className={styles.infoRow}>
|
|
<Col
|
|
<Col
|
|
- className={styles.fontS32}
|
|
|
|
|
|
+ className={styles.fontS30}
|
|
span={4}
|
|
span={4}
|
|
style={{ fontWeight: 600 }}
|
|
style={{ fontWeight: 600 }}
|
|
>
|
|
>
|
|
截图
|
|
截图
|
|
</Col>
|
|
</Col>
|
|
- <Col className={styles.fontS32}>
|
|
|
|
|
|
+ <Col className={styles.fontS30}>
|
|
<ReactZmage
|
|
<ReactZmage
|
|
controller={{
|
|
controller={{
|
|
// 关闭按钮
|
|
// 关闭按钮
|
|
@@ -421,13 +421,13 @@ function TaskDetail(props: IPropsType) {
|
|
|
|
|
|
<Row>
|
|
<Row>
|
|
<Col
|
|
<Col
|
|
- className={styles.fontS32}
|
|
|
|
|
|
+ className={styles.fontS30}
|
|
span={4}
|
|
span={4}
|
|
style={{ fontWeight: 600 }}
|
|
style={{ fontWeight: 600 }}
|
|
>
|
|
>
|
|
任务内容
|
|
任务内容
|
|
</Col>
|
|
</Col>
|
|
- <Col className={styles.fontS32} span={20}>
|
|
|
|
|
|
+ <Col className={styles.fontS30} span={20}>
|
|
{/*{mandateDetail?.Detail}*/}
|
|
{/*{mandateDetail?.Detail}*/}
|
|
<Table
|
|
<Table
|
|
className={styles.taskTable}
|
|
className={styles.taskTable}
|