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/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__1780642926328__");
|
|
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__1780642926328__";
|
|
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,7 @@ 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
64307
|
]),
|
|
64308
64308
|
_: 1
|
|
64309
64309
|
}),
|
|
@@ -64311,11 +64311,41 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64311
64311
|
prop: "currentYearPlannedInvestment",
|
|
64312
64312
|
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u989D(\u4E07\u5143)",
|
|
64313
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)
|
|
64327
|
+
]),
|
|
64328
|
+
_: 1
|
|
64329
|
+
}),
|
|
64330
|
+
createVNode(_component_el_table_column, {
|
|
64331
|
+
prop: "currentYearPlannedInvestment",
|
|
64332
|
+
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u989D(\u4E07\u5143)",
|
|
64333
|
+
width: "111"
|
|
64334
|
+
}, {
|
|
64335
|
+
default: withCtx(({ row }) => [
|
|
64336
|
+
createTextVNode(toDisplayString(row.currentYearPlannedInvestment || 0), 1)
|
|
64337
|
+
]),
|
|
64338
|
+
_: 1
|
|
64314
64339
|
}),
|
|
64315
64340
|
createVNode(_component_el_table_column, {
|
|
64316
64341
|
prop: "enterpriseTotalPlannedInvestment",
|
|
64317
64342
|
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u603B\u989D(\u4E07\u5143)",
|
|
64318
64343
|
width: "130"
|
|
64344
|
+
}, {
|
|
64345
|
+
default: withCtx(({ row }) => [
|
|
64346
|
+
createTextVNode(toDisplayString(row.enterpriseTotalPlannedInvestment || 0), 1)
|
|
64347
|
+
]),
|
|
64348
|
+
_: 1
|
|
64319
64349
|
}),
|
|
64320
64350
|
createVNode(_component_el_table_column, {
|
|
64321
64351
|
prop: "label9",
|
|
@@ -64342,6 +64372,11 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64342
64372
|
prop: "remark",
|
|
64343
64373
|
label: "\u5907\u6CE8",
|
|
64344
64374
|
width: "330"
|
|
64375
|
+
}, {
|
|
64376
|
+
default: withCtx(({ row }) => [
|
|
64377
|
+
createTextVNode(toDisplayString(row.remark || "-"), 1)
|
|
64378
|
+
]),
|
|
64379
|
+
_: 1
|
|
64345
64380
|
})
|
|
64346
64381
|
]),
|
|
64347
64382
|
_: 1
|
|
@@ -64360,7 +64395,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64360
64395
|
_: 1
|
|
64361
64396
|
}, 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
64397
|
}
|
|
64363
|
-
var FixedTableWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-
|
|
64398
|
+
var FixedTableWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-008d68c8"]]);
|
|
64364
64399
|
var index_vue_vue_type_style_index_0_scoped_true_lang$1 = "";
|
|
64365
64400
|
const _sfc_main$3 = {
|
|
64366
64401
|
name: "equity-table-widget",
|
|
@@ -64623,17 +64658,17 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64623
64658
|
default: withCtx(({ row }) => {
|
|
64624
64659
|
var _a, _b;
|
|
64625
64660
|
return [
|
|
64626
|
-
((_b = (_a = $props.field) == null ? void 0 : _a.options) == null ? void 0 : _b.clickRow) ? (openBlock(), createBlock(_component_el_text, {
|
|
64661
|
+
((_b = (_a = $props.field) == null ? void 0 : _a.options) == null ? void 0 : _b.clickRow) && row.projectName ? (openBlock(), createBlock(_component_el_text, {
|
|
64627
64662
|
key: 0,
|
|
64628
64663
|
class: "click-text",
|
|
64629
64664
|
type: "primary",
|
|
64630
64665
|
onClick: ($event) => $options.handleRow(row)
|
|
64631
64666
|
}, {
|
|
64632
64667
|
default: withCtx(() => [
|
|
64633
|
-
createTextVNode(toDisplayString(row.projectName), 1)
|
|
64668
|
+
createTextVNode(toDisplayString(row.projectName || "-"), 1)
|
|
64634
64669
|
]),
|
|
64635
64670
|
_: 2
|
|
64636
|
-
}, 1032, ["onClick"])) : (openBlock(), createElementBlock("span", _hoisted_1$1, toDisplayString(row.projectName), 1))
|
|
64671
|
+
}, 1032, ["onClick"])) : (openBlock(), createElementBlock("span", _hoisted_1$1, toDisplayString(row.projectName || "-"), 1))
|
|
64637
64672
|
];
|
|
64638
64673
|
}),
|
|
64639
64674
|
_: 1
|
|
@@ -64642,6 +64677,11 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64642
64677
|
prop: "registeredCapital",
|
|
64643
64678
|
label: "\u6CE8\u518C\u8D44\u672C(\u4E07\u5143)",
|
|
64644
64679
|
width: "90"
|
|
64680
|
+
}, {
|
|
64681
|
+
default: withCtx(({ row }) => [
|
|
64682
|
+
createTextVNode(toDisplayString(row.registeredCapital || 0), 1)
|
|
64683
|
+
]),
|
|
64684
|
+
_: 1
|
|
64645
64685
|
}),
|
|
64646
64686
|
createVNode(_component_el_table_column, {
|
|
64647
64687
|
prop: "subscribedCapital",
|
|
@@ -64649,7 +64689,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64649
64689
|
width: "100"
|
|
64650
64690
|
}, {
|
|
64651
64691
|
default: withCtx(({ row }) => [
|
|
64652
|
-
createTextVNode(toDisplayString(row.subscribedCapital), 1)
|
|
64692
|
+
createTextVNode(toDisplayString(row.subscribedCapital || 0), 1)
|
|
64653
64693
|
]),
|
|
64654
64694
|
_: 1
|
|
64655
64695
|
}),
|
|
@@ -64659,7 +64699,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64659
64699
|
width: "100"
|
|
64660
64700
|
}, {
|
|
64661
64701
|
default: withCtx(({ row }) => [
|
|
64662
|
-
createTextVNode(toDisplayString(row.completedInvestment), 1)
|
|
64702
|
+
createTextVNode(toDisplayString(row.completedInvestment || 0), 1)
|
|
64663
64703
|
]),
|
|
64664
64704
|
_: 1
|
|
64665
64705
|
}),
|
|
@@ -64667,11 +64707,21 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64667
64707
|
prop: "currentYearPlannedInvestment",
|
|
64668
64708
|
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u989D(\u4E07\u5143)",
|
|
64669
64709
|
width: "111"
|
|
64710
|
+
}, {
|
|
64711
|
+
default: withCtx(({ row }) => [
|
|
64712
|
+
createTextVNode(toDisplayString(row.currentYearPlannedInvestment || 0), 1)
|
|
64713
|
+
]),
|
|
64714
|
+
_: 1
|
|
64670
64715
|
}),
|
|
64671
64716
|
createVNode(_component_el_table_column, {
|
|
64672
64717
|
prop: "enterpriseTotalPlannedInvestment",
|
|
64673
64718
|
label: "\u672C\u5E74\u8BA1\u5212\u6295\u8D44\u603B\u989D(\u4E07\u5143)",
|
|
64674
64719
|
width: "130"
|
|
64720
|
+
}, {
|
|
64721
|
+
default: withCtx(({ row }) => [
|
|
64722
|
+
createTextVNode(toDisplayString(row.enterpriseTotalPlannedInvestment || 0), 1)
|
|
64723
|
+
]),
|
|
64724
|
+
_: 1
|
|
64675
64725
|
}),
|
|
64676
64726
|
createVNode(_component_el_table_column, {
|
|
64677
64727
|
prop: "label9",
|
|
@@ -64702,6 +64752,11 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64702
64752
|
prop: "remark",
|
|
64703
64753
|
label: "\u5907\u6CE8",
|
|
64704
64754
|
width: "330"
|
|
64755
|
+
}, {
|
|
64756
|
+
default: withCtx(({ row }) => [
|
|
64757
|
+
createTextVNode(toDisplayString(row.remark || "-"), 1)
|
|
64758
|
+
]),
|
|
64759
|
+
_: 1
|
|
64705
64760
|
})
|
|
64706
64761
|
]),
|
|
64707
64762
|
_: 1
|
|
@@ -64720,7 +64775,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
64720
64775
|
_: 1
|
|
64721
64776
|
}, 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
64777
|
}
|
|
64723
|
-
var EquityTableSchema = /* @__PURE__ */ _export_sfc$1(_sfc_main$3, [["render", _sfc_render$3], ["__scopeId", "data-v-
|
|
64778
|
+
var EquityTableSchema = /* @__PURE__ */ _export_sfc$1(_sfc_main$3, [["render", _sfc_render$3], ["__scopeId", "data-v-3486e3fe"]]);
|
|
64724
64779
|
const AssetTypeEnum = {
|
|
64725
64780
|
"0": "equity",
|
|
64726
64781
|
"1": "house",
|