Commit dd688b922dcd2700f6866a90fca3c069420f0ab4

Authored by boyang
1 parent 180c35a6

fix: 修改工单类型

src/pages/Client/Client/Components/InformationHistoryModal.tsx
... ... @@ -64,7 +64,7 @@ export default ({ data, reloadTable }) => {
64 64 }
65 65 }
66 66  
67   - setTicketsType(resTicket.data.type);
  67 + setTicketsType(dataSearch.ticketsTypeText);
68 68 setTicketsDetail(resTicket.data.detailText);
69 69 setTicketsAttachment(resTicket.data.annexUrl);
70 70 setAssignPeople(resTicket.data.assignPeople);
... ...
src/pages/Client/FollowRecord/Components/CommunicationHistoryModal.tsx
... ... @@ -78,7 +78,7 @@ export default ({ data, reloadTable }) => {
78 78 // setTicketsAttachmentName(decodedStr); // 设置跟进日期
79 79 // }
80 80 // }
81   - setTicketsType(resTicket.data.type);
  81 + setTicketsType(dataSearch.ticketsTypeText);
82 82 setTicketsDetail(resTicket.data.detailText);
83 83 setTicketsAttachment(resTicket.data.annexUrl);
84 84 setAssignPeople(resTicket.data.assignPeople);
... ...