9135185ac98f0ca85a371cf7ccd41c9b6cf6ba17..f50ee4c37864123123c7d1baddff9198b09cdcfc
2026-06-16 gongchunyi
fix: 客户往来搜索传参字段错误
f50ee4 对比 | 目录
2026-06-16 zhangwencui
tooltip错位修改
e06ec7 对比 | 目录
已修改2个文件
21 ■■■■■ 文件已修改
src/main.js 17 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/salesManagement/receiptPaymentLedger/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main.js
@@ -115,5 +115,22 @@
  size: Cookies.get("size") || "default",
});
app._context.components.ElDialog.props.closeOnClickModal.default = false;
const ElTable = app._context.components.ElTable;
if (ElTable?.props?.tooltipOptions) {
  if (ElTable.props.tooltipOptions === Object) {
    ElTable.props.tooltipOptions = {
      type: Object,
      default: () => ({
        appendTo: "body",
      }),
    };
  } else if (typeof ElTable.props.tooltipOptions === "object") {
    ElTable.props.tooltipOptions.default =
      ElTable.props.tooltipOptions.default ||
      (() => ({
        appendTo: "body",
      }));
  }
}
app.mount("#app");
src/views/salesManagement/receiptPaymentLedger/index.vue
@@ -4,7 +4,7 @@
         style="margin-bottom: 20px;">
      <div>
        <span class="search_title">客户名称:</span>
        <el-input v-model="searchForm.searchText"
        <el-input v-model="searchForm.customerName"
                  style="width: 240px"
                  placeholder="输入客户名称搜索"
                  @change="handleQuery"
@@ -142,7 +142,7 @@
  const recordTotal = ref(0);
  const data = reactive({
    searchForm: {
      searchText: "",
      customerName: "",
      invoiceDate: "",
    },
  });