Commit fc3c0ceb0851b6f22ec127467aac1f9be7a4e04b

Authored by 王强
1 parent ca987870

优化 补贴确认,确认列表备注可编辑;

src/pages/ehr/PhoneChargeAndSubsidy/subpages/SubsidyConfirm/components/ConfirmModal.tsx
... ... @@ -296,7 +296,9 @@ export default function SubsidyConfirmModal() {
296 296 },
297 297 {
298 298 title: "备注",
299   - width: 80,
  299 + editable: true,
  300 + inputType: "text",
  301 + width: 250,
300 302 dataIndex: "remark",
301 303 render: (remark: string) => (remark ? (
302 304 <Popover content={remark || "-"} trigger="click">
... ...