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/render.es.js
CHANGED
|
@@ -3125,11 +3125,11 @@ const getRegExp = function(validatorName2) {
|
|
|
3125
3125
|
maxLen12Decimals6: "/^\\d{1,12}(\\.\\d{1,6})?$/",
|
|
3126
3126
|
isPositiveIntegerLength: "/^([1-9]\\d{0,3})$/",
|
|
3127
3127
|
isPositiveIntegerZero: "/^0$|^([1-9]\\d{0,3})$/",
|
|
3128
|
-
maxLen10Decimals2: "
|
|
3128
|
+
maxLen10Decimals2: "/^(0|[1-9]\\d{0,9})(\\.\\d{1,2})?$/",
|
|
3129
3129
|
maxLen12Decimals2: "/^\\d{1,12}(\\.\\d{1,2})?$/",
|
|
3130
3130
|
latitude: "/^-?(?:90(?:\\.0{1,6})?|[1-8]?\\d(?:\\.\\d{1,6})?|0(?:\\.\\d{1,6})?)$/",
|
|
3131
3131
|
sixFigures: "/^(0|[1-9]\\d{0,5})(\\.\\d{1,6})?$/",
|
|
3132
|
-
percentage: "/^(?:100(?:\\.0{
|
|
3132
|
+
percentage: "/^(?:100(?:\\.0{1,4})?|[1-9]?\\d(?:\\.\\d{1,4})?|0(?:\\.\\d{1,4})?)$/",
|
|
3133
3133
|
longitude: "/^-?(?:180(?:\\.0{1,6})?|1[0-7]\\d(?:\\.\\d{1,6})?|[1-9]?\\d(?:\\.\\d{1,6})?|0(?:\\.\\d{1,6})?)$/"
|
|
3134
3134
|
};
|
|
3135
3135
|
return commonRegExp[validatorName2];
|
|
@@ -26517,13 +26517,13 @@ function registerIcon(app) {
|
|
|
26517
26517
|
if (typeof window !== "undefined") {
|
|
26518
26518
|
let loadSvg = function() {
|
|
26519
26519
|
var body = document.body;
|
|
26520
|
-
var svgDom = document.getElementById("
|
|
26520
|
+
var svgDom = document.getElementById("__svg__icons__dom__1780640202835__");
|
|
26521
26521
|
if (!svgDom) {
|
|
26522
26522
|
svgDom = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
26523
26523
|
svgDom.style.position = "absolute";
|
|
26524
26524
|
svgDom.style.width = "0";
|
|
26525
26525
|
svgDom.style.height = "0";
|
|
26526
|
-
svgDom.id = "
|
|
26526
|
+
svgDom.id = "__svg__icons__dom__1780640202835__";
|
|
26527
26527
|
svgDom.setAttribute("xmlns", "http://www.w3.org/2000/svg");
|
|
26528
26528
|
svgDom.setAttribute("xmlns:link", "http://www.w3.org/1999/xlink");
|
|
26529
26529
|
}
|
|
@@ -63922,7 +63922,7 @@ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
63922
63922
|
_: 1
|
|
63923
63923
|
}, 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"]);
|
|
63924
63924
|
}
|
|
63925
|
-
var ResolutionTableWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$5, [["render", _sfc_render$5], ["__scopeId", "data-v-
|
|
63925
|
+
var ResolutionTableWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$5, [["render", _sfc_render$5], ["__scopeId", "data-v-0386b766"]]);
|
|
63926
63926
|
class DictManager {
|
|
63927
63927
|
constructor() {
|
|
63928
63928
|
this.dictCache = {};
|
|
@@ -64303,7 +64303,27 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64303
64303
|
width: "100"
|
|
64304
64304
|
}, {
|
|
64305
64305
|
default: withCtx(({ row }) => [
|
|
64306
|
-
createTextVNode(toDisplayString(row.completedInvestment), 1)
|
|
64306
|
+
createTextVNode(toDisplayString(row.completedInvestment || 0), 1)
|
|
64307
|
+
]),
|
|
64308
|
+
_: 1
|
|
64309
|
+
}),
|
|
64310
|
+
createVNode(_component_el_table_column, {
|
|
64311
|
+
prop: "currentYearPlannedInvestment",
|
|
64312
|
+
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u989D(\u4E07\u5143)",
|
|
64313
|
+
width: "111"
|
|
64314
|
+
}, {
|
|
64315
|
+
default: withCtx(({ row }) => [
|
|
64316
|
+
createTextVNode(toDisplayString(row.currentYearPlannedInvestment || 0), 1)
|
|
64317
|
+
]),
|
|
64318
|
+
_: 1
|
|
64319
|
+
}),
|
|
64320
|
+
createVNode(_component_el_table_column, {
|
|
64321
|
+
prop: "enterpriseTotalPlannedInvestment",
|
|
64322
|
+
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u603B\u989D(\u4E07\u5143)",
|
|
64323
|
+
width: "130"
|
|
64324
|
+
}, {
|
|
64325
|
+
default: withCtx(({ row }) => [
|
|
64326
|
+
createTextVNode(toDisplayString(row.enterpriseTotalPlannedInvestment || 0), 1)
|
|
64307
64327
|
]),
|
|
64308
64328
|
_: 1
|
|
64309
64329
|
}),
|
|
@@ -64338,6 +64358,16 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64338
64358
|
]),
|
|
64339
64359
|
_: 1
|
|
64340
64360
|
}),
|
|
64361
|
+
createVNode(_component_el_table_column, {
|
|
64362
|
+
prop: "remark",
|
|
64363
|
+
label: "\u5907\u6CE8",
|
|
64364
|
+
width: "330"
|
|
64365
|
+
}, {
|
|
64366
|
+
default: withCtx(({ row }) => [
|
|
64367
|
+
createTextVNode(toDisplayString(row.remark || "-"), 1)
|
|
64368
|
+
]),
|
|
64369
|
+
_: 1
|
|
64370
|
+
}),
|
|
64341
64371
|
createVNode(_component_el_table_column, {
|
|
64342
64372
|
prop: "remark",
|
|
64343
64373
|
label: "\u5907\u6CE8",
|
|
@@ -64360,7 +64390,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64360
64390
|
_: 1
|
|
64361
64391
|
}, 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"]);
|
|
64362
64392
|
}
|
|
64363
|
-
var FixedTableWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-
|
|
64393
|
+
var FixedTableWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-070d9902"]]);
|
|
64364
64394
|
var index_vue_vue_type_style_index_0_scoped_true_lang$1 = "";
|
|
64365
64395
|
const _sfc_main$3 = {
|
|
64366
64396
|
name: "equity-table-widget",
|
|
@@ -64623,17 +64653,17 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64623
64653
|
default: withCtx(({ row }) => {
|
|
64624
64654
|
var _a, _b;
|
|
64625
64655
|
return [
|
|
64626
|
-
((_b = (_a = $props.field) == null ? void 0 : _a.options) == null ? void 0 : _b.clickRow) ? (openBlock(), createBlock(_component_el_text, {
|
|
64656
|
+
((_b = (_a = $props.field) == null ? void 0 : _a.options) == null ? void 0 : _b.clickRow) && row.projectName ? (openBlock(), createBlock(_component_el_text, {
|
|
64627
64657
|
key: 0,
|
|
64628
64658
|
class: "click-text",
|
|
64629
64659
|
type: "primary",
|
|
64630
64660
|
onClick: ($event) => $options.handleRow(row)
|
|
64631
64661
|
}, {
|
|
64632
64662
|
default: withCtx(() => [
|
|
64633
|
-
createTextVNode(toDisplayString(row.projectName), 1)
|
|
64663
|
+
createTextVNode(toDisplayString(row.projectName || "-"), 1)
|
|
64634
64664
|
]),
|
|
64635
64665
|
_: 2
|
|
64636
|
-
}, 1032, ["onClick"])) : (openBlock(), createElementBlock("span", _hoisted_1$1, toDisplayString(row.projectName), 1))
|
|
64666
|
+
}, 1032, ["onClick"])) : (openBlock(), createElementBlock("span", _hoisted_1$1, toDisplayString(row.projectName || "-"), 1))
|
|
64637
64667
|
];
|
|
64638
64668
|
}),
|
|
64639
64669
|
_: 1
|
|
@@ -64642,6 +64672,11 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64642
64672
|
prop: "registeredCapital",
|
|
64643
64673
|
label: "\u6CE8\u518C\u8D44\u672C(\u4E07\u5143)",
|
|
64644
64674
|
width: "90"
|
|
64675
|
+
}, {
|
|
64676
|
+
default: withCtx(({ row }) => [
|
|
64677
|
+
createTextVNode(toDisplayString(row.registeredCapital || 0), 1)
|
|
64678
|
+
]),
|
|
64679
|
+
_: 1
|
|
64645
64680
|
}),
|
|
64646
64681
|
createVNode(_component_el_table_column, {
|
|
64647
64682
|
prop: "subscribedCapital",
|
|
@@ -64649,7 +64684,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64649
64684
|
width: "100"
|
|
64650
64685
|
}, {
|
|
64651
64686
|
default: withCtx(({ row }) => [
|
|
64652
|
-
createTextVNode(toDisplayString(row.subscribedCapital), 1)
|
|
64687
|
+
createTextVNode(toDisplayString(row.subscribedCapital || 0), 1)
|
|
64653
64688
|
]),
|
|
64654
64689
|
_: 1
|
|
64655
64690
|
}),
|
|
@@ -64659,7 +64694,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64659
64694
|
width: "100"
|
|
64660
64695
|
}, {
|
|
64661
64696
|
default: withCtx(({ row }) => [
|
|
64662
|
-
createTextVNode(toDisplayString(row.completedInvestment), 1)
|
|
64697
|
+
createTextVNode(toDisplayString(row.completedInvestment || 0), 1)
|
|
64663
64698
|
]),
|
|
64664
64699
|
_: 1
|
|
64665
64700
|
}),
|
|
@@ -64667,11 +64702,21 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64667
64702
|
prop: "currentYearPlannedInvestment",
|
|
64668
64703
|
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u989D(\u4E07\u5143)",
|
|
64669
64704
|
width: "111"
|
|
64705
|
+
}, {
|
|
64706
|
+
default: withCtx(({ row }) => [
|
|
64707
|
+
createTextVNode(toDisplayString(row.currentYearPlannedInvestment || 0), 1)
|
|
64708
|
+
]),
|
|
64709
|
+
_: 1
|
|
64670
64710
|
}),
|
|
64671
64711
|
createVNode(_component_el_table_column, {
|
|
64672
64712
|
prop: "enterpriseTotalPlannedInvestment",
|
|
64673
64713
|
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u603B\u989D(\u4E07\u5143)",
|
|
64674
64714
|
width: "130"
|
|
64715
|
+
}, {
|
|
64716
|
+
default: withCtx(({ row }) => [
|
|
64717
|
+
createTextVNode(toDisplayString(row.enterpriseTotalPlannedInvestment || 0), 1)
|
|
64718
|
+
]),
|
|
64719
|
+
_: 1
|
|
64675
64720
|
}),
|
|
64676
64721
|
createVNode(_component_el_table_column, {
|
|
64677
64722
|
prop: "label9",
|
|
@@ -64702,6 +64747,11 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64702
64747
|
prop: "remark",
|
|
64703
64748
|
label: "\u5907\u6CE8",
|
|
64704
64749
|
width: "330"
|
|
64750
|
+
}, {
|
|
64751
|
+
default: withCtx(({ row }) => [
|
|
64752
|
+
createTextVNode(toDisplayString(row.remark || "-"), 1)
|
|
64753
|
+
]),
|
|
64754
|
+
_: 1
|
|
64705
64755
|
})
|
|
64706
64756
|
]),
|
|
64707
64757
|
_: 1
|
|
@@ -64720,7 +64770,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64720
64770
|
_: 1
|
|
64721
64771
|
}, 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"]);
|
|
64722
64772
|
}
|
|
64723
|
-
var EquityTableSchema = /* @__PURE__ */ _export_sfc$1(_sfc_main$3, [["render", _sfc_render$3], ["__scopeId", "data-v-
|
|
64773
|
+
var EquityTableSchema = /* @__PURE__ */ _export_sfc$1(_sfc_main$3, [["render", _sfc_render$3], ["__scopeId", "data-v-3486e3fe"]]);
|
|
64724
64774
|
const AssetTypeEnum = {
|
|
64725
64775
|
"0": "equity",
|
|
64726
64776
|
"1": "house",
|