form-custom-test 3.0.197 → 3.0.198
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 +63 -13
- package/dist/designer.style.css +1 -1
- package/dist/designer.umd.js +3 -3
- package/dist/render.es.js +63 -13
- package/dist/render.style.css +1 -1
- package/dist/render.umd.js +3 -3
- 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__1780640193562__");
|
|
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__1780640193562__";
|
|
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,27 @@ 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
|
+
]),
|
|
81289
|
+
_: 1
|
|
81290
|
+
}),
|
|
81291
|
+
createVNode(_component_el_table_column, {
|
|
81292
|
+
prop: "currentYearPlannedInvestment",
|
|
81293
|
+
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u989D(\u4E07\u5143)",
|
|
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)
|
|
81288
81308
|
]),
|
|
81289
81309
|
_: 1
|
|
81290
81310
|
}),
|
|
@@ -81319,6 +81339,16 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81319
81339
|
]),
|
|
81320
81340
|
_: 1
|
|
81321
81341
|
}),
|
|
81342
|
+
createVNode(_component_el_table_column, {
|
|
81343
|
+
prop: "remark",
|
|
81344
|
+
label: "\u5907\u6CE8",
|
|
81345
|
+
width: "330"
|
|
81346
|
+
}, {
|
|
81347
|
+
default: withCtx(({ row }) => [
|
|
81348
|
+
createTextVNode(toDisplayString(row.remark || "-"), 1)
|
|
81349
|
+
]),
|
|
81350
|
+
_: 1
|
|
81351
|
+
}),
|
|
81322
81352
|
createVNode(_component_el_table_column, {
|
|
81323
81353
|
prop: "remark",
|
|
81324
81354
|
label: "\u5907\u6CE8",
|
|
@@ -81341,7 +81371,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81341
81371
|
_: 1
|
|
81342
81372
|
}, 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
81373
|
}
|
|
81344
|
-
var FixedTableWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-
|
|
81374
|
+
var FixedTableWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-070d9902"]]);
|
|
81345
81375
|
var index_vue_vue_type_style_index_0_scoped_true_lang$1 = "";
|
|
81346
81376
|
const _sfc_main$3 = {
|
|
81347
81377
|
name: "equity-table-widget",
|
|
@@ -81604,17 +81634,17 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81604
81634
|
default: withCtx(({ row }) => {
|
|
81605
81635
|
var _a2, _b2;
|
|
81606
81636
|
return [
|
|
81607
|
-
((_b2 = (_a2 = $props.field) == null ? void 0 : _a2.options) == null ? void 0 : _b2.clickRow) ? (openBlock(), createBlock(_component_el_text, {
|
|
81637
|
+
((_b2 = (_a2 = $props.field) == null ? void 0 : _a2.options) == null ? void 0 : _b2.clickRow) && row.projectName ? (openBlock(), createBlock(_component_el_text, {
|
|
81608
81638
|
key: 0,
|
|
81609
81639
|
class: "click-text",
|
|
81610
81640
|
type: "primary",
|
|
81611
81641
|
onClick: ($event) => $options.handleRow(row)
|
|
81612
81642
|
}, {
|
|
81613
81643
|
default: withCtx(() => [
|
|
81614
|
-
createTextVNode(toDisplayString(row.projectName), 1)
|
|
81644
|
+
createTextVNode(toDisplayString(row.projectName || "-"), 1)
|
|
81615
81645
|
]),
|
|
81616
81646
|
_: 2
|
|
81617
|
-
}, 1032, ["onClick"])) : (openBlock(), createElementBlock("span", _hoisted_1$1, toDisplayString(row.projectName), 1))
|
|
81647
|
+
}, 1032, ["onClick"])) : (openBlock(), createElementBlock("span", _hoisted_1$1, toDisplayString(row.projectName || "-"), 1))
|
|
81618
81648
|
];
|
|
81619
81649
|
}),
|
|
81620
81650
|
_: 1
|
|
@@ -81623,6 +81653,11 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81623
81653
|
prop: "registeredCapital",
|
|
81624
81654
|
label: "\u6CE8\u518C\u8D44\u672C(\u4E07\u5143)",
|
|
81625
81655
|
width: "90"
|
|
81656
|
+
}, {
|
|
81657
|
+
default: withCtx(({ row }) => [
|
|
81658
|
+
createTextVNode(toDisplayString(row.registeredCapital || 0), 1)
|
|
81659
|
+
]),
|
|
81660
|
+
_: 1
|
|
81626
81661
|
}),
|
|
81627
81662
|
createVNode(_component_el_table_column, {
|
|
81628
81663
|
prop: "subscribedCapital",
|
|
@@ -81630,7 +81665,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81630
81665
|
width: "100"
|
|
81631
81666
|
}, {
|
|
81632
81667
|
default: withCtx(({ row }) => [
|
|
81633
|
-
createTextVNode(toDisplayString(row.subscribedCapital), 1)
|
|
81668
|
+
createTextVNode(toDisplayString(row.subscribedCapital || 0), 1)
|
|
81634
81669
|
]),
|
|
81635
81670
|
_: 1
|
|
81636
81671
|
}),
|
|
@@ -81640,7 +81675,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81640
81675
|
width: "100"
|
|
81641
81676
|
}, {
|
|
81642
81677
|
default: withCtx(({ row }) => [
|
|
81643
|
-
createTextVNode(toDisplayString(row.completedInvestment), 1)
|
|
81678
|
+
createTextVNode(toDisplayString(row.completedInvestment || 0), 1)
|
|
81644
81679
|
]),
|
|
81645
81680
|
_: 1
|
|
81646
81681
|
}),
|
|
@@ -81648,11 +81683,21 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81648
81683
|
prop: "currentYearPlannedInvestment",
|
|
81649
81684
|
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u989D(\u4E07\u5143)",
|
|
81650
81685
|
width: "111"
|
|
81686
|
+
}, {
|
|
81687
|
+
default: withCtx(({ row }) => [
|
|
81688
|
+
createTextVNode(toDisplayString(row.currentYearPlannedInvestment || 0), 1)
|
|
81689
|
+
]),
|
|
81690
|
+
_: 1
|
|
81651
81691
|
}),
|
|
81652
81692
|
createVNode(_component_el_table_column, {
|
|
81653
81693
|
prop: "enterpriseTotalPlannedInvestment",
|
|
81654
81694
|
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u603B\u989D(\u4E07\u5143)",
|
|
81655
81695
|
width: "130"
|
|
81696
|
+
}, {
|
|
81697
|
+
default: withCtx(({ row }) => [
|
|
81698
|
+
createTextVNode(toDisplayString(row.enterpriseTotalPlannedInvestment || 0), 1)
|
|
81699
|
+
]),
|
|
81700
|
+
_: 1
|
|
81656
81701
|
}),
|
|
81657
81702
|
createVNode(_component_el_table_column, {
|
|
81658
81703
|
prop: "label9",
|
|
@@ -81683,6 +81728,11 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81683
81728
|
prop: "remark",
|
|
81684
81729
|
label: "\u5907\u6CE8",
|
|
81685
81730
|
width: "330"
|
|
81731
|
+
}, {
|
|
81732
|
+
default: withCtx(({ row }) => [
|
|
81733
|
+
createTextVNode(toDisplayString(row.remark || "-"), 1)
|
|
81734
|
+
]),
|
|
81735
|
+
_: 1
|
|
81686
81736
|
})
|
|
81687
81737
|
]),
|
|
81688
81738
|
_: 1
|
|
@@ -81701,7 +81751,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
81701
81751
|
_: 1
|
|
81702
81752
|
}, 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
81753
|
}
|
|
81704
|
-
var EquityTableSchema = /* @__PURE__ */ _export_sfc$1(_sfc_main$3, [["render", _sfc_render$3], ["__scopeId", "data-v-
|
|
81754
|
+
var EquityTableSchema = /* @__PURE__ */ _export_sfc$1(_sfc_main$3, [["render", _sfc_render$3], ["__scopeId", "data-v-3486e3fe"]]);
|
|
81705
81755
|
const AssetTypeEnum = {
|
|
81706
81756
|
"0": "equity",
|
|
81707
81757
|
"1": "house",
|