|  | @@ -61,26 +61,38 @@ const WorkOrderList = (props) => {
 | 
	
		
			
				|  |  |            key={workOrder.id || workOrder.Id}
 | 
	
		
			
				|  |  |            className={styles.workOrderCard}
 | 
	
		
			
				|  |  |          >
 | 
	
		
			
				|  |  | -          <Row justify="space-between" style={{ marginBottom: '0.2rem' }}>
 | 
	
		
			
				|  |  | -            <Col className={styles.fontS24}>{workOrder?.CreateTime}</Col>
 | 
	
		
			
				|  |  | -            <Col className={styles.fontS24}>
 | 
	
		
			
				|  |  | -              工单负责人:{workOrder?.Repairman?.CName || '-'}
 | 
	
		
			
				|  |  | -            </Col>
 | 
	
		
			
				|  |  | -          </Row>
 | 
	
		
			
				|  |  | -          <Row justify="space-between">
 | 
	
		
			
				|  |  | -            <Col className={styles.fontS24}>
 | 
	
		
			
				|  |  | -              工单状态:{workOrder?.OrderStatus?.label}
 | 
	
		
			
				|  |  | -            </Col>
 | 
	
		
			
				|  |  | -            <Col className={styles.detailBtnContainer}>
 | 
	
		
			
				|  |  | -              <Button
 | 
	
		
			
				|  |  | -                type="primary"
 | 
	
		
			
				|  |  | -                style={{ height: '0.4rem', fontSize: '0.24rem' }}
 | 
	
		
			
				|  |  | -                onClick={() => goWorkOrderDetail(workOrder)}
 | 
	
		
			
				|  |  | -              >
 | 
	
		
			
				|  |  | -                工单详情
 | 
	
		
			
				|  |  | -              </Button>
 | 
	
		
			
				|  |  | -            </Col>
 | 
	
		
			
				|  |  | -          </Row>
 | 
	
		
			
				|  |  | +          <span
 | 
	
		
			
				|  |  | +            style={{
 | 
	
		
			
				|  |  | +              margin: '-0.2rem',
 | 
	
		
			
				|  |  | +              position: 'absolute',
 | 
	
		
			
				|  |  | +              height: '1.37rem',
 | 
	
		
			
				|  |  | +              width: '0.2rem',
 | 
	
		
			
				|  |  | +              background: 'rgba(23, 85, 255, 0.20)',
 | 
	
		
			
				|  |  | +            }}
 | 
	
		
			
				|  |  | +          ></span>
 | 
	
		
			
				|  |  | +          <div style={{ marginLeft: '0.1rem' }}>
 | 
	
		
			
				|  |  | +            <Row justify="space-between" style={{ marginBottom: '0.2rem' }}>
 | 
	
		
			
				|  |  | +              <Col className={styles.fontS24}>{workOrder?.CreateTime}</Col>
 | 
	
		
			
				|  |  | +              <Col className={styles.fontS24}>
 | 
	
		
			
				|  |  | +                工单负责人:{workOrder?.Repairman?.CName || '-'}
 | 
	
		
			
				|  |  | +              </Col>
 | 
	
		
			
				|  |  | +            </Row>
 | 
	
		
			
				|  |  | +            <Row justify="space-between">
 | 
	
		
			
				|  |  | +              <Col className={styles.fontS24}>
 | 
	
		
			
				|  |  | +                工单状态:{workOrder?.OrderStatus?.label}
 | 
	
		
			
				|  |  | +              </Col>
 | 
	
		
			
				|  |  | +              <Col className={styles.detailBtnContainer}>
 | 
	
		
			
				|  |  | +                <Button
 | 
	
		
			
				|  |  | +                  type="primary"
 | 
	
		
			
				|  |  | +                  style={{ height: '0.45rem', fontSize: '0.24rem' }}
 | 
	
		
			
				|  |  | +                  onClick={() => goWorkOrderDetail(workOrder)}
 | 
	
		
			
				|  |  | +                  shape="round"
 | 
	
		
			
				|  |  | +                >
 | 
	
		
			
				|  |  | +                  工单详情
 | 
	
		
			
				|  |  | +                </Button>
 | 
	
		
			
				|  |  | +              </Col>
 | 
	
		
			
				|  |  | +            </Row>
 | 
	
		
			
				|  |  | +          </div>
 | 
	
		
			
				|  |  |          </div>
 | 
	
		
			
				|  |  |        );
 | 
	
		
			
				|  |  |      });
 | 
	
	
		
			
				|  | @@ -249,7 +261,7 @@ const WorkOrderList = (props) => {
 | 
	
		
			
				|  |  |              <TabPane tab={item.label} key={String(item.value)}>
 | 
	
		
			
				|  |  |                <Spin spinning={loading}>
 | 
	
		
			
				|  |  |                  <div
 | 
	
		
			
				|  |  | -                  style={{ height: 'calc(100vh - 1.8rem)', overflowY: 'auto' }}
 | 
	
		
			
				|  |  | +                  style={{ height: 'calc(100vh - 1.9rem)', overflowY: 'auto' }}
 | 
	
		
			
				|  |  |                  >
 | 
	
		
			
				|  |  |                    {workOrderListDOM}
 | 
	
		
			
				|  |  |                    <div className={styles.loadMoreBtn}>
 |