form-custom-test 3.0.197 → 3.0.200
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/designer.es.js +68 -13
- package/dist/designer.style.css +1 -1
- package/dist/designer.umd.js +34 -34
- package/dist/render.es.js +68 -13
- package/dist/render.style.css +1 -1
- package/dist/render.umd.js +56 -56
- package/package.json +1 -1
package/dist/designer.es.js
CHANGED
|
@@ -4953,11 +4953,11 @@ const getRegExp = function(validatorName2) {
|
|
|
4953
4953
|
maxLen12Decimals6: "/^\\d{1,12}(\\.\\d{1,6})?$/",
|
|
4954
4954
|
isPositiveIntegerLength: "/^([1-9]\\d{0,3})$/",
|
|
4955
4955
|
isPositiveIntegerZero: "/^0$|^([1-9]\\d{0,3})$/",
|
|
4956
|
-
maxLen10Decimals2: "
|
|
4956
|
+
maxLen10Decimals2: "/^(0|[1-9]\\d{0,9})(\\.\\d{1,2})?$/",
|
|
4957
4957
|
maxLen12Decimals2: "/^\\d{1,12}(\\.\\d{1,2})?$/",
|
|
4958
4958
|
latitude: "/^-?(?:90(?:\\.0{1,6})?|[1-8]?\\d(?:\\.\\d{1,6})?|0(?:\\.\\d{1,6})?)$/",
|
|
4959
4959
|
sixFigures: "/^(0|[1-9]\\d{0,5})(\\.\\d{1,6})?$/",
|
|
4960
|
-
percentage: "/^(?:100(?:\\.0{
|
|
4960
|
+
percentage: "/^(?:100(?:\\.0{1,4})?|[1-9]?\\d(?:\\.\\d{1,4})?|0(?:\\.\\d{1,4})?)$/",
|
|
4961
4961
|
longitude: "/^-?(?:180(?:\\.0{1,6})?|1[0-7]\\d(?:\\.\\d{1,6})?|[1-9]?\\d(?:\\.\\d{1,6})?|0(?:\\.\\d{1,6})?)$/"
|
|
4962
4962
|
};
|
|
4963
4963
|
return commonRegExp[validatorName2];
|
|
@@ -69045,13 +69045,13 @@ function registerIcon(app) {
|
|
|
69045
69045
|
if (typeof window !== "undefined") {
|
|
69046
69046
|
let loadSvg = function() {
|
|
69047
69047
|
var body = document.body;
|
|
69048
|
-
var svgDom = document.getElementById("
|
|
69048
|
+
var svgDom = document.getElementById("__svg__icons__dom__1780642917998__");
|
|
69049
69049
|
if (!svgDom) {
|
|
69050
69050
|
svgDom = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
69051
69051
|
svgDom.style.position = "absolute";
|
|
69052
69052
|
svgDom.style.width = "0";
|
|
69053
69053
|
svgDom.style.height = "0";
|
|
69054
|
-
svgDom.id = "
|
|
69054
|
+
svgDom.id = "__svg__icons__dom__1780642917998__";
|
|
69055
69055
|
svgDom.setAttribute("xmlns", "http://www.w3.org/2000/svg");
|
|
69056
69056
|
svgDom.setAttribute("xmlns:link", "http://www.w3.org/1999/xlink");
|
|
69057
69057
|
}
|
|
@@ -80903,7 +80903,7 @@ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
80903
80903
|
_: 1
|
|
80904
80904
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
80905
80905
|
}
|
|
80906
|
-
var ResolutionTableWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$5, [["render", _sfc_render$5], ["__scopeId", "data-v-
|
|
80906
|
+
var ResolutionTableWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$5, [["render", _sfc_render$5], ["__scopeId", "data-v-0386b766"]]);
|
|
80907
80907
|
class DictManager {
|
|
80908
80908
|
constructor() {
|
|
80909
80909
|
this.dictCache = {};
|
|
@@ -81284,7 +81284,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81284
81284
|
width: "100"
|
|
81285
81285
|
}, {
|
|
81286
81286
|
default: withCtx(({ row }) => [
|
|
81287
|
-
createTextVNode(toDisplayString(row.completedInvestment), 1)
|
|
81287
|
+
createTextVNode(toDisplayString(row.completedInvestment || 0), 1)
|
|
81288
81288
|
]),
|
|
81289
81289
|
_: 1
|
|
81290
81290
|
}),
|
|
@@ -81292,11 +81292,41 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81292
81292
|
prop: "currentYearPlannedInvestment",
|
|
81293
81293
|
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u989D(\u4E07\u5143)",
|
|
81294
81294
|
width: "111"
|
|
81295
|
+
}, {
|
|
81296
|
+
default: withCtx(({ row }) => [
|
|
81297
|
+
createTextVNode(toDisplayString(row.currentYearPlannedInvestment || 0), 1)
|
|
81298
|
+
]),
|
|
81299
|
+
_: 1
|
|
81300
|
+
}),
|
|
81301
|
+
createVNode(_component_el_table_column, {
|
|
81302
|
+
prop: "enterpriseTotalPlannedInvestment",
|
|
81303
|
+
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u603B\u989D(\u4E07\u5143)",
|
|
81304
|
+
width: "130"
|
|
81305
|
+
}, {
|
|
81306
|
+
default: withCtx(({ row }) => [
|
|
81307
|
+
createTextVNode(toDisplayString(row.enterpriseTotalPlannedInvestment || 0), 1)
|
|
81308
|
+
]),
|
|
81309
|
+
_: 1
|
|
81310
|
+
}),
|
|
81311
|
+
createVNode(_component_el_table_column, {
|
|
81312
|
+
prop: "currentYearPlannedInvestment",
|
|
81313
|
+
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u989D(\u4E07\u5143)",
|
|
81314
|
+
width: "111"
|
|
81315
|
+
}, {
|
|
81316
|
+
default: withCtx(({ row }) => [
|
|
81317
|
+
createTextVNode(toDisplayString(row.currentYearPlannedInvestment || 0), 1)
|
|
81318
|
+
]),
|
|
81319
|
+
_: 1
|
|
81295
81320
|
}),
|
|
81296
81321
|
createVNode(_component_el_table_column, {
|
|
81297
81322
|
prop: "enterpriseTotalPlannedInvestment",
|
|
81298
81323
|
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u603B\u989D(\u4E07\u5143)",
|
|
81299
81324
|
width: "130"
|
|
81325
|
+
}, {
|
|
81326
|
+
default: withCtx(({ row }) => [
|
|
81327
|
+
createTextVNode(toDisplayString(row.enterpriseTotalPlannedInvestment || 0), 1)
|
|
81328
|
+
]),
|
|
81329
|
+
_: 1
|
|
81300
81330
|
}),
|
|
81301
81331
|
createVNode(_component_el_table_column, {
|
|
81302
81332
|
prop: "label9",
|
|
@@ -81323,6 +81353,11 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81323
81353
|
prop: "remark",
|
|
81324
81354
|
label: "\u5907\u6CE8",
|
|
81325
81355
|
width: "330"
|
|
81356
|
+
}, {
|
|
81357
|
+
default: withCtx(({ row }) => [
|
|
81358
|
+
createTextVNode(toDisplayString(row.remark || "-"), 1)
|
|
81359
|
+
]),
|
|
81360
|
+
_: 1
|
|
81326
81361
|
})
|
|
81327
81362
|
]),
|
|
81328
81363
|
_: 1
|
|
@@ -81341,7 +81376,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81341
81376
|
_: 1
|
|
81342
81377
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
81343
81378
|
}
|
|
81344
|
-
var FixedTableWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-
|
|
81379
|
+
var FixedTableWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-008d68c8"]]);
|
|
81345
81380
|
var index_vue_vue_type_style_index_0_scoped_true_lang$1 = "";
|
|
81346
81381
|
const _sfc_main$3 = {
|
|
81347
81382
|
name: "equity-table-widget",
|
|
@@ -81604,17 +81639,17 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81604
81639
|
default: withCtx(({ row }) => {
|
|
81605
81640
|
var _a2, _b2;
|
|
81606
81641
|
return [
|
|
81607
|
-
((_b2 = (_a2 = $props.field) == null ? void 0 : _a2.options) == null ? void 0 : _b2.clickRow) ? (openBlock(), createBlock(_component_el_text, {
|
|
81642
|
+
((_b2 = (_a2 = $props.field) == null ? void 0 : _a2.options) == null ? void 0 : _b2.clickRow) && row.projectName ? (openBlock(), createBlock(_component_el_text, {
|
|
81608
81643
|
key: 0,
|
|
81609
81644
|
class: "click-text",
|
|
81610
81645
|
type: "primary",
|
|
81611
81646
|
onClick: ($event) => $options.handleRow(row)
|
|
81612
81647
|
}, {
|
|
81613
81648
|
default: withCtx(() => [
|
|
81614
|
-
createTextVNode(toDisplayString(row.projectName), 1)
|
|
81649
|
+
createTextVNode(toDisplayString(row.projectName || "-"), 1)
|
|
81615
81650
|
]),
|
|
81616
81651
|
_: 2
|
|
81617
|
-
}, 1032, ["onClick"])) : (openBlock(), createElementBlock("span", _hoisted_1$1, toDisplayString(row.projectName), 1))
|
|
81652
|
+
}, 1032, ["onClick"])) : (openBlock(), createElementBlock("span", _hoisted_1$1, toDisplayString(row.projectName || "-"), 1))
|
|
81618
81653
|
];
|
|
81619
81654
|
}),
|
|
81620
81655
|
_: 1
|
|
@@ -81623,6 +81658,11 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81623
81658
|
prop: "registeredCapital",
|
|
81624
81659
|
label: "\u6CE8\u518C\u8D44\u672C(\u4E07\u5143)",
|
|
81625
81660
|
width: "90"
|
|
81661
|
+
}, {
|
|
81662
|
+
default: withCtx(({ row }) => [
|
|
81663
|
+
createTextVNode(toDisplayString(row.registeredCapital || 0), 1)
|
|
81664
|
+
]),
|
|
81665
|
+
_: 1
|
|
81626
81666
|
}),
|
|
81627
81667
|
createVNode(_component_el_table_column, {
|
|
81628
81668
|
prop: "subscribedCapital",
|
|
@@ -81630,7 +81670,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81630
81670
|
width: "100"
|
|
81631
81671
|
}, {
|
|
81632
81672
|
default: withCtx(({ row }) => [
|
|
81633
|
-
createTextVNode(toDisplayString(row.subscribedCapital), 1)
|
|
81673
|
+
createTextVNode(toDisplayString(row.subscribedCapital || 0), 1)
|
|
81634
81674
|
]),
|
|
81635
81675
|
_: 1
|
|
81636
81676
|
}),
|
|
@@ -81640,7 +81680,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81640
81680
|
width: "100"
|
|
81641
81681
|
}, {
|
|
81642
81682
|
default: withCtx(({ row }) => [
|
|
81643
|
-
createTextVNode(toDisplayString(row.completedInvestment), 1)
|
|
81683
|
+
createTextVNode(toDisplayString(row.completedInvestment || 0), 1)
|
|
81644
81684
|
]),
|
|
81645
81685
|
_: 1
|
|
81646
81686
|
}),
|
|
@@ -81648,11 +81688,21 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81648
81688
|
prop: "currentYearPlannedInvestment",
|
|
81649
81689
|
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u989D(\u4E07\u5143)",
|
|
81650
81690
|
width: "111"
|
|
81691
|
+
}, {
|
|
81692
|
+
default: withCtx(({ row }) => [
|
|
81693
|
+
createTextVNode(toDisplayString(row.currentYearPlannedInvestment || 0), 1)
|
|
81694
|
+
]),
|
|
81695
|
+
_: 1
|
|
81651
81696
|
}),
|
|
81652
81697
|
createVNode(_component_el_table_column, {
|
|
81653
81698
|
prop: "enterpriseTotalPlannedInvestment",
|
|
81654
81699
|
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u603B\u989D(\u4E07\u5143)",
|
|
81655
81700
|
width: "130"
|
|
81701
|
+
}, {
|
|
81702
|
+
default: withCtx(({ row }) => [
|
|
81703
|
+
createTextVNode(toDisplayString(row.enterpriseTotalPlannedInvestment || 0), 1)
|
|
81704
|
+
]),
|
|
81705
|
+
_: 1
|
|
81656
81706
|
}),
|
|
81657
81707
|
createVNode(_component_el_table_column, {
|
|
81658
81708
|
prop: "label9",
|
|
@@ -81683,6 +81733,11 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81683
81733
|
prop: "remark",
|
|
81684
81734
|
label: "\u5907\u6CE8",
|
|
81685
81735
|
width: "330"
|
|
81736
|
+
}, {
|
|
81737
|
+
default: withCtx(({ row }) => [
|
|
81738
|
+
createTextVNode(toDisplayString(row.remark || "-"), 1)
|
|
81739
|
+
]),
|
|
81740
|
+
_: 1
|
|
81686
81741
|
})
|
|
81687
81742
|
]),
|
|
81688
81743
|
_: 1
|
|
@@ -81701,7 +81756,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81701
81756
|
_: 1
|
|
81702
81757
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
81703
81758
|
}
|
|
81704
|
-
var EquityTableSchema = /* @__PURE__ */ _export_sfc$1(_sfc_main$3, [["render", _sfc_render$3], ["__scopeId", "data-v-
|
|
81759
|
+
var EquityTableSchema = /* @__PURE__ */ _export_sfc$1(_sfc_main$3, [["render", _sfc_render$3], ["__scopeId", "data-v-3486e3fe"]]);
|
|
81705
81760
|
const AssetTypeEnum = {
|
|
81706
81761
|
"0": "equity",
|
|
81707
81762
|
"1": "house",
|