| | |
| | | import { paymentHistoryListPage } from "@/api/procurementManagement/paymentEntry.js"; |
| | | import useFormData from "@/hooks/useFormData"; |
| | | import dayjs from "dayjs"; |
| | | import { truncate } from "@/utils/index.js"; |
| | | |
| | | const { proxy } = getCurrentInstance(); |
| | | const isShowSummarySon = ref(true); |
| | |
| | | label: "付款金额", |
| | | prop: "currentPaymentAmount", |
| | | formatData: (params) => { |
| | | return params ? parseFloat(params).toFixed(2) : 0; |
| | | return params ? truncate(parseFloat(params), 3) : 0; |
| | | }, |
| | | }, |
| | | { |
| | |
| | | { |
| | | label: "登记人", |
| | | prop: "registrant", |
| | | }, |
| | | { |
| | | label: "登记日期", |
| | | prop: "registrationtDate", |
| | | }, |
| | | ]); |
| | | const tableData = ref([]); |