|
@@ -99,8 +99,6 @@ import {
|
|
|
import { inputDisableComplete } from "@/utils/other";
|
|
|
|
|
|
import { camelCase } from "@/utils";
|
|
|
-import { CloudFog } from "lucide-vue";
|
|
|
-import { bottom } from "@antv/x6/lib/registry/port-layout/line";
|
|
|
export default {
|
|
|
name: "RelateTableCard",
|
|
|
props: ["cardData", "index", "tableKey", "sort"],
|
|
@@ -457,7 +455,7 @@ export default {
|
|
|
this.queryFromWhere.forEach((item) => {
|
|
|
let { conditionDefaultValue, conditionField } = item;
|
|
|
res[camelCase(conditionField.split(".")[1])] =
|
|
|
- conditionDefaultValue.includes(".")
|
|
|
+ conditionDefaultValue?.includes(".")
|
|
|
? this.preRow[conditionDefaultValue.split(".")[1]]
|
|
|
: conditionDefaultValue;
|
|
|
});
|