소스 검색

fix: 报时报修接口fix

touchitvoid 2 년 전
부모
커밋
48d0ed2165
6개의 변경된 파일102개의 추가작업 그리고 44개의 파일을 삭제
  1. 4 3
      src/services/fix.ts
  2. 5 0
      src/utils.ts
  3. 30 13
      src/views/Fix/online-form.tsx
  4. 44 21
      src/views/Fix/order-detail.tsx
  5. 1 1
      src/views/Fix/return-visit.tsx
  6. 18 6
      src/views/Fix/to-do.tsx

+ 4 - 3
src/services/fix.ts

@@ -10,9 +10,10 @@ export const FixApi = params => {
 }
 }
 
 
 // 获取报事报修详情 /api/v1/repair/order/info
 // 获取报事报修详情 /api/v1/repair/order/info
-export const GetFixOrderInfo = () => request({
-  url: '/repair/order/info',
-  method: 'get'
+export const GetFixOrderInfo = search => request({
+  url: '/repair/order/info' + search,
+  method: 'get',
+
 })
 })
 
 
 // 派单
 // 派单

+ 5 - 0
src/utils.ts

@@ -0,0 +1,5 @@
+// 切割时间戳
+export const GetTimeStamp = time => {
+  return +new Date(time).valueOf().toString().substring(0, 10)
+}
+  

+ 30 - 13
src/views/Fix/online-form.tsx

@@ -9,6 +9,8 @@ import { PlusOutlined } from "@ant-design/icons"
 import { useFixClass } from "./hooks"
 import { useFixClass } from "./hooks"
 import { useBuildingHouse } from "../building/hooks"
 import { useBuildingHouse } from "../building/hooks"
 import { useUser } from "../User/hooks"
 import { useUser } from "../User/hooks"
