form-custom-test 3.0.248 → 3.0.249

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/render.es.js CHANGED
@@ -26859,13 +26859,13 @@ function registerIcon(app) {
26859
26859
  if (typeof window !== "undefined") {
26860
26860
  let loadSvg = function() {
26861
26861
  var body = document.body;
26862
- var svgDom = document.getElementById("__svg__icons__dom__1789874658651__");
26862
+ var svgDom = document.getElementById("__svg__icons__dom__1789890602621__");
26863
26863
  if (!svgDom) {
26864
26864
  svgDom = document.createElementNS("http://www.w3.org/2000/svg", "svg");
26865
26865
  svgDom.style.position = "absolute";
26866
26866
  svgDom.style.width = "0";
26867
26867
  svgDom.style.height = "0";
26868
- svgDom.id = "__svg__icons__dom__1789874658651__";
26868
+ svgDom.id = "__svg__icons__dom__1789890602621__";
26869
26869
  svgDom.setAttribute("xmlns", "http://www.w3.org/2000/svg");
26870
26870
  svgDom.setAttribute("xmlns:link", "http://www.w3.org/1999/xlink");
26871
26871
  }
@@ -66595,6 +66595,7 @@ const _sfc_main$b = {
66595
66595
  return;
66596
66596
  try {
66597
66597
  const formValues = await renderRef.getFormData(true);
66598
+ console.log(formValues, "formValues");
66598
66599
  this.$emit("confirm", formValues);
66599
66600
  this.dialogVisible = false;
66600
66601
  } catch (e) {
@@ -66661,7 +66662,7 @@ function _sfc_render$b(_ctx, _cache, $props, $setup, $data, $options) {
66661
66662
  _: 1
66662
66663
  }, 8, ["modelValue", "title", "onClose"]);
66663
66664
  }
66664
- var LeaseDialog = /* @__PURE__ */ _export_sfc$1(_sfc_main$b, [["render", _sfc_render$b], ["__scopeId", "data-v-d245b56a"]]);
66665
+ var LeaseDialog = /* @__PURE__ */ _export_sfc$1(_sfc_main$b, [["render", _sfc_render$b], ["__scopeId", "data-v-3ea56bcb"]]);
66665
66666
  var index_vue_vue_type_style_index_0_lang = "";
66666
66667
  const _sfc_main$a = {
66667
66668
  name: "lease-table-widget",
@@ -66926,19 +66927,21 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
66926
66927
  label: "\u4EA4\u6613\u5BF9\u624B\u65B9",
66927
66928
  "min-width": "140",
66928
66929
  "show-overflow-tooltip": ""
66930
+ }, {
66931
+ default: withCtx(({ row }) => [
66932
+ createTextVNode(toDisplayString(row.transactionCounterpart || "-"), 1)
66933
+ ]),
66934
+ _: 1
66929
66935
  }),
66930
66936
  createVNode(_component_el_table_column, {
66931
- prop: "rentalArea",
66937
+ prop: "forRentArea",
66932
66938
  label: "\u51FA\u79DF\u9762\u79EF\uFF08\u5E73\u65B9\u7C73\uFF09",
66933
66939
  "min-width": "140",
66934
66940
  align: "right"
66935
66941
  }, {
66936
- default: withCtx(({ row }) => {
66937
- var _a;
66938
- return [
66939
- createTextVNode(toDisplayString($options.formatNumber((_a = row.rentalArea) != null ? _a : row.leaseArea)), 1)
66940
- ];
66941
- }),
66942
+ default: withCtx(({ row }) => [
66943
+ createTextVNode(toDisplayString(row.forRentArea || "-"), 1)
66944
+ ]),
66942
66945
  _: 1
66943
66946
  }),
66944
66947
  createVNode(_component_el_table_column, {
@@ -66948,7 +66951,7 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
66948
66951
  align: "right"
66949
66952
  }, {
66950
66953
  default: withCtx(({ row }) => [
66951
- createTextVNode(toDisplayString($options.formatNumber(row.annualRent)), 1)
66954
+ createTextVNode(toDisplayString(row.annualRent || "-"), 1)
66952
66955
  ]),
66953
66956
  _: 1
66954
66957
  }),
@@ -66959,7 +66962,24 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
66959
66962
  "show-overflow-tooltip": ""
66960
66963
  }, {
66961
66964
  default: withCtx(({ row }) => [
66962
- createTextVNode(toDisplayString($options.formatPeriod(row)), 1)
66965
+ row.contractTermStart && row.contractTermEnd ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
66966
+ createTextVNode(toDisplayString(row.contractTermStart) + " - " + toDisplayString(row.contractTermEnd), 1)
66967
+ ], 64)) : row.rentContractTerm && row.rentContractTerm.length ? (openBlock(), createElementBlock(Fragment, { key: 1 }, [
66968
+ createTextVNode(toDisplayString(row.rentContractTerm[0]) + " - " + toDisplayString(row.rentContractTerm[1]), 1)
66969
+ ], 64)) : (openBlock(), createElementBlock(Fragment, { key: 2 }, [
66970
+ createTextVNode(" - ")
66971
+ ], 64))
66972
+ ]),
66973
+ _: 1
66974
+ }),
66975
+ createVNode(_component_el_table_column, {
66976
+ prop: "leaseRemark",
66977
+ label: "\u79DF\u8D41\u5907\u6CE8",
66978
+ "min-width": "120",
66979
+ align: "right"
66980
+ }, {
66981
+ default: withCtx(({ row }) => [
66982
+ createTextVNode(toDisplayString(row.leaseRemark || "-"), 1)
66963
66983
  ]),
66964
66984
  _: 1
66965
66985
  }),