gaoluyang
2025-12-04 0c5b607e028bd756079cb328dd0914db2c9093f5
src/views/equipmentManagement/ledger/index.vue
@@ -145,6 +145,11 @@
      align: "center",
      prop: "deviceModel",
    },
    // {
    //   label: "设备品牌",
    //   align: "center",
    //   prop: "deviceBrand",
    // },
    {
      label: "供应商",
      align: "center",
@@ -155,6 +160,11 @@
      align: "center",
      prop: "unit",
    },
    // {
    //   label: "存放位置",
    //   align: "center",
    //   prop: "storageLocation",
    // },
    {
      label: "数量",
      align: "center",
@@ -181,6 +191,12 @@
      prop: "unTaxIncludingPriceTotal",
    },
    {
      label: "启用折旧",
      align: "center",
      prop: "enableDepreciation",
      formatData: (v) => (v ? "是" : "否"),
    },
    {
      label: "录入人",
      align: "center",
      prop: "createUser",
@@ -195,7 +211,7 @@
         label: "操作",
         align: "center",
         fixed: 'right',
         width: 140,
         width: 150,
         operation: [
            {
               name: "编辑",
@@ -290,12 +306,6 @@
};
onMounted(() => {
  filters.entryDate = [
    dayjs().format("YYYY-MM-DD"),
    dayjs().add(1, "day").format("YYYY-MM-DD"),
  ]
  filters.entryDateStart = dayjs().format("YYYY-MM-DD")
  filters.entryDateEnd = dayjs().add(1, "day").format("YYYY-MM-DD")
  getTableData();
});
</script>