+import { GetTimeStamp } from "../../utils"
+import moment from "moment"
 
 
 const FixOnlineForm: React.FC = (props: any) => {
 const FixOnlineForm: React.FC = (props: any) => {
   const columns: any = [
   const columns: any = [
@@ -69,11 +71,22 @@ const FixOnlineForm: React.FC = (props: any) => {
       dataIndex: 'option',
       dataIndex: 'option',
       search: false,
       search: false,
       render: (_, row, index, action) => {
       render: (_, row, index, action) => {
-        return [
+        const DETAIL_BUTTON = <Button
+          className="mr-1.5"
+          onClick={() => {
+            props.history.push(`/admin/fix/order-detail?id=${row.id}`)
+          }}
+        >详情</Button>
+        return ['已派单', '已完结'].includes(row.status) ? DETAIL_BUTTON : [
           <Button
           <Button
             className="mr-1.5"
             className="mr-1.5"
             onClick={() => {
             onClick={() => {
+              row.appointment = moment(row.appointment)
               form.setFieldsValue(row)
               form.setFieldsValue(row)
+              setPic(row.apply_pic.map(url => ({
+                thumbUrl: url,
+                response: { data: url }
+              })))
               setState(prevState => ({
               setState(prevState => ({
                 ...prevState,
                 ...prevState,
                 visible: true,
                 visible: true,
@@ -86,16 +99,12 @@ const FixOnlineForm: React.FC = (props: any) => {
             onClick={() => {
             onClick={() => {
               setState(prevState => ({
               setState(prevState => ({
                 ...prevState,
                 ...prevState,
-                orderVisible: true
+                orderVisible: true,
+                editId: row.id
               }))
               }))
             }}
             }}
           >派单</Button>,
           >派单</Button>,
-          <Button
-            className="mr-1.5"
-            onClick={() => {
-              props.history.push('/admin/fix/order-detail')
-            }}
-          >详情</Button>,
+          DETAIL_BUTTON,
           <Button onClick={() => {
           <Button onClick={() => {
             Modal.confirm({
             Modal.confirm({
               title: '删除记录',
               title: '删除记录',
@@ -145,7 +154,7 @@ const FixOnlineForm: React.FC = (props: any) => {
         method: state.editId ? 'put' : 'post',
         method: state.editId ? 'put' : 'post',
         ...values,
         ...values,
         apply_pic: pic.map(({ response }) => response.data),
         apply_pic: pic.map(({ response }) => response.data),
-        appointment: values.appointment.valueOf(),
+        appointment: GetTimeStamp(values.appointment),
         id: state.editId,
         id: state.editId,
         // garden_id: 3,
         // garden_id: 3,
       })
       })
@@ -158,7 +167,7 @@ const FixOnlineForm: React.FC = (props: any) => {
 
 
   const handleSendOrder = () => {
   const handleSendOrder = () => {
     orderForm.validateFields().then(async values => {
     orderForm.validateFields().then(async values => {
-      await FixOrderSend({ ...values, id: state.editId })
+      await FixOrderSend({ ...values, id: state.editId, current_uid: 1 })
       message.success('操作成功!')
       message.success('操作成功!')
       orderForm.resetFields()
       orderForm.resetFields()
       actionRef.current?.reloadAndRest()
       actionRef.current?.reloadAndRest()
@@ -178,7 +187,9 @@ const FixOnlineForm: React.FC = (props: any) => {
             type="primary"
             type="primary"
             key="primary"
             key="primary"
             onClick={() => {
             onClick={() => {
-              setState(preState => ({ ...preState, visible: true }))
+              form.resetFields()
+              setPic([])
+              setState(preState => ({ ...preState, visible: true, editId: null }))
             }}
             }}
           >添加</Button>
           >添加</Button>
         ]}
         ]}
@@ -204,7 +215,7 @@ const FixOnlineForm: React.FC = (props: any) => {
         </Form>
         </Form>
       </Modal>
       </Modal>
       <Modal
       <Modal
-        title='添加报修'
+        title={state.editId ? '编辑报修': '添加报修'}
         visible={state.visible}
         visible={state.visible}
         onOk={onSubmit}
         onOk={onSubmit}
         onCancel={() => setState(pre => ({ ...pre, visible: false }))}
         onCancel={() => setState(pre => ({ ...pre, visible: false }))}
@@ -224,7 +235,7 @@ const FixOnlineForm: React.FC = (props: any) => {
             <Input placeholder="请输入" />
             <Input placeholder="请输入" />
           </Form.Item>
           </Form.Item>
           <Form.Item label='预约时间' name="appointment" rules={[{ required: true }]}>
           <Form.Item label='预约时间' name="appointment" rules={[{ required: true }]}>
-            <DatePicker showTime placeholder="选择时间" format="YYYY-MM-DD" />
+            <DatePicker showTime placeholder="选择时间" format="YYYY-MM-DD HH:mm" />
           </Form.Item>
           </Form.Item>
           <Form.Item label='报修内容' name="apply_content" rules={[{ required: true }]}>
           <Form.Item label='报修内容' name="apply_content" rules={[{ required: true }]}>
             <Input.TextArea placeholder="多行输入" rows={4} />
             <Input.TextArea placeholder="多行输入" rows={4} />
@@ -237,6 +248,12 @@ const FixOnlineForm: React.FC = (props: any) => {
               onChange={(({ fileList }) => setPic(fileList))}
               onChange={(({ fileList }) => setPic(fileList))}
             >{ uploadButton }</Upload>
             >{ uploadButton }</Upload>
           </Form.Item>
           </Form.Item>
+          <Form.Item label='区域' name="area" rules={[{ required: true }]}>
+            <Select placeholder='请选择' options={[
+              { label: '公共区域', value: 1  },
+              { label: '室内', value: 2  },
+            ]} />
+          </Form.Item>
           <Form.Item label='联系地址' name="house_id" rules={[{ required: true }]}>
           <Form.Item label='联系地址' name="house_id" rules={[{ required: true }]}>
             <Select placeholder='请选择' options={buildHouse} />
             <Select placeholder='请选择' options={buildHouse} />
           </Form.Item>
           </Form.Item>

+ 44 - 21
src/views/Fix/order-detail.tsx

@@ -6,50 +6,71 @@ import { GetFixOrderInfo } from "../../services/fix"
 const columns = [
 const columns = [
   {
   {
     title: 'ID',
     title: 'ID',
-    dataIndex: ''
+    dataIndex: 'id'
   },
   },
   {
   {
     title: '处理人',
     title: '处理人',
-    dataIndex: ''
+    dataIndex: 'user'
   },
   },
   {
   {
     title: '状态',
     title: '状态',
-    dataIndex: ''
+    dataIndex: 'status'
   },
   },
   {
   {
     title: '处理时间',
     title: '处理时间',
-    dataIndex: ''
+    dataIndex: 'handle_time'
   },
   },
   {
   {
     title: '意见',
     title: '意见',
-    dataIndex: ''
+    dataIndex: 'feedback'
   },
   },
 ]
 ]
 const infoKeys = [
 const infoKeys = [
-  { label: '分类名称', key: '' },
-  { label: '联系地址', key: '' },
-  { label: '报修人', key: '' },
-  { label: '联系方式', key: '' },
-  { label: '预约时间', key: '' },
-  { label: '报修时间', key: '' },
-  { label: '报修内容', key: '' },
+  { label: '分类名称', key: 'class_name' },
+  { label: '联系地址', key: 'house_name' },
+  { label: '报修人', key: 'apply_people' },
+  { label: '联系方式', key: 'apply_people_phone' },
+  { label: '预约时间', key: 'appointment' },
+  { label: '报修时间', key: 'created_at' },
+  { label: '报修内容', key: 'apply_content' },
   { label: '报修图片', key: '', col: 24, type: 'picture' },
   { label: '报修图片', key: '', col: 24, type: 'picture' },
 ]
 ]
 
 
 const OrderDetail: React.FC = () => {
 const OrderDetail: React.FC = () => {
 
 
   const history = useHistory()
   const history = useHistory()
+  const [orderInfo, setOrderInfo]: any = React.useState({
+    base_info: {
+      apply_pic: []
+    }
+  })
+  const visitLevel = {
+    1: '满意',
+    2: '不满意'
+  }
+
+  React.useEffect(() => {
+    GetFixOrderInfo(history.location.search)
+      .then((res) => {
+        setOrderInfo(res)
+      })
+  }, [])
 
 
   React.useEffect(() => {
   React.useEffect(() => {
-    GetFixOrderInfo()
+    console.log(orderInfo.base_info.apply_pic)
   })
   })
 
 
   return (
   return (
-    <React.Fragment>
+    <div className="print-container">
       <div className="flex justify-between items-center pb-3" style={{ fontSize: '18px' }}>
       <div className="flex justify-between items-center pb-3" style={{ fontSize: '18px' }}>
         报事报修/在线报修
         报事报修/在线报修
         <div>
         <div>
-          <Button className="mr-1.5" type="primary">打印</Button>
+          <Button className="mr-1.5" type="primary" onClick={() => {
+            // @ts-ignore
+            window.document.body.innerHTML = document.querySelector('.print-container').innerHTML as any
+            window.print()
+            window.location.reload()
+          }}>打印</Button>
           <Button onClick={() => history.goBack()}>返回</Button>
           <Button onClick={() => history.goBack()}>返回</Button>
         </div>
         </div>
       </div>
       </div>
@@ -61,8 +82,10 @@ const OrderDetail: React.FC = () => {
                 <Col span={item.col || 8}>
                 <Col span={item.col || 8}>
                   <Form.Item label={item.label}>
                   <Form.Item label={item.label}>
                     { item.type === 'picture' ? (
                     { item.type === 'picture' ? (
-                      <Image className="mr-1.5" width={120} src="https://hbimg.huabanimg.com/683615e8e5dd8c4660efbdf1fbc3c26f1da40cae2a7a7-fcKebd_fw658/format/webp" />
-                    ) : item.label }
+                      orderInfo.base_info.apply_pic.map(url =>
+                        <Image width={100} src={url} />
+                      )
+                    ) : orderInfo?.base_info[item.key] }
                   </Form.Item>
                   </Form.Item>
                 </Col>
                 </Col>
               ))
               ))
@@ -72,16 +95,16 @@ const OrderDetail: React.FC = () => {
       </Card>
       </Card>
       <Divider />
       <Divider />
       <Card title="工单流转">
       <Card title="工单流转">
-        <Table columns={columns} bordered />
+        <Table dataSource={orderInfo.list} columns={columns} bordered />
       </Card>
       </Card>
       <Divider />
       <Divider />
       <Card title="回访/业主评价">
       <Card title="回访/业主评价">
         <Form>
         <Form>
-          <Form.Item label="满意度">xxxxxx</Form.Item>
-          <Form.Item label="业主评价">xxxxxxxxxxxxxxxxxx</Form.Item>
+          <Form.Item label="满意度">{ visitLevel[orderInfo.base_info?.return_visit_level] || '暂无' }</Form.Item>
+          <Form.Item label="业主评价">{ orderInfo.base_info?.return_visit_content || '暂无评价' }</Form.Item>
         </Form>
         </Form>
       </Card>
       </Card>
-    </React.Fragment>
+    </div>
 
 
   )
   )
 }
 }

+ 1 - 1
src/views/Fix/return-visit.tsx

@@ -81,7 +81,7 @@ const FixReturnVisit: React.FC = (props: any) => {
           <Button
           <Button
             className="mr-1.5"
             className="mr-1.5"
             onClick={() => {
             onClick={() => {
-              props.history.push('/admin/fix/order-detail')
+              props.history.push(`/admin/fix/order-detail?id=${row.id}`)
             }}
             }}
           >详情</Button>,
           >详情</Button>,
         ]
         ]

+ 18 - 6
src/views/Fix/to-do.tsx

@@ -85,8 +85,9 @@ const FixTodo: React.FC = (props: any) => {
             onClick={() => {
             onClick={() => {
               setState(prevState => ({
               setState(prevState => ({
                 ...prevState,
                 ...prevState,
-                formMode: 'return',
-                orderVisible: true
+                formMode: 'refund',
+                orderVisible: true,
+                editId: row.id
               }))
               }))
             }}
             }}
           >退单</Button>,
           >退单</Button>,
@@ -100,7 +101,8 @@ const FixTodo: React.FC = (props: any) => {
             setState(prevState => ({
             setState(prevState => ({
               ...prevState,
               ...prevState,
               formMode: 'finish',
               formMode: 'finish',
-              orderVisible: true
+              orderVisible: true,
+              editId: row.id
             }))
             }))
           }}>办结</Button>
           }}>办结</Button>
         ]
         ]
@@ -162,7 +164,7 @@ const FixTodo: React.FC = (props: any) => {
   </React.Fragment>
   </React.Fragment>
 
 
   const Forms = {
   const Forms = {
-    return: ChargeBackForm,
+    refund: ChargeBackForm,
     finish: FinishForm,
     finish: FinishForm,
     send: SendForm
     send: SendForm
   }
   }
@@ -177,7 +179,11 @@ const FixTodo: React.FC = (props: any) => {
       finish: FixOrderFinish
       finish: FixOrderFinish
     }
     }
     orderForm.validateFields().then(async values => {
     orderForm.validateFields().then(async values => {
-      await _Api[state.formMode]({ ...values, id: state.editId })
+      const params: any = { id: state.editId }
+      if (values.repair_pic) {
+        params.repair_pic = pic.map(({ response }) => response.data)
+      }
+      await _Api[state.formMode]({ ...values, ...params })
       message.success('操作成功!')
       message.success('操作成功!')
       orderForm.resetFields()
       orderForm.resetFields()
       actionRef.current?.reloadAndRest()
       actionRef.current?.reloadAndRest()
@@ -185,6 +191,12 @@ const FixTodo: React.FC = (props: any) => {
     })
     })
   }
   }
 
 
+  const titleMap = {
+    refund: '退单',
+    finish: '办结工单',
+    send: '转单'
+  }
+
   return (
   return (
     <React.Fragment>
     <React.Fragment>
       <ProTable
       <ProTable
@@ -196,7 +208,7 @@ const FixTodo: React.FC = (props: any) => {
         columns={columns}
         columns={columns}
       />
       />
       <Modal
       <Modal
-        title='转单'
+        title={titleMap[state.formMode]}
         visible={state.orderVisible}
         visible={state.orderVisible}
         onOk={onSubmit}
         onOk={onSubmit}
         onCancel={() => setState(pre => ({ ...pre, orderVisible: false }))}
         onCancel={() => setState(pre => ({ ...pre, orderVisible: false }))}