gaoluyang
19 小时以前 3ab45f295fb26c7794b4829976f3fb20c68a012e
src/views/procurementManagement/procurementInvoiceLedger/index.vue
@@ -119,6 +119,7 @@
import useUserStore from "@/store/modules/user.js";
import dayjs from "dayjs";
import FileList from "./fileList.vue";
import { truncate } from "@/utils/index.js";
defineOptions({
  name: "来票台账",
@@ -177,7 +178,7 @@
      prop: "taxInclusiveTotalPrice",
      width: 200,
      formatData: (cell) => {
        return cell ? parseFloat(cell).toFixed(2) : 0;
        return cell ? truncate(parseFloat(cell), 3) : 0;
      },
    },
    {
@@ -190,7 +191,7 @@
      prop: "ticketsAmount",
      width: 200,
      formatData: (cell) => {
        return cell ? parseFloat(cell).toFixed(2) : 0;
        return cell ? truncate(parseFloat(cell), 3) : 0;
      },
    },
    {
@@ -198,7 +199,7 @@
      prop: "unTicketsPrice",
      width: 200,
      formatData: (cell) => {
        return cell ? parseFloat(cell).toFixed(2) : 0;
        return cell ? truncate(parseFloat(cell), 3) : 0;
      },
    },
    {