@factoringplus/pl-components-pack-v3 0.4.41-pre-1 → 0.4.41-pre-2
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/pl-components-pack-v3.es.js +581 -401
- package/dist/pl-components-pack-v3.umd.js +21 -21
- package/dist/style.css +2 -2
- package/package.json +1 -1
|
@@ -1812,11 +1812,11 @@ var _sfc_main6 = {
|
|
|
1812
1812
|
}, _hoisted_16$2 = {
|
|
1813
1813
|
viewBox: "0 0 1024 1024",
|
|
1814
1814
|
xmlns: "http://www.w3.org/2000/svg"
|
|
1815
|
-
}, _hoisted_26$
|
|
1815
|
+
}, _hoisted_26$1 = /* @__PURE__ */ createElementVNode("path", {
|
|
1816
1816
|
fill: "currentColor",
|
|
1817
1817
|
d: "M831.872 340.864 512 652.672 192.128 340.864a30.592 30.592 0 0 0-42.752 0 29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728 30.592 30.592 0 0 0-42.752 0z"
|
|
1818
1818
|
}, null, -1), _hoisted_36 = [
|
|
1819
|
-
_hoisted_26$
|
|
1819
|
+
_hoisted_26$1
|
|
1820
1820
|
];
|
|
1821
1821
|
function _sfc_render6(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1822
1822
|
return openBlock(), createElementBlock("svg", _hoisted_16$2, _hoisted_36);
|
|
@@ -24480,7 +24480,7 @@ const _hoisted_2$p = ["src"];
|
|
|
24480
24480
|
const _sfc_main$x = {
|
|
24481
24481
|
__name: "pl-input",
|
|
24482
24482
|
props: {
|
|
24483
|
-
modelValue: {
|
|
24483
|
+
modelValue: { required: true },
|
|
24484
24484
|
icon: { type: Boolean, default: false },
|
|
24485
24485
|
helper: {
|
|
24486
24486
|
type: String,
|
|
@@ -24549,19 +24549,48 @@ const _sfc_main$x = {
|
|
|
24549
24549
|
widthLabel: {
|
|
24550
24550
|
type: String,
|
|
24551
24551
|
default: "100px"
|
|
24552
|
+
},
|
|
24553
|
+
currency: {
|
|
24554
|
+
type: Boolean,
|
|
24555
|
+
default: false
|
|
24556
|
+
},
|
|
24557
|
+
round: {
|
|
24558
|
+
type: Boolean,
|
|
24559
|
+
default: false
|
|
24560
|
+
},
|
|
24561
|
+
currencyInputOptions: {
|
|
24562
|
+
type: Object,
|
|
24563
|
+
default: () => ({})
|
|
24552
24564
|
}
|
|
24553
24565
|
},
|
|
24554
24566
|
emits: ["update:modelValue", "validate"],
|
|
24555
24567
|
setup(__props, { emit: emit2 }) {
|
|
24556
24568
|
const props = __props;
|
|
24569
|
+
const { currency, round: round2, currencyInputOptions } = toRefs(props);
|
|
24557
24570
|
const modelValue = computed({
|
|
24558
24571
|
get: () => props.modelValue,
|
|
24559
|
-
set: (val) =>
|
|
24572
|
+
set: (val) => {
|
|
24573
|
+
emit2("update:modelValue", val);
|
|
24574
|
+
}
|
|
24560
24575
|
});
|
|
24576
|
+
const options = reactive({
|
|
24577
|
+
currency: "EUR",
|
|
24578
|
+
currencyDisplay: "hidden",
|
|
24579
|
+
precision: round2.value ? 0 : 2,
|
|
24580
|
+
hideGroupingSeparatorOnFocus: false,
|
|
24581
|
+
...unref(currencyInputOptions)
|
|
24582
|
+
});
|
|
24583
|
+
const { inputRef, formattedValue, setValue } = useCurrencyInput(options);
|
|
24584
|
+
if (unref(currency)) {
|
|
24585
|
+
watch(modelValue, (newValue) => {
|
|
24586
|
+
setValue(newValue);
|
|
24587
|
+
});
|
|
24588
|
+
}
|
|
24561
24589
|
const ruleForm = reactive({
|
|
24562
24590
|
[props.prop]: modelValue
|
|
24563
24591
|
});
|
|
24564
24592
|
const validateInp = (prop, isValid2, message2) => {
|
|
24593
|
+
console.log(prop, isValid2, message2, "prop, isValid, message");
|
|
24565
24594
|
emit2("validate", prop, isValid2, message2);
|
|
24566
24595
|
};
|
|
24567
24596
|
watch(modelValue, (newValue) => {
|
|
@@ -24576,6 +24605,13 @@ const _sfc_main$x = {
|
|
|
24576
24605
|
const label = document.getElementById(`${id}`);
|
|
24577
24606
|
widthLabel.value = label.children[0].children[0].clientWidth;
|
|
24578
24607
|
}, 0);
|
|
24608
|
+
const throuInput = (event) => {
|
|
24609
|
+
const parent = event.target.parentElement.parentElement;
|
|
24610
|
+
let input2 = parent.querySelector(".el-input__inner");
|
|
24611
|
+
setTimeout(() => {
|
|
24612
|
+
input2.focus();
|
|
24613
|
+
});
|
|
24614
|
+
};
|
|
24579
24615
|
return (_ctx, _cache) => {
|
|
24580
24616
|
const _component_el_input = ElInput;
|
|
24581
24617
|
const _component_el_form_item = ElFormItem;
|
|
@@ -24620,7 +24656,8 @@ const _sfc_main$x = {
|
|
|
24620
24656
|
prop: __props.prop
|
|
24621
24657
|
}, {
|
|
24622
24658
|
default: withCtx(() => [
|
|
24623
|
-
|
|
24659
|
+
!unref(currency) ? (openBlock(), createBlock(_component_el_input, {
|
|
24660
|
+
key: 0,
|
|
24624
24661
|
class: normalizeClass({ padding: props.prefix }),
|
|
24625
24662
|
formatter: (value) => __props.formater(value),
|
|
24626
24663
|
parser: (value) => __props.parcer(value),
|
|
@@ -24634,7 +24671,31 @@ const _sfc_main$x = {
|
|
|
24634
24671
|
resize: "none",
|
|
24635
24672
|
autosize: { minRows: 3, maxRows: 6 },
|
|
24636
24673
|
clearable: props.clearable && _ctx.area
|
|
24637
|
-
}, null, 8, ["class", "formatter", "parser", "minlength", "maxlength", "disabled", "placeholder", "modelValue", "type", "clearable"])
|
|
24674
|
+
}, null, 8, ["class", "formatter", "parser", "minlength", "maxlength", "disabled", "placeholder", "modelValue", "type", "clearable"])) : (openBlock(), createBlock(_component_el_input, mergeProps({
|
|
24675
|
+
key: 1,
|
|
24676
|
+
onClick: _cache[2] || (_cache[2] = ($event) => throuInput($event)),
|
|
24677
|
+
class: { padding: props.prefix },
|
|
24678
|
+
minlength: __props.minLength,
|
|
24679
|
+
maxlength: __props.maxLength,
|
|
24680
|
+
disabled: props.disabled,
|
|
24681
|
+
placeholder: props.placeholder,
|
|
24682
|
+
resize: "none"
|
|
24683
|
+
}, _ctx.$attrs, {
|
|
24684
|
+
ref_key: "inputRef",
|
|
24685
|
+
ref: inputRef,
|
|
24686
|
+
modelValue: unref(formattedValue),
|
|
24687
|
+
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => isRef(formattedValue) ? formattedValue.value = $event : null)
|
|
24688
|
+
}), createSlots({ _: 2 }, [
|
|
24689
|
+
unref(currency) ? {
|
|
24690
|
+
name: "append",
|
|
24691
|
+
fn: withCtx(() => [
|
|
24692
|
+
createElementVNode("span", {
|
|
24693
|
+
class: "pl-currency__rub-icon",
|
|
24694
|
+
onClick: _cache[1] || (_cache[1] = ($event) => throuInput($event))
|
|
24695
|
+
}, "\u20BD")
|
|
24696
|
+
])
|
|
24697
|
+
} : void 0
|
|
24698
|
+
]), 1040, ["class", "minlength", "maxlength", "disabled", "placeholder", "modelValue"]))
|
|
24638
24699
|
]),
|
|
24639
24700
|
_: 1
|
|
24640
24701
|
}, 8, ["class", "label", "prop"])
|
|
@@ -39820,7 +39881,6 @@ const _sfc_main$m = {
|
|
|
39820
39881
|
default: "name"
|
|
39821
39882
|
},
|
|
39822
39883
|
selectedItem: {
|
|
39823
|
-
type: String,
|
|
39824
39884
|
default: ""
|
|
39825
39885
|
},
|
|
39826
39886
|
isError: {
|
|
@@ -40802,6 +40862,10 @@ const _sfc_main$c = {
|
|
|
40802
40862
|
modelValue: {
|
|
40803
40863
|
type: String,
|
|
40804
40864
|
required: true
|
|
40865
|
+
},
|
|
40866
|
+
placeholder: {
|
|
40867
|
+
type: String,
|
|
40868
|
+
default: "\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u0430\u0442\u0443"
|
|
40805
40869
|
}
|
|
40806
40870
|
},
|
|
40807
40871
|
emits: ["update:modelValue"],
|
|
@@ -40881,7 +40945,7 @@ const _sfc_main$c = {
|
|
|
40881
40945
|
class: "date-picker-plus__wrapper",
|
|
40882
40946
|
onClick: toggleDatePicker
|
|
40883
40947
|
}),
|
|
40884
|
-
__props.modelValue ? (openBlock(), createElementBlock("span", _hoisted_2$b, toDisplayString(displayDate(__props.modelValue)), 1)) : (openBlock(), createElementBlock("span", _hoisted_3$a,
|
|
40948
|
+
__props.modelValue ? (openBlock(), createElementBlock("span", _hoisted_2$b, toDisplayString(displayDate(__props.modelValue)), 1)) : (openBlock(), createElementBlock("span", _hoisted_3$a, toDisplayString(__props.placeholder), 1)),
|
|
40885
40949
|
_hoisted_4$7,
|
|
40886
40950
|
isOpen.value ? (openBlock(), createElementBlock("div", {
|
|
40887
40951
|
key: 2,
|
|
@@ -40920,6 +40984,42 @@ const _sfc_main$c = {
|
|
|
40920
40984
|
};
|
|
40921
40985
|
}
|
|
40922
40986
|
};
|
|
40987
|
+
const placeholders = {
|
|
40988
|
+
name: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
|
|
40989
|
+
nationality: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0433\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E",
|
|
40990
|
+
job: "\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
|
|
40991
|
+
dates: {
|
|
40992
|
+
ogrn: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u0430\u0442\u0443",
|
|
40993
|
+
passport: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u0430\u0442\u0443 \u0432\u044B\u0434\u0430\u0447\u0438",
|
|
40994
|
+
birth: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u0430\u0442\u0443 \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F"
|
|
40995
|
+
},
|
|
40996
|
+
passport: {
|
|
40997
|
+
number: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0435\u0440\u0438\u044E \u0438 \u043D\u043E\u043C\u0435\u0440",
|
|
40998
|
+
code: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u043E\u0434",
|
|
40999
|
+
organ: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442"
|
|
41000
|
+
},
|
|
41001
|
+
birthPlace: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u043C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
|
|
41002
|
+
address: {
|
|
41003
|
+
registration: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0430\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438",
|
|
41004
|
+
actual: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0444\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441",
|
|
41005
|
+
actualEnter: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0444\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441",
|
|
41006
|
+
legal: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u044E\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441",
|
|
41007
|
+
legalEnter: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u044E\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
|
|
41008
|
+
},
|
|
41009
|
+
share: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u043E\u043B\u044E",
|
|
41010
|
+
companyName: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043F\u043E\u043B\u043D\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
|
|
41011
|
+
companyNameMiddle: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
|
|
41012
|
+
companyNameShort: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0440\u0430\u0442\u043A\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
|
|
41013
|
+
inn: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0418\u041D\u041D",
|
|
41014
|
+
ogrn: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u041E\u0413\u0420\u041D",
|
|
41015
|
+
director: {
|
|
41016
|
+
name: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0424\u0418\u041E \u0440\u0443\u043A\u043E\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044F",
|
|
41017
|
+
job: "\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
|
|
41018
|
+
job2: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C \u0440\u0443\u043A\u043E\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044F"
|
|
41019
|
+
},
|
|
41020
|
+
proxyNumber: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043D\u043E\u043C\u0435\u0440 \u0434\u043E\u0432\u0435\u0440\u0435\u043D\u043D\u043E\u0441\u0442\u0438",
|
|
41021
|
+
document: "\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442"
|
|
41022
|
+
};
|
|
40923
41023
|
var plFormGeneral_vue_vue_type_style_index_0_lang = "";
|
|
40924
41024
|
const _hoisted_1$b = {
|
|
40925
41025
|
id: "container-general",
|
|
@@ -40955,24 +41055,25 @@ const _sfc_main$b = {
|
|
|
40955
41055
|
modelValue: unref(formClient).fullName,
|
|
40956
41056
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => unref(formClient).fullName = $event),
|
|
40957
41057
|
area: true,
|
|
40958
|
-
placeholder:
|
|
41058
|
+
placeholder: unref(placeholders).companyName,
|
|
40959
41059
|
label: "\u041F\u043E\u043B\u043D\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438"
|
|
40960
|
-
}, null, 8, ["modelValue"]),
|
|
41060
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
40961
41061
|
createVNode(_sfc_main$f, {
|
|
40962
41062
|
class: "mt-32",
|
|
40963
41063
|
modelValue: unref(formClient).name,
|
|
40964
41064
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => unref(formClient).name = $event),
|
|
40965
41065
|
label: "\u041A\u0440\u0430\u0442\u043A\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
|
|
40966
|
-
placeholder:
|
|
40967
|
-
}, null, 8, ["modelValue"]),
|
|
41066
|
+
placeholder: unref(placeholders).companyNameShort
|
|
41067
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
40968
41068
|
createVNode(_sfc_main$g, { class: "mt-32" }),
|
|
40969
41069
|
createElementVNode("div", _hoisted_3$9, [
|
|
40970
41070
|
createVNode(_component_el_form_item, { label: "\u0414\u0430\u0442\u0430 \u043F\u0440\u0438\u0441\u0432\u043E\u0435\u043D\u0438\u044F \u041E\u0413\u0420\u041D" }, {
|
|
40971
41071
|
default: withCtx(() => [
|
|
40972
41072
|
createVNode(_sfc_main$c, {
|
|
40973
41073
|
modelValue: unref(formClient).ogrnDate,
|
|
40974
|
-
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => unref(formClient).ogrnDate = $event)
|
|
40975
|
-
|
|
41074
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => unref(formClient).ogrnDate = $event),
|
|
41075
|
+
placeholder: unref(placeholders).dates.ogrn
|
|
41076
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
40976
41077
|
]),
|
|
40977
41078
|
_: 1
|
|
40978
41079
|
}),
|
|
@@ -40981,32 +41082,34 @@ const _sfc_main$b = {
|
|
|
40981
41082
|
disabled: true,
|
|
40982
41083
|
modelValue: unref(formClient).inn,
|
|
40983
41084
|
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => unref(formClient).inn = $event),
|
|
40984
|
-
label: "\u0418\u041D\u041D"
|
|
40985
|
-
|
|
41085
|
+
label: "\u0418\u041D\u041D",
|
|
41086
|
+
placeholder: unref(placeholders).inn
|
|
41087
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
40986
41088
|
]),
|
|
40987
41089
|
createVNode(_sfc_main$f, {
|
|
40988
41090
|
class: "width-260",
|
|
40989
41091
|
disabled: true,
|
|
40990
41092
|
modelValue: unref(formClient).ogrn,
|
|
40991
41093
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => unref(formClient).ogrn = $event),
|
|
40992
|
-
label: "\u041E\u0413\u0420\u041D"
|
|
40993
|
-
|
|
41094
|
+
label: "\u041E\u0413\u0420\u041D",
|
|
41095
|
+
placeholder: unref(placeholders).ogrn
|
|
41096
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
40994
41097
|
createVNode(_sfc_main$f, {
|
|
40995
41098
|
class: "mt-32",
|
|
40996
41099
|
modelValue: unref(formClient).LAddress,
|
|
40997
41100
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => unref(formClient).LAddress = $event),
|
|
40998
41101
|
area: true,
|
|
40999
|
-
placeholder:
|
|
41102
|
+
placeholder: unref(placeholders).address.legalEnter,
|
|
41000
41103
|
label: "\u042E\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
|
|
41001
|
-
}, null, 8, ["modelValue"]),
|
|
41104
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41002
41105
|
withDirectives(createVNode(_sfc_main$f, {
|
|
41003
41106
|
class: "mt-32",
|
|
41004
41107
|
modelValue: unref(formClient).FAddress,
|
|
41005
41108
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => unref(formClient).FAddress = $event),
|
|
41006
41109
|
area: true,
|
|
41007
|
-
placeholder:
|
|
41110
|
+
placeholder: unref(placeholders).address.actualEnter,
|
|
41008
41111
|
label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
|
|
41009
|
-
}, null, 8, ["modelValue"]), [
|
|
41112
|
+
}, null, 8, ["modelValue", "placeholder"]), [
|
|
41010
41113
|
[vShow, !unref(formClient).isMatches]
|
|
41011
41114
|
]),
|
|
41012
41115
|
createVNode(_sfc_main$e, {
|
|
@@ -41026,7 +41129,7 @@ var tabs = "";
|
|
|
41026
41129
|
var tabPane = "";
|
|
41027
41130
|
var _imports_3 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNi4zNDgzIDYuMzQwNTJDNi42NDExOSA2LjA0NzYzIDcuMTE2MDYgNi4wNDc2MyA3LjQwODk2IDYuMzQwNTJMMTIuMDA1MSAxMC45MzY3TDE2LjU5NTggNi4zNDYwNEMxNi44ODg3IDYuMDUzMTUgMTcuMzYzNiA2LjA1MzE1IDE3LjY1NjUgNi4zNDYwNUMxNy45NDk0IDYuNjM4OTQgMTcuOTQ5NCA3LjExMzgyIDE3LjY1NjUgNy40MDY3MUwxMy4wNjU4IDExLjk5NzNMMTcuNjU2NSAxNi41ODhDMTcuOTQ5NCAxNi44ODA5IDE3Ljk0OTQgMTcuMzU1OCAxNy42NTY1IDE3LjY0ODdDMTcuMzYzNiAxNy45NDE2IDE2Ljg4ODcgMTcuOTQxNiAxNi41OTU4IDE3LjY0ODdMMTIuMDA1MSAxMy4wNThMNy40MDMzNyAxNy42NTk3QzcuMTEwNDggMTcuOTUyNiA2LjYzNTYxIDE3Ljk1MjYgNi4zNDI3MSAxNy42NTk3QzYuMDQ5ODIgMTcuMzY2OCA2LjA0OTgyIDE2Ljg5MTkgNi4zNDI3MiAxNi41OTlMMTAuOTQ0NSAxMS45OTczTDYuMzQ4MjkgNy40MDExOEM2LjA1NTQgNy4xMDgyOSA2LjA1NTQgNi42MzM0MSA2LjM0ODMgNi4zNDA1MloiIGZpbGw9IiM2Rjc2N0UiLz4NCjwvc3ZnPg0K";
|
|
41028
41131
|
var plPopupForm_vue_vue_type_style_index_0_lang = "";
|
|
41029
|
-
const _hoisted_1$a = { class: "container popup-content" };
|
|
41132
|
+
const _hoisted_1$a = { class: "container popup-content popup__title-container" };
|
|
41030
41133
|
const _hoisted_2$9 = { class: "d-flex align-items-center justify-content-between" };
|
|
41031
41134
|
const _hoisted_3$8 = { class: "popup-title" };
|
|
41032
41135
|
const _hoisted_4$6 = /* @__PURE__ */ createElementVNode("img", { src: _imports_3 }, null, -1);
|
|
@@ -41184,16 +41287,16 @@ const _hoisted_12$2 = { class: "itemPhysical__decorText" };
|
|
|
41184
41287
|
const _hoisted_13$2 = { class: "pl-list__percent" };
|
|
41185
41288
|
const _hoisted_14$2 = {
|
|
41186
41289
|
key: 0,
|
|
41187
|
-
class: "itemPhysical__center d-flex flex-column"
|
|
41290
|
+
class: "itemPhysical__center d-flex flex-column",
|
|
41291
|
+
style: { "margin-right": "auto" }
|
|
41188
41292
|
};
|
|
41189
41293
|
const _hoisted_15$1 = { class: "itemPhysical__percent" };
|
|
41190
41294
|
const _hoisted_16$1 = /* @__PURE__ */ createElementVNode("span", { class: "itemPhysical__decorText" }, "\u0434\u043E\u043B\u044F", -1);
|
|
41191
|
-
const _hoisted_17$1 = {
|
|
41192
|
-
|
|
41193
|
-
key: 0,
|
|
41295
|
+
const _hoisted_17$1 = {
|
|
41296
|
+
key: 1,
|
|
41194
41297
|
class: "main-contact"
|
|
41195
41298
|
};
|
|
41196
|
-
const
|
|
41299
|
+
const _hoisted_18$1 = /* @__PURE__ */ createElementVNode("div", { class: "d-flex gap-16" }, [
|
|
41197
41300
|
/* @__PURE__ */ createElementVNode("img", {
|
|
41198
41301
|
src: _imports_1$1,
|
|
41199
41302
|
alt: "edit"
|
|
@@ -41203,15 +41306,15 @@ const _hoisted_19$1 = /* @__PURE__ */ createElementVNode("div", { class: "d-flex
|
|
|
41203
41306
|
alt: "delete"
|
|
41204
41307
|
})
|
|
41205
41308
|
], -1);
|
|
41206
|
-
const
|
|
41309
|
+
const _hoisted_19$1 = {
|
|
41207
41310
|
key: 0,
|
|
41208
41311
|
class: "pl-list__line"
|
|
41209
41312
|
};
|
|
41210
|
-
const
|
|
41211
|
-
const
|
|
41212
|
-
const
|
|
41213
|
-
const
|
|
41214
|
-
const
|
|
41313
|
+
const _hoisted_20$1 = { class: "d-flex align-items-center justify-content-between" };
|
|
41314
|
+
const _hoisted_21$1 = { class: "itemPhysical__left d-flex flex-column" };
|
|
41315
|
+
const _hoisted_22$1 = { class: "default-text topText" };
|
|
41316
|
+
const _hoisted_23$1 = { class: "itemPhysical__decorText" };
|
|
41317
|
+
const _hoisted_24$1 = /* @__PURE__ */ createElementVNode("div", { class: "d-flex gap-3" }, [
|
|
41215
41318
|
/* @__PURE__ */ createElementVNode("img", {
|
|
41216
41319
|
src: _imports_1$1,
|
|
41217
41320
|
alt: "edit"
|
|
@@ -41221,7 +41324,7 @@ const _hoisted_25$1 = /* @__PURE__ */ createElementVNode("div", { class: "d-flex
|
|
|
41221
41324
|
alt: "delete"
|
|
41222
41325
|
})
|
|
41223
41326
|
], -1);
|
|
41224
|
-
const
|
|
41327
|
+
const _hoisted_25$1 = {
|
|
41225
41328
|
key: 0,
|
|
41226
41329
|
class: "pl-list__line"
|
|
41227
41330
|
};
|
|
@@ -41309,27 +41412,25 @@ const _sfc_main$9 = {
|
|
|
41309
41412
|
createElementVNode("span", _hoisted_15$1, toDisplayString(item.percent) + "%", 1),
|
|
41310
41413
|
_hoisted_16$1
|
|
41311
41414
|
])) : createCommentVNode("", true),
|
|
41312
|
-
__props.isMain ? (openBlock(), createElementBlock("div", _hoisted_17$1,
|
|
41313
|
-
|
|
41314
|
-
])) : createCommentVNode("", true),
|
|
41315
|
-
_hoisted_19$1
|
|
41415
|
+
__props.isMain && item.isMain ? (openBlock(), createElementBlock("div", _hoisted_17$1, "\u041E\u0441\u043D\u043E\u0432\u043D\u043E\u0439")) : createCommentVNode("", true),
|
|
41416
|
+
_hoisted_18$1
|
|
41316
41417
|
])
|
|
41317
41418
|
]),
|
|
41318
|
-
index !== __props.items.length - 1 ? (openBlock(), createElementBlock("div",
|
|
41419
|
+
index !== __props.items.length - 1 ? (openBlock(), createElementBlock("div", _hoisted_19$1)) : createCommentVNode("", true)
|
|
41319
41420
|
]);
|
|
41320
41421
|
}), 128)) : (openBlock(true), createElementBlock(Fragment, { key: 1 }, renderList(__props.items, (item, index) => {
|
|
41321
41422
|
return openBlock(), createElementBlock("div", {
|
|
41322
41423
|
key: item.id,
|
|
41323
41424
|
class: "itemPhysical pl-list__item-container"
|
|
41324
41425
|
}, [
|
|
41325
|
-
createElementVNode("div",
|
|
41326
|
-
createElementVNode("div",
|
|
41327
|
-
createElementVNode("span",
|
|
41328
|
-
createElementVNode("span",
|
|
41426
|
+
createElementVNode("div", _hoisted_20$1, [
|
|
41427
|
+
createElementVNode("div", _hoisted_21$1, [
|
|
41428
|
+
createElementVNode("span", _hoisted_22$1, toDisplayString(item.name), 1),
|
|
41429
|
+
createElementVNode("span", _hoisted_23$1, toDisplayString(item.status), 1)
|
|
41329
41430
|
]),
|
|
41330
|
-
|
|
41431
|
+
_hoisted_24$1
|
|
41331
41432
|
]),
|
|
41332
|
-
index !== __props.items.length - 1 ? (openBlock(), createElementBlock("div",
|
|
41433
|
+
index !== __props.items.length - 1 ? (openBlock(), createElementBlock("div", _hoisted_25$1)) : createCommentVNode("", true)
|
|
41333
41434
|
]);
|
|
41334
41435
|
}), 128))
|
|
41335
41436
|
], 512), [
|
|
@@ -41447,48 +41548,54 @@ const _sfc_main$8 = {
|
|
|
41447
41548
|
modelValue: unref(formClient).newRepresentative.fullName,
|
|
41448
41549
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => unref(formClient).newRepresentative.fullName = $event),
|
|
41449
41550
|
label: "\u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
|
|
41450
|
-
placeholder:
|
|
41451
|
-
}, null, 8, ["modelValue"]),
|
|
41551
|
+
placeholder: unref(placeholders).name
|
|
41552
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41452
41553
|
createVNode(_sfc_main$f, {
|
|
41453
41554
|
class: "mt-32",
|
|
41454
41555
|
modelValue: unref(formClient).newRepresentative.nationality,
|
|
41455
41556
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => unref(formClient).newRepresentative.nationality = $event),
|
|
41456
|
-
label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E"
|
|
41457
|
-
|
|
41557
|
+
label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E",
|
|
41558
|
+
placeholder: unref(placeholders).nationality
|
|
41559
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41458
41560
|
createVNode(_sfc_main$g, {
|
|
41459
41561
|
class: "w-100 mt-32",
|
|
41460
41562
|
label: "\u0414\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
|
|
41461
41563
|
modelValue: unref(formClient).newRepresentative.position,
|
|
41462
|
-
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => unref(formClient).newRepresentative.position = $event)
|
|
41463
|
-
|
|
41564
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => unref(formClient).newRepresentative.position = $event),
|
|
41565
|
+
placeholder: unref(placeholders).job
|
|
41566
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41464
41567
|
createElementVNode("div", _hoisted_2$7, [
|
|
41465
41568
|
createVNode(_sfc_main$f, {
|
|
41466
41569
|
class: "width-260",
|
|
41467
41570
|
modelValue: unref(formClient).newRepresentative.ser,
|
|
41468
41571
|
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => unref(formClient).newRepresentative.ser = $event),
|
|
41469
|
-
label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
|
|
41470
|
-
|
|
41572
|
+
label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430",
|
|
41573
|
+
placeholder: unref(placeholders).passport.number
|
|
41574
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41471
41575
|
createVNode(_sfc_main$f, {
|
|
41472
41576
|
class: "width-260",
|
|
41473
41577
|
modelValue: unref(formClient).newRepresentative.numb,
|
|
41474
41578
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => unref(formClient).newRepresentative.numb = $event),
|
|
41475
|
-
label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F"
|
|
41476
|
-
|
|
41579
|
+
label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F",
|
|
41580
|
+
placeholder: unref(placeholders).passport.code
|
|
41581
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41477
41582
|
]),
|
|
41478
41583
|
createVNode(_sfc_main$f, {
|
|
41479
41584
|
class: "mt-32",
|
|
41480
41585
|
area: true,
|
|
41481
41586
|
label: "\u0421\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442",
|
|
41482
41587
|
modelValue: unref(formClient).newRepresentative.organ,
|
|
41483
|
-
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => unref(formClient).newRepresentative.organ = $event)
|
|
41484
|
-
|
|
41588
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => unref(formClient).newRepresentative.organ = $event),
|
|
41589
|
+
placeholder: unref(placeholders).passport.organ
|
|
41590
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41485
41591
|
createElementVNode("div", _hoisted_3$6, [
|
|
41486
41592
|
createVNode(_component_el_form_item, { label: "\u0414\u0430\u0442\u0430 \u0432\u044B\u0434\u0430\u0447\u0438 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430" }, {
|
|
41487
41593
|
default: withCtx(() => [
|
|
41488
41594
|
createVNode(_sfc_main$c, {
|
|
41489
41595
|
modelValue: dates.passport,
|
|
41490
|
-
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => dates.passport = $event)
|
|
41491
|
-
|
|
41596
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => dates.passport = $event),
|
|
41597
|
+
placeholder: unref(placeholders).dates.passport
|
|
41598
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41492
41599
|
]),
|
|
41493
41600
|
_: 1
|
|
41494
41601
|
}),
|
|
@@ -41496,8 +41603,9 @@ const _sfc_main$8 = {
|
|
|
41496
41603
|
default: withCtx(() => [
|
|
41497
41604
|
createVNode(_sfc_main$c, {
|
|
41498
41605
|
modelValue: dates.birthday,
|
|
41499
|
-
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => dates.birthday = $event)
|
|
41500
|
-
|
|
41606
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => dates.birthday = $event),
|
|
41607
|
+
placeholder: unref(placeholders).dates.birth
|
|
41608
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41501
41609
|
]),
|
|
41502
41610
|
_: 1
|
|
41503
41611
|
})
|
|
@@ -41507,24 +41615,25 @@ const _sfc_main$8 = {
|
|
|
41507
41615
|
area: true,
|
|
41508
41616
|
label: "\u041C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
|
|
41509
41617
|
modelValue: unref(formClient).newRepresentative.organ,
|
|
41510
|
-
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => unref(formClient).newRepresentative.organ = $event)
|
|
41511
|
-
|
|
41618
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => unref(formClient).newRepresentative.organ = $event),
|
|
41619
|
+
placeholder: unref(placeholders).birthPlace
|
|
41620
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41512
41621
|
createVNode(_sfc_main$f, {
|
|
41513
41622
|
class: "mt-32",
|
|
41514
41623
|
modelValue: unref(formClient).newRepresentative.LAddress,
|
|
41515
41624
|
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => unref(formClient).newRepresentative.LAddress = $event),
|
|
41516
41625
|
area: true,
|
|
41517
|
-
placeholder:
|
|
41626
|
+
placeholder: unref(placeholders).address.registration,
|
|
41518
41627
|
label: "\u0410\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438"
|
|
41519
|
-
}, null, 8, ["modelValue"]),
|
|
41628
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41520
41629
|
withDirectives(createVNode(_sfc_main$f, {
|
|
41521
41630
|
class: "mt-32",
|
|
41522
41631
|
modelValue: unref(formClient).newRepresentative.LAddress,
|
|
41523
41632
|
"onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => unref(formClient).newRepresentative.LAddress = $event),
|
|
41524
41633
|
area: true,
|
|
41525
|
-
placeholder:
|
|
41634
|
+
placeholder: unref(placeholders).address.actual,
|
|
41526
41635
|
label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
|
|
41527
|
-
}, null, 8, ["modelValue"]), [
|
|
41636
|
+
}, null, 8, ["modelValue", "placeholder"]), [
|
|
41528
41637
|
[vShow, !unref(formClient).newRepresentative.isMatches]
|
|
41529
41638
|
]),
|
|
41530
41639
|
createVNode(_sfc_main$e, {
|
|
@@ -41539,13 +41648,14 @@ const _sfc_main$8 = {
|
|
|
41539
41648
|
modelValue: unref(formClient).newRepresentative.isFounder,
|
|
41540
41649
|
"onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => unref(formClient).newRepresentative.isFounder = $event)
|
|
41541
41650
|
}, null, 8, ["modelValue"]),
|
|
41542
|
-
|
|
41651
|
+
unref(formClient).newRepresentative.isFounder ? (openBlock(), createBlock(_sfc_main$f, {
|
|
41652
|
+
key: 0,
|
|
41543
41653
|
class: "width-260 mt-32",
|
|
41544
41654
|
modelValue: unref(formClient).newRepresentative.part,
|
|
41545
41655
|
"onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => unref(formClient).newRepresentative.part = $event),
|
|
41546
41656
|
label: "\u0414\u043E\u043B\u044F \u0432 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
|
|
41547
|
-
placeholder:
|
|
41548
|
-
}, null, 8, ["modelValue"])
|
|
41657
|
+
placeholder: unref(placeholders).share
|
|
41658
|
+
}, null, 8, ["modelValue", "placeholder"])) : createCommentVNode("", true)
|
|
41549
41659
|
]),
|
|
41550
41660
|
_: 1
|
|
41551
41661
|
}, 8, ["model"])
|
|
@@ -41562,79 +41672,88 @@ const _sfc_main$8 = {
|
|
|
41562
41672
|
area: true,
|
|
41563
41673
|
label: "\u041F\u043E\u043B\u043D\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
|
|
41564
41674
|
modelValue: unref(formClient).newRepresentative.companyFullName,
|
|
41565
|
-
"onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => unref(formClient).newRepresentative.companyFullName = $event)
|
|
41566
|
-
|
|
41675
|
+
"onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => unref(formClient).newRepresentative.companyFullName = $event),
|
|
41676
|
+
placeholder: unref(placeholders).companyName
|
|
41677
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41567
41678
|
createElementVNode("div", _hoisted_4$4, [
|
|
41568
41679
|
createVNode(_sfc_main$f, {
|
|
41569
41680
|
class: "width-260",
|
|
41570
41681
|
modelValue: unref(formClient).newRepresentative.INN,
|
|
41571
41682
|
"onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => unref(formClient).newRepresentative.INN = $event),
|
|
41572
41683
|
disabled: true,
|
|
41573
|
-
label: "\u0418\u041D\u041D"
|
|
41574
|
-
|
|
41684
|
+
label: "\u0418\u041D\u041D",
|
|
41685
|
+
placeholder: unref(placeholders).inn
|
|
41686
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41575
41687
|
createVNode(_sfc_main$f, {
|
|
41576
41688
|
class: "width-260",
|
|
41577
41689
|
modelValue: unref(formClient).newRepresentative.OGRN,
|
|
41578
41690
|
"onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => unref(formClient).newRepresentative.OGRN = $event),
|
|
41579
41691
|
disabled: true,
|
|
41580
|
-
label: "\u041E\u0413\u0420\u041D"
|
|
41581
|
-
|
|
41692
|
+
label: "\u041E\u0413\u0420\u041D",
|
|
41693
|
+
placeholder: unref(placeholders).ogrn
|
|
41694
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41582
41695
|
]),
|
|
41583
41696
|
createVNode(_sfc_main$f, {
|
|
41584
41697
|
class: "mt-32",
|
|
41585
41698
|
area: true,
|
|
41586
41699
|
label: "\u042E\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441",
|
|
41587
41700
|
modelValue: unref(formClient).newRepresentative.organ,
|
|
41588
|
-
"onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => unref(formClient).newRepresentative.organ = $event)
|
|
41589
|
-
|
|
41701
|
+
"onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => unref(formClient).newRepresentative.organ = $event),
|
|
41702
|
+
placeholder: unref(placeholders).address.legal
|
|
41703
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41590
41704
|
createVNode(_sfc_main$f, {
|
|
41591
41705
|
class: "mt-32",
|
|
41592
41706
|
modelValue: unref(formClient).newRepresentative.fullName,
|
|
41593
41707
|
"onUpdate:modelValue": _cache[18] || (_cache[18] = ($event) => unref(formClient).newRepresentative.fullName = $event),
|
|
41594
41708
|
label: "\u0424\u0418\u041E \u0420\u0443\u043A\u043E\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044F",
|
|
41595
|
-
placeholder:
|
|
41596
|
-
}, null, 8, ["modelValue"]),
|
|
41709
|
+
placeholder: unref(placeholders).director.name
|
|
41710
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41597
41711
|
createVNode(_sfc_main$g, {
|
|
41598
41712
|
class: "w-100 mt-32",
|
|
41599
|
-
placeholder:
|
|
41713
|
+
placeholder: unref(placeholders).director.job,
|
|
41600
41714
|
label: "\u0414\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
|
|
41601
41715
|
modelValue: unref(formClient).newRepresentative.position,
|
|
41602
41716
|
"onUpdate:modelValue": _cache[19] || (_cache[19] = ($event) => unref(formClient).newRepresentative.position = $event)
|
|
41603
|
-
}, null, 8, ["modelValue"]),
|
|
41717
|
+
}, null, 8, ["placeholder", "modelValue"]),
|
|
41604
41718
|
createVNode(_sfc_main$f, {
|
|
41605
41719
|
class: "mt-32",
|
|
41606
41720
|
modelValue: unref(formClient).newRepresentative.nationality,
|
|
41607
41721
|
"onUpdate:modelValue": _cache[20] || (_cache[20] = ($event) => unref(formClient).newRepresentative.nationality = $event),
|
|
41608
|
-
label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E"
|
|
41609
|
-
|
|
41722
|
+
label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E",
|
|
41723
|
+
placeholder: unref(placeholders).nationality
|
|
41724
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41610
41725
|
createElementVNode("div", _hoisted_5$3, [
|
|
41611
41726
|
createVNode(_sfc_main$f, {
|
|
41612
41727
|
class: "width-260",
|
|
41613
41728
|
modelValue: unref(formClient).newRepresentative.ser,
|
|
41614
41729
|
"onUpdate:modelValue": _cache[21] || (_cache[21] = ($event) => unref(formClient).newRepresentative.ser = $event),
|
|
41615
|
-
label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
|
|
41616
|
-
|
|
41730
|
+
label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430",
|
|
41731
|
+
placeholder: unref(placeholders).passport.number
|
|
41732
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41617
41733
|
createVNode(_sfc_main$f, {
|
|
41618
41734
|
class: "width-260",
|
|
41619
41735
|
modelValue: unref(formClient).newRepresentative.numb,
|
|
41620
41736
|
"onUpdate:modelValue": _cache[22] || (_cache[22] = ($event) => unref(formClient).newRepresentative.numb = $event),
|
|
41621
|
-
label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F"
|
|
41622
|
-
|
|
41737
|
+
label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F",
|
|
41738
|
+
placeholder: unref(placeholders).passport.code
|
|
41739
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41623
41740
|
]),
|
|
41624
41741
|
createVNode(_sfc_main$f, {
|
|
41625
41742
|
class: "mt-32",
|
|
41626
41743
|
area: true,
|
|
41627
41744
|
label: "\u0421\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442",
|
|
41628
41745
|
modelValue: unref(formClient).newRepresentative.organ,
|
|
41629
|
-
"onUpdate:modelValue": _cache[23] || (_cache[23] = ($event) => unref(formClient).newRepresentative.organ = $event)
|
|
41630
|
-
|
|
41746
|
+
"onUpdate:modelValue": _cache[23] || (_cache[23] = ($event) => unref(formClient).newRepresentative.organ = $event),
|
|
41747
|
+
placeholder: unref(placeholders).passport.organ
|
|
41748
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41631
41749
|
createElementVNode("div", _hoisted_6$2, [
|
|
41632
41750
|
createVNode(_component_el_form_item, { label: "\u0414\u0430\u0442\u0430 \u0432\u044B\u0434\u0430\u0447\u0438 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430" }, {
|
|
41633
41751
|
default: withCtx(() => [
|
|
41634
41752
|
createVNode(_sfc_main$c, {
|
|
41635
41753
|
modelValue: dates.passport,
|
|
41636
|
-
"onUpdate:modelValue": _cache[24] || (_cache[24] = ($event) => dates.passport = $event)
|
|
41637
|
-
|
|
41754
|
+
"onUpdate:modelValue": _cache[24] || (_cache[24] = ($event) => dates.passport = $event),
|
|
41755
|
+
placeholder: unref(placeholders).dates.passport
|
|
41756
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41638
41757
|
]),
|
|
41639
41758
|
_: 1
|
|
41640
41759
|
}),
|
|
@@ -41642,8 +41761,9 @@ const _sfc_main$8 = {
|
|
|
41642
41761
|
default: withCtx(() => [
|
|
41643
41762
|
createVNode(_sfc_main$c, {
|
|
41644
41763
|
modelValue: dates.birthday,
|
|
41645
|
-
"onUpdate:modelValue": _cache[25] || (_cache[25] = ($event) => dates.birthday = $event)
|
|
41646
|
-
|
|
41764
|
+
"onUpdate:modelValue": _cache[25] || (_cache[25] = ($event) => dates.birthday = $event),
|
|
41765
|
+
placeholder: unref(placeholders).dates.birth
|
|
41766
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41647
41767
|
]),
|
|
41648
41768
|
_: 1
|
|
41649
41769
|
})
|
|
@@ -41653,24 +41773,25 @@ const _sfc_main$8 = {
|
|
|
41653
41773
|
area: true,
|
|
41654
41774
|
label: "\u041C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
|
|
41655
41775
|
modelValue: unref(formClient).newRepresentative.organ,
|
|
41656
|
-
"onUpdate:modelValue": _cache[26] || (_cache[26] = ($event) => unref(formClient).newRepresentative.organ = $event)
|
|
41657
|
-
|
|
41776
|
+
"onUpdate:modelValue": _cache[26] || (_cache[26] = ($event) => unref(formClient).newRepresentative.organ = $event),
|
|
41777
|
+
placeholder: unref(placeholders).birthPlace
|
|
41778
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41658
41779
|
createVNode(_sfc_main$f, {
|
|
41659
41780
|
class: "mt-32",
|
|
41660
41781
|
modelValue: unref(formClient).newRepresentative.LAddress,
|
|
41661
41782
|
"onUpdate:modelValue": _cache[27] || (_cache[27] = ($event) => unref(formClient).newRepresentative.LAddress = $event),
|
|
41662
41783
|
area: true,
|
|
41663
|
-
placeholder:
|
|
41784
|
+
placeholder: unref(placeholders).address.registration,
|
|
41664
41785
|
label: "\u0410\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438"
|
|
41665
|
-
}, null, 8, ["modelValue"]),
|
|
41786
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41666
41787
|
withDirectives(createVNode(_sfc_main$f, {
|
|
41667
41788
|
class: "mt-32",
|
|
41668
41789
|
modelValue: unref(formClient).newRepresentative.LAddress,
|
|
41669
41790
|
"onUpdate:modelValue": _cache[28] || (_cache[28] = ($event) => unref(formClient).newRepresentative.LAddress = $event),
|
|
41670
41791
|
area: true,
|
|
41671
|
-
placeholder:
|
|
41792
|
+
placeholder: unref(placeholders).address.actual,
|
|
41672
41793
|
label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
|
|
41673
|
-
}, null, 8, ["modelValue"]), [
|
|
41794
|
+
}, null, 8, ["modelValue", "placeholder"]), [
|
|
41674
41795
|
[vShow, !unref(formClient).newRepresentative.isMatches]
|
|
41675
41796
|
]),
|
|
41676
41797
|
createVNode(_sfc_main$e, {
|
|
@@ -41685,13 +41806,14 @@ const _sfc_main$8 = {
|
|
|
41685
41806
|
modelValue: unref(formClient).newRepresentative.isFounder,
|
|
41686
41807
|
"onUpdate:modelValue": _cache[30] || (_cache[30] = ($event) => unref(formClient).newRepresentative.isFounder = $event)
|
|
41687
41808
|
}, null, 8, ["modelValue"]),
|
|
41688
|
-
|
|
41809
|
+
unref(formClient).newRepresentative.isFounder ? (openBlock(), createBlock(_sfc_main$f, {
|
|
41810
|
+
key: 0,
|
|
41689
41811
|
class: "width-260 mt-32",
|
|
41690
41812
|
modelValue: unref(formClient).newRepresentative.part,
|
|
41691
41813
|
"onUpdate:modelValue": _cache[31] || (_cache[31] = ($event) => unref(formClient).newRepresentative.part = $event),
|
|
41692
41814
|
label: "\u0414\u043E\u043B\u044F \u0432 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
|
|
41693
|
-
placeholder:
|
|
41694
|
-
}, null, 8, ["modelValue"])
|
|
41815
|
+
placeholder: unref(placeholders).share
|
|
41816
|
+
}, null, 8, ["modelValue", "placeholder"])) : createCommentVNode("", true)
|
|
41695
41817
|
]),
|
|
41696
41818
|
_: 1
|
|
41697
41819
|
}, 8, ["model"])
|
|
@@ -41717,28 +41839,30 @@ const _sfc_main$8 = {
|
|
|
41717
41839
|
modelValue: unref(formClient).newFounder.fullName,
|
|
41718
41840
|
"onUpdate:modelValue": _cache[33] || (_cache[33] = ($event) => unref(formClient).newFounder.fullName = $event),
|
|
41719
41841
|
label: "\u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
|
|
41720
|
-
placeholder:
|
|
41721
|
-
}, null, 8, ["modelValue"]),
|
|
41842
|
+
placeholder: unref(placeholders).name
|
|
41843
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41722
41844
|
createElementVNode("div", _hoisted_7$2, [
|
|
41723
41845
|
createVNode(_sfc_main$f, {
|
|
41724
41846
|
class: "width-260",
|
|
41725
41847
|
modelValue: __props.percent,
|
|
41726
41848
|
"onUpdate:modelValue": _cache[34] || (_cache[34] = ($event) => isRef(percent) ? percent.value = $event : null),
|
|
41727
|
-
label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435"
|
|
41728
|
-
|
|
41849
|
+
label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435",
|
|
41850
|
+
placeholder: unref(placeholders).share
|
|
41851
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41729
41852
|
unref(isMore25) ? (openBlock(), createBlock(_sfc_main$f, {
|
|
41730
41853
|
key: 0,
|
|
41731
41854
|
class: "width-260",
|
|
41732
41855
|
modelValue: unref(formClient).newFounder.nationality,
|
|
41733
41856
|
"onUpdate:modelValue": _cache[35] || (_cache[35] = ($event) => unref(formClient).newFounder.nationality = $event),
|
|
41734
|
-
label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E"
|
|
41735
|
-
|
|
41857
|
+
label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E",
|
|
41858
|
+
placeholder: unref(placeholders).nationality
|
|
41859
|
+
}, null, 8, ["modelValue", "placeholder"])) : createCommentVNode("", true)
|
|
41736
41860
|
]),
|
|
41737
41861
|
createVNode(_sfc_main$e, {
|
|
41738
41862
|
class: "mt-32",
|
|
41739
41863
|
label: "\u042F\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u0431\u0435\u043D\u0435\u0444\u0438\u0446\u0438\u0430\u0440\u043E\u043C",
|
|
41740
|
-
modelValue: unref(formClient).newFounder.
|
|
41741
|
-
"onUpdate:modelValue": _cache[36] || (_cache[36] = ($event) => unref(formClient).newFounder.
|
|
41864
|
+
modelValue: unref(formClient).newFounder.isBeneficiary,
|
|
41865
|
+
"onUpdate:modelValue": _cache[36] || (_cache[36] = ($event) => unref(formClient).newFounder.isBeneficiary = $event)
|
|
41742
41866
|
}, null, 8, ["modelValue"]),
|
|
41743
41867
|
unref(isMore25) ? (openBlock(), createElementBlock("div", _hoisted_8$1, [
|
|
41744
41868
|
createVNode(_sfc_main$g, {
|
|
@@ -41752,29 +41876,33 @@ const _sfc_main$8 = {
|
|
|
41752
41876
|
class: "width-260",
|
|
41753
41877
|
modelValue: unref(formClient).newFounder.ser,
|
|
41754
41878
|
"onUpdate:modelValue": _cache[38] || (_cache[38] = ($event) => unref(formClient).newFounder.ser = $event),
|
|
41755
|
-
label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
|
|
41756
|
-
|
|
41879
|
+
label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430",
|
|
41880
|
+
placeholder: unref(placeholders).passport.number
|
|
41881
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41757
41882
|
createVNode(_sfc_main$f, {
|
|
41758
41883
|
class: "width-260",
|
|
41759
41884
|
modelValue: unref(formClient).newFounder.numb,
|
|
41760
41885
|
"onUpdate:modelValue": _cache[39] || (_cache[39] = ($event) => unref(formClient).newFounder.numb = $event),
|
|
41761
|
-
label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F"
|
|
41762
|
-
|
|
41886
|
+
label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F",
|
|
41887
|
+
placeholder: unref(placeholders).passport.code
|
|
41888
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41763
41889
|
]),
|
|
41764
41890
|
createVNode(_sfc_main$f, {
|
|
41765
41891
|
class: "mt-32",
|
|
41766
41892
|
area: true,
|
|
41767
41893
|
label: "\u0421\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442",
|
|
41768
41894
|
modelValue: unref(formClient).newFounder.organ,
|
|
41769
|
-
"onUpdate:modelValue": _cache[40] || (_cache[40] = ($event) => unref(formClient).newFounder.organ = $event)
|
|
41770
|
-
|
|
41895
|
+
"onUpdate:modelValue": _cache[40] || (_cache[40] = ($event) => unref(formClient).newFounder.organ = $event),
|
|
41896
|
+
placeholder: unref(placeholders).passport.organ
|
|
41897
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41771
41898
|
createElementVNode("div", _hoisted_10$1, [
|
|
41772
41899
|
createVNode(_component_el_form_item, { label: "\u0414\u0430\u0442\u0430 \u0432\u044B\u0434\u0430\u0447\u0438 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430" }, {
|
|
41773
41900
|
default: withCtx(() => [
|
|
41774
41901
|
createVNode(_sfc_main$c, {
|
|
41775
41902
|
modelValue: dates.passport,
|
|
41776
|
-
"onUpdate:modelValue": _cache[41] || (_cache[41] = ($event) => dates.passport = $event)
|
|
41777
|
-
|
|
41903
|
+
"onUpdate:modelValue": _cache[41] || (_cache[41] = ($event) => dates.passport = $event),
|
|
41904
|
+
placeholder: unref(placeholders).dates.passport
|
|
41905
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41778
41906
|
]),
|
|
41779
41907
|
_: 1
|
|
41780
41908
|
}),
|
|
@@ -41782,8 +41910,9 @@ const _sfc_main$8 = {
|
|
|
41782
41910
|
default: withCtx(() => [
|
|
41783
41911
|
createVNode(_sfc_main$c, {
|
|
41784
41912
|
modelValue: dates.birthday,
|
|
41785
|
-
"onUpdate:modelValue": _cache[42] || (_cache[42] = ($event) => dates.birthday = $event)
|
|
41786
|
-
|
|
41913
|
+
"onUpdate:modelValue": _cache[42] || (_cache[42] = ($event) => dates.birthday = $event),
|
|
41914
|
+
placeholder: unref(placeholders).dates.birth
|
|
41915
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41787
41916
|
]),
|
|
41788
41917
|
_: 1
|
|
41789
41918
|
})
|
|
@@ -41793,24 +41922,25 @@ const _sfc_main$8 = {
|
|
|
41793
41922
|
area: true,
|
|
41794
41923
|
label: "\u041C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
|
|
41795
41924
|
modelValue: unref(formClient).newFounder.organ,
|
|
41796
|
-
"onUpdate:modelValue": _cache[43] || (_cache[43] = ($event) => unref(formClient).newFounder.organ = $event)
|
|
41797
|
-
|
|
41925
|
+
"onUpdate:modelValue": _cache[43] || (_cache[43] = ($event) => unref(formClient).newFounder.organ = $event),
|
|
41926
|
+
placeholder: unref(placeholders).birthPlace
|
|
41927
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41798
41928
|
createVNode(_sfc_main$f, {
|
|
41799
41929
|
class: "mt-32",
|
|
41800
41930
|
modelValue: unref(formClient).newFounder.LAddress,
|
|
41801
41931
|
"onUpdate:modelValue": _cache[44] || (_cache[44] = ($event) => unref(formClient).newFounder.LAddress = $event),
|
|
41802
41932
|
area: true,
|
|
41803
|
-
placeholder:
|
|
41933
|
+
placeholder: unref(placeholders).address.registration,
|
|
41804
41934
|
label: "\u0410\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438"
|
|
41805
|
-
}, null, 8, ["modelValue"]),
|
|
41935
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41806
41936
|
withDirectives(createVNode(_sfc_main$f, {
|
|
41807
41937
|
class: "mt-32",
|
|
41808
41938
|
modelValue: unref(formClient).newFounder.LAddress,
|
|
41809
41939
|
"onUpdate:modelValue": _cache[45] || (_cache[45] = ($event) => unref(formClient).newFounder.LAddress = $event),
|
|
41810
41940
|
area: true,
|
|
41811
|
-
placeholder:
|
|
41941
|
+
placeholder: unref(placeholders).address.actual,
|
|
41812
41942
|
label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
|
|
41813
|
-
}, null, 8, ["modelValue"]), [
|
|
41943
|
+
}, null, 8, ["modelValue", "placeholder"]), [
|
|
41814
41944
|
[vShow, !unref(formClient).newFounder.isMatches]
|
|
41815
41945
|
]),
|
|
41816
41946
|
createVNode(_sfc_main$e, {
|
|
@@ -41833,47 +41963,50 @@ const _sfc_main$8 = {
|
|
|
41833
41963
|
}, {
|
|
41834
41964
|
default: withCtx(() => [
|
|
41835
41965
|
createVNode(_sfc_main$f, {
|
|
41836
|
-
modelValue: unref(formClient).newFounder.
|
|
41837
|
-
"onUpdate:modelValue": _cache[47] || (_cache[47] = ($event) => unref(formClient).newFounder.
|
|
41966
|
+
modelValue: unref(formClient).newFounder.companyName,
|
|
41967
|
+
"onUpdate:modelValue": _cache[47] || (_cache[47] = ($event) => unref(formClient).newFounder.companyName = $event),
|
|
41838
41968
|
label: "\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
|
|
41839
|
-
placeholder:
|
|
41840
|
-
}, null, 8, ["modelValue"]),
|
|
41969
|
+
placeholder: unref(placeholders).companyNameMiddle
|
|
41970
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41841
41971
|
createElementVNode("div", _hoisted_11$1, [
|
|
41842
41972
|
createVNode(_sfc_main$f, {
|
|
41843
41973
|
class: "width-260",
|
|
41844
41974
|
modelValue: __props.percent,
|
|
41845
41975
|
"onUpdate:modelValue": _cache[48] || (_cache[48] = ($event) => isRef(percent) ? percent.value = $event : null),
|
|
41846
41976
|
disabled: true,
|
|
41847
|
-
label: "\u0418\u041D\u041D"
|
|
41848
|
-
|
|
41977
|
+
label: "\u0418\u041D\u041D",
|
|
41978
|
+
placeholder: unref(placeholders).inn
|
|
41979
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41849
41980
|
createVNode(_sfc_main$f, {
|
|
41850
41981
|
class: "width-260",
|
|
41851
41982
|
modelValue: unref(formClient).newFounder.nationality,
|
|
41852
41983
|
"onUpdate:modelValue": _cache[49] || (_cache[49] = ($event) => unref(formClient).newFounder.nationality = $event),
|
|
41853
41984
|
disabled: true,
|
|
41854
|
-
label: "\u041E\u0413\u0420\u041D"
|
|
41855
|
-
|
|
41985
|
+
label: "\u041E\u0413\u0420\u041D",
|
|
41986
|
+
placeholder: unref(placeholders).ogrn
|
|
41987
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41856
41988
|
]),
|
|
41857
41989
|
createVNode(_sfc_main$f, {
|
|
41858
41990
|
class: "mt-32",
|
|
41859
41991
|
modelValue: unref(formClient).newFounder.fullName,
|
|
41860
41992
|
"onUpdate:modelValue": _cache[50] || (_cache[50] = ($event) => unref(formClient).newFounder.fullName = $event),
|
|
41861
41993
|
label: "\u0424\u0418\u041E \u0420\u0443\u043A\u043E\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044F",
|
|
41862
|
-
placeholder:
|
|
41863
|
-
}, null, 8, ["modelValue"]),
|
|
41994
|
+
placeholder: unref(placeholders).director.name
|
|
41995
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41864
41996
|
createVNode(_sfc_main$f, {
|
|
41865
41997
|
class: "mt-32",
|
|
41866
|
-
modelValue: unref(formClient).newFounder.
|
|
41867
|
-
"onUpdate:modelValue": _cache[51] || (_cache[51] = ($event) => unref(formClient).newFounder.
|
|
41998
|
+
modelValue: unref(formClient).newFounder.position,
|
|
41999
|
+
"onUpdate:modelValue": _cache[51] || (_cache[51] = ($event) => unref(formClient).newFounder.position = $event),
|
|
41868
42000
|
label: "\u0414\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
|
|
41869
|
-
placeholder:
|
|
41870
|
-
}, null, 8, ["modelValue"]),
|
|
42001
|
+
placeholder: unref(placeholders).director.job2
|
|
42002
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41871
42003
|
createVNode(_sfc_main$f, {
|
|
41872
42004
|
class: "mt-32 width-260",
|
|
41873
42005
|
modelValue: __props.percent,
|
|
41874
42006
|
"onUpdate:modelValue": _cache[52] || (_cache[52] = ($event) => isRef(percent) ? percent.value = $event : null),
|
|
41875
|
-
label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435"
|
|
41876
|
-
|
|
42007
|
+
label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435",
|
|
42008
|
+
placeholder: unref(placeholders).share
|
|
42009
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41877
42010
|
]),
|
|
41878
42011
|
_: 1
|
|
41879
42012
|
}, 8, ["model"])
|
|
@@ -41898,20 +42031,22 @@ const _sfc_main$8 = {
|
|
|
41898
42031
|
modelValue: unref(formClient).newRepresentativeByProxy.fullName,
|
|
41899
42032
|
"onUpdate:modelValue": _cache[54] || (_cache[54] = ($event) => unref(formClient).newRepresentativeByProxy.fullName = $event),
|
|
41900
42033
|
label: "\u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
|
|
41901
|
-
placeholder:
|
|
41902
|
-
}, null, 8, ["modelValue"]),
|
|
42034
|
+
placeholder: unref(placeholders).name
|
|
42035
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41903
42036
|
createVNode(_sfc_main$g, {
|
|
41904
42037
|
class: "mt-32",
|
|
41905
42038
|
label: "\u0414\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
|
|
41906
42039
|
modelValue: unref(formClient).newRepresentativeByProxy.position,
|
|
41907
|
-
"onUpdate:modelValue": _cache[55] || (_cache[55] = ($event) => unref(formClient).newRepresentativeByProxy.position = $event)
|
|
41908
|
-
|
|
42040
|
+
"onUpdate:modelValue": _cache[55] || (_cache[55] = ($event) => unref(formClient).newRepresentativeByProxy.position = $event),
|
|
42041
|
+
placeholder: unref(placeholders).job
|
|
42042
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41909
42043
|
createVNode(_sfc_main$f, {
|
|
41910
42044
|
class: "mt-32",
|
|
41911
42045
|
modelValue: unref(formClient).newRepresentativeByProxy.proxyNumber,
|
|
41912
42046
|
"onUpdate:modelValue": _cache[56] || (_cache[56] = ($event) => unref(formClient).newRepresentativeByProxy.proxyNumber = $event),
|
|
41913
|
-
label: "\u041D\u043E\u043C\u0435\u0440 \u0434\u043E\u0432\u0435\u0440\u0435\u043D\u043D\u043E\u0441\u0442\u0438"
|
|
41914
|
-
|
|
42047
|
+
label: "\u041D\u043E\u043C\u0435\u0440 \u0434\u043E\u0432\u0435\u0440\u0435\u043D\u043D\u043E\u0441\u0442\u0438",
|
|
42048
|
+
placeholder: unref(placeholders).proxyNumber
|
|
42049
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41915
42050
|
createElementVNode("div", _hoisted_12$1, [
|
|
41916
42051
|
createVNode(_component_el_form_item, {
|
|
41917
42052
|
class: "width-260",
|
|
@@ -41943,29 +42078,33 @@ const _sfc_main$8 = {
|
|
|
41943
42078
|
class: "width-260",
|
|
41944
42079
|
modelValue: unref(formClient).newRepresentativeByProxy.ser,
|
|
41945
42080
|
"onUpdate:modelValue": _cache[59] || (_cache[59] = ($event) => unref(formClient).newRepresentativeByProxy.ser = $event),
|
|
41946
|
-
label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
|
|
41947
|
-
|
|
42081
|
+
label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430",
|
|
42082
|
+
placeholder: unref(placeholders).passport.number
|
|
42083
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41948
42084
|
createVNode(_sfc_main$f, {
|
|
41949
42085
|
class: "width-260",
|
|
41950
42086
|
modelValue: unref(formClient).newRepresentativeByProxy.numb,
|
|
41951
42087
|
"onUpdate:modelValue": _cache[60] || (_cache[60] = ($event) => unref(formClient).newRepresentativeByProxy.numb = $event),
|
|
41952
|
-
label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F"
|
|
41953
|
-
|
|
42088
|
+
label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F",
|
|
42089
|
+
placeholder: unref(placeholders).passport.code
|
|
42090
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41954
42091
|
]),
|
|
41955
42092
|
createVNode(_sfc_main$f, {
|
|
41956
42093
|
class: "mt-32",
|
|
41957
42094
|
area: true,
|
|
41958
42095
|
label: "\u0421\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442",
|
|
41959
42096
|
modelValue: unref(formClient).newRepresentativeByProxy.organ,
|
|
41960
|
-
"onUpdate:modelValue": _cache[61] || (_cache[61] = ($event) => unref(formClient).newRepresentativeByProxy.organ = $event)
|
|
41961
|
-
|
|
42097
|
+
"onUpdate:modelValue": _cache[61] || (_cache[61] = ($event) => unref(formClient).newRepresentativeByProxy.organ = $event),
|
|
42098
|
+
placeholder: unref(placeholders).passport.organ
|
|
42099
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
41962
42100
|
createElementVNode("div", _hoisted_14$1, [
|
|
41963
42101
|
createVNode(_component_el_form_item, { label: "\u0414\u0430\u0442\u0430 \u0432\u044B\u0434\u0430\u0447\u0438 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430" }, {
|
|
41964
42102
|
default: withCtx(() => [
|
|
41965
42103
|
createVNode(_sfc_main$c, {
|
|
41966
42104
|
modelValue: dates.passport,
|
|
41967
|
-
"onUpdate:modelValue": _cache[62] || (_cache[62] = ($event) => dates.passport = $event)
|
|
41968
|
-
|
|
42105
|
+
"onUpdate:modelValue": _cache[62] || (_cache[62] = ($event) => dates.passport = $event),
|
|
42106
|
+
placeholder: unref(placeholders).dates.passport
|
|
42107
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41969
42108
|
]),
|
|
41970
42109
|
_: 1
|
|
41971
42110
|
}),
|
|
@@ -41973,8 +42112,9 @@ const _sfc_main$8 = {
|
|
|
41973
42112
|
default: withCtx(() => [
|
|
41974
42113
|
createVNode(_sfc_main$c, {
|
|
41975
42114
|
modelValue: dates.birthday,
|
|
41976
|
-
"onUpdate:modelValue": _cache[63] || (_cache[63] = ($event) => dates.birthday = $event)
|
|
41977
|
-
|
|
42115
|
+
"onUpdate:modelValue": _cache[63] || (_cache[63] = ($event) => dates.birthday = $event),
|
|
42116
|
+
placeholder: unref(placeholders).dates.birth
|
|
42117
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41978
42118
|
]),
|
|
41979
42119
|
_: 1
|
|
41980
42120
|
})
|
|
@@ -41984,8 +42124,9 @@ const _sfc_main$8 = {
|
|
|
41984
42124
|
area: true,
|
|
41985
42125
|
label: "\u041C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
|
|
41986
42126
|
modelValue: unref(formClient).newRepresentativeByProxy.organ,
|
|
41987
|
-
"onUpdate:modelValue": _cache[64] || (_cache[64] = ($event) => unref(formClient).newRepresentativeByProxy.organ = $event)
|
|
41988
|
-
|
|
42127
|
+
"onUpdate:modelValue": _cache[64] || (_cache[64] = ($event) => unref(formClient).newRepresentativeByProxy.organ = $event),
|
|
42128
|
+
placeholder: unref(placeholders).birthPlace
|
|
42129
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
41989
42130
|
]),
|
|
41990
42131
|
_: 1
|
|
41991
42132
|
}, 8, ["model"])
|
|
@@ -41996,142 +42137,6 @@ const _sfc_main$8 = {
|
|
|
41996
42137
|
};
|
|
41997
42138
|
}
|
|
41998
42139
|
};
|
|
41999
|
-
var _imports_0$2 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTEuNDY4NyA5LjQ2OTY3QzExLjc2MTYgOS4xNzY3OCAxMi4yMzY0IDkuMTc2NzggMTIuNTI5MyA5LjQ2OTY3TDE2LjUyOTMgMTMuNDY5N0MxNi44MjIyIDEzLjc2MjYgMTYuODIyMiAxNC4yMzc0IDE2LjUyOTMgMTQuNTMwM0MxNi4yMzY0IDE0LjgyMzIgMTUuNzYxNiAxNC44MjMyIDE1LjQ2ODcgMTQuNTMwM0wxMS45OTkgMTEuMDYwN0w4LjUyOTMyIDE0LjUzMDNDOC4yMzY0MyAxNC44MjMyIDcuNzYxNTYgMTQuODIzMiA3LjQ2ODY2IDE0LjUzMDNDNy4xNzU3NyAxNC4yMzc0IDcuMTc1NzcgMTMuNzYyNiA3LjQ2ODY2IDEzLjQ2OTdMMTEuNDY4NyA5LjQ2OTY3WiIgZmlsbD0iIzY1NjU2NyIvPg0KPC9zdmc+DQo=";
|
|
42000
|
-
var plSelect_vue_vue_type_style_index_0_lang = "";
|
|
42001
|
-
const _hoisted_1$7 = { id: "form-select" };
|
|
42002
|
-
const _hoisted_2$6 = { class: "flex item-select" };
|
|
42003
|
-
const _hoisted_3$5 = {
|
|
42004
|
-
key: 0,
|
|
42005
|
-
src: _imports_1$2
|
|
42006
|
-
};
|
|
42007
|
-
const _sfc_main$7 = {
|
|
42008
|
-
__name: "pl-select",
|
|
42009
|
-
props: {
|
|
42010
|
-
placeholder: {
|
|
42011
|
-
type: String,
|
|
42012
|
-
default: ""
|
|
42013
|
-
},
|
|
42014
|
-
rules: {
|
|
42015
|
-
type: Object,
|
|
42016
|
-
default: function() {
|
|
42017
|
-
return {};
|
|
42018
|
-
}
|
|
42019
|
-
},
|
|
42020
|
-
prop: {
|
|
42021
|
-
type: String,
|
|
42022
|
-
default: "name"
|
|
42023
|
-
},
|
|
42024
|
-
isError: {
|
|
42025
|
-
type: Boolean,
|
|
42026
|
-
default: false
|
|
42027
|
-
},
|
|
42028
|
-
label: {
|
|
42029
|
-
type: String,
|
|
42030
|
-
default: ""
|
|
42031
|
-
},
|
|
42032
|
-
modelValue: {
|
|
42033
|
-
type: String,
|
|
42034
|
-
required: true
|
|
42035
|
-
},
|
|
42036
|
-
options: {
|
|
42037
|
-
type: Object,
|
|
42038
|
-
required: true
|
|
42039
|
-
},
|
|
42040
|
-
checked: {
|
|
42041
|
-
type: Boolean,
|
|
42042
|
-
default: true
|
|
42043
|
-
}
|
|
42044
|
-
},
|
|
42045
|
-
emits: ["update:modelValue", "validate"],
|
|
42046
|
-
setup(__props, { emit: emit2 }) {
|
|
42047
|
-
const props = __props;
|
|
42048
|
-
const selected = ref(false);
|
|
42049
|
-
const formSelect = ref();
|
|
42050
|
-
let select2 = ref("");
|
|
42051
|
-
select2.value = props.modelValue;
|
|
42052
|
-
let { modelValue: validateValue } = toRefs(props);
|
|
42053
|
-
const ruleForm = ref({
|
|
42054
|
-
[props.prop]: validateValue
|
|
42055
|
-
});
|
|
42056
|
-
const validateInp = (prop, isValid2, message2) => {
|
|
42057
|
-
emit2("validate", prop, isValid2, message2);
|
|
42058
|
-
};
|
|
42059
|
-
const blurSelect = async () => {
|
|
42060
|
-
selected.value = false;
|
|
42061
|
-
setTimeout(() => {
|
|
42062
|
-
formSelect.value.validate(() => {
|
|
42063
|
-
});
|
|
42064
|
-
}, 200);
|
|
42065
|
-
};
|
|
42066
|
-
watch(select2, (value) => {
|
|
42067
|
-
selected.value = false;
|
|
42068
|
-
emit2("update:modelValue", value);
|
|
42069
|
-
});
|
|
42070
|
-
return (_ctx, _cache) => {
|
|
42071
|
-
const _component_el_option = ElOption;
|
|
42072
|
-
const _component_el_select = ElSelect;
|
|
42073
|
-
const _component_el_form_item = ElFormItem;
|
|
42074
|
-
const _component_el_form = ElForm;
|
|
42075
|
-
return openBlock(), createElementBlock("div", _hoisted_1$7, [
|
|
42076
|
-
createVNode(_component_el_form, {
|
|
42077
|
-
onValidate: validateInp,
|
|
42078
|
-
"label-position": "top",
|
|
42079
|
-
model: ruleForm.value,
|
|
42080
|
-
ref_key: "formSelect",
|
|
42081
|
-
ref: formSelect,
|
|
42082
|
-
rules: __props.rules
|
|
42083
|
-
}, {
|
|
42084
|
-
default: withCtx(() => [
|
|
42085
|
-
createVNode(_component_el_form_item, {
|
|
42086
|
-
label: __props.label,
|
|
42087
|
-
prop: __props.prop,
|
|
42088
|
-
class: normalizeClass({ "is-error": __props.isError }),
|
|
42089
|
-
"show-message": true
|
|
42090
|
-
}, {
|
|
42091
|
-
default: withCtx(() => [
|
|
42092
|
-
createElementVNode("img", {
|
|
42093
|
-
class: normalizeClass(["form-select__arrow", { rotate: selected.value }]),
|
|
42094
|
-
src: _imports_0$2,
|
|
42095
|
-
alt: "arrow"
|
|
42096
|
-
}, null, 2),
|
|
42097
|
-
createVNode(_component_el_select, {
|
|
42098
|
-
"popper-class": [{ checked: __props.checked }, "selectBox"],
|
|
42099
|
-
modelValue: unref(select2),
|
|
42100
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(select2) ? select2.value = $event : select2 = $event),
|
|
42101
|
-
placeholder: __props.placeholder,
|
|
42102
|
-
onFocus: _cache[1] || (_cache[1] = ($event) => selected.value = true),
|
|
42103
|
-
onBlur: blurSelect
|
|
42104
|
-
}, {
|
|
42105
|
-
default: withCtx(() => [
|
|
42106
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.options, (item) => {
|
|
42107
|
-
return openBlock(), createBlock(_component_el_option, {
|
|
42108
|
-
class: "pl-form-option",
|
|
42109
|
-
key: item.value,
|
|
42110
|
-
label: item.label,
|
|
42111
|
-
value: item.value
|
|
42112
|
-
}, {
|
|
42113
|
-
default: withCtx(() => [
|
|
42114
|
-
createElementVNode("div", _hoisted_2$6, [
|
|
42115
|
-
createTextVNode(toDisplayString(item.label) + " ", 1),
|
|
42116
|
-
item.value === unref(select2) ? (openBlock(), createElementBlock("img", _hoisted_3$5)) : createCommentVNode("", true)
|
|
42117
|
-
])
|
|
42118
|
-
]),
|
|
42119
|
-
_: 2
|
|
42120
|
-
}, 1032, ["label", "value"]);
|
|
42121
|
-
}), 128))
|
|
42122
|
-
]),
|
|
42123
|
-
_: 1
|
|
42124
|
-
}, 8, ["popper-class", "modelValue", "placeholder"])
|
|
42125
|
-
]),
|
|
42126
|
-
_: 1
|
|
42127
|
-
}, 8, ["label", "prop", "class"])
|
|
42128
|
-
]),
|
|
42129
|
-
_: 1
|
|
42130
|
-
}, 8, ["model", "rules"])
|
|
42131
|
-
]);
|
|
42132
|
-
};
|
|
42133
|
-
}
|
|
42134
|
-
};
|
|
42135
42140
|
/*!
|
|
42136
42141
|
* maska v1.5.0
|
|
42137
42142
|
* (c) 2019-2021 Alexander Shabunevich
|
|
@@ -42300,12 +42305,12 @@ function k(e2) {
|
|
|
42300
42305
|
}
|
|
42301
42306
|
"undefined" != typeof window && window.Vue && window.Vue.use && window.Vue.use(k);
|
|
42302
42307
|
var plFormContact_vue_vue_type_style_index_0_lang = "";
|
|
42303
|
-
const _hoisted_1$
|
|
42308
|
+
const _hoisted_1$7 = {
|
|
42304
42309
|
id: "container-general",
|
|
42305
42310
|
class: "d-flex flex-column gap-3"
|
|
42306
42311
|
};
|
|
42307
|
-
const _hoisted_2$
|
|
42308
|
-
const _sfc_main$
|
|
42312
|
+
const _hoisted_2$6 = { class: "d-flex justify-content-between mt-32" };
|
|
42313
|
+
const _sfc_main$7 = {
|
|
42309
42314
|
__name: "pl-form-contact",
|
|
42310
42315
|
props: {
|
|
42311
42316
|
modelValue: { type: Object, required: true }
|
|
@@ -42324,10 +42329,9 @@ const _sfc_main$6 = {
|
|
|
42324
42329
|
emit("update:modelValue", value);
|
|
42325
42330
|
});
|
|
42326
42331
|
return (_ctx, _cache) => {
|
|
42327
|
-
const _component_pl_select = _sfc_main$7;
|
|
42328
42332
|
const _component_el_form = ElForm;
|
|
42329
42333
|
const _directive_maska = resolveDirective("maska");
|
|
42330
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
42334
|
+
return openBlock(), createElementBlock("div", _hoisted_1$7, [
|
|
42331
42335
|
createVNode(_sfc_main$9, {
|
|
42332
42336
|
title: "\u041A\u043E\u043D\u0442\u0430\u043A\u0442\u044B \u0434\u043B\u044F \u0441\u0432\u044F\u0437\u0438",
|
|
42333
42337
|
"bth-title": "\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043A\u043E\u043D\u0442\u0430\u043A\u0442",
|
|
@@ -42355,7 +42359,7 @@ const _sfc_main$6 = {
|
|
|
42355
42359
|
label: "\u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
|
|
42356
42360
|
placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E"
|
|
42357
42361
|
}, null, 8, ["value"]),
|
|
42358
|
-
createVNode(
|
|
42362
|
+
createVNode(_sfc_main$g, {
|
|
42359
42363
|
class: "mt-32",
|
|
42360
42364
|
label: "\u0414\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
|
|
42361
42365
|
modelValue: unref(formClient).contact.position,
|
|
@@ -42373,7 +42377,7 @@ const _sfc_main$6 = {
|
|
|
42373
42377
|
}, null, 8, ["modelValue"]), [
|
|
42374
42378
|
[_directive_maska, "!+7 (###) ### ## ##"]
|
|
42375
42379
|
]),
|
|
42376
|
-
createElementVNode("div", _hoisted_2$
|
|
42380
|
+
createElementVNode("div", _hoisted_2$6, [
|
|
42377
42381
|
createVNode(_sfc_main$f, {
|
|
42378
42382
|
class: "width-260",
|
|
42379
42383
|
modelValue: unref(formClient).contact.contactPhone.number,
|
|
@@ -42415,34 +42419,34 @@ const _sfc_main$6 = {
|
|
|
42415
42419
|
};
|
|
42416
42420
|
}
|
|
42417
42421
|
};
|
|
42418
|
-
var _imports_0$
|
|
42422
|
+
var _imports_0$2 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMi4yNTY5MSA1LjAyMDRDMi4yNDU5MSAzLjQ5MzEgMy40ODA1NSAyLjI1IDUuMDA2ODkgMi4yNUgxNi4xNjM5QzE2Ljg5NDQgMi4yNSAxNy41OTI2IDIuNTQwNDEgMTguMTA4NSAzLjA1NDk2TDIwLjkzNzIgNS44ODM2N0MyMS40NTI3IDYuMzk5MTYgMjEuNzQyOSA3LjA5ODg2IDIxLjc0MjkgNy44MjhWMTRDMjEuNzQyOSAxNC40MTQyIDIxLjQwNzEgMTQuNzUgMjAuOTkyOSAxNC43NUMyMC41Nzg3IDE0Ljc1IDIwLjI0MjkgMTQuNDE0MiAyMC4yNDI5IDE0VjcuODI4QzIwLjI0MjkgNy40OTcxNCAyMC4xMTExIDcuMTc4ODQgMTkuODc2NiA2Ljk0NDMzTDE3LjA0OTMgNC4xMTcwNEMxNy4wNDkxIDQuMTE2OTIgMTcuMDQ5NCA0LjExNzE1IDE3LjA0OTMgNC4xMTcwNEMxNi45NTgxIDQuMDI2MjEgMTYuODU0NSAzLjk1MDUgMTYuNzQyOSAzLjg5MjIxVjYuOTA5QzE2Ljc0MjkgNy44NzUyMSAxNS45NTkxIDguNjU5IDE0Ljk5MjkgOC42NTlIOC45OTI4OUM4LjAyNjY4IDguNjU5IDcuMjQyODkgNy44NzUyMSA3LjI0Mjg5IDYuOTA5VjMuNzVINS4wMDY4OUM0LjMxMzI1IDMuNzUgMy43NTE5MSA0LjMxNDc2IDMuNzU2ODcgNS4wMDk0M0MzLjc1Njg3IDUuMDA5NDUgMy43NTY4NyA1LjAwOTQxIDMuNzU2ODcgNS4wMDk0M0wzLjg2MDg3IDE5LjAwOTRDMy44NjU4NyAxOS42OTYxIDQuNDIzNzIgMjAuMjUgNS4xMTA4OSAyMC4yNUg2LjI0OTg5VjEzLjI4NkM2LjI0OTg5IDEyLjE2MTggNy4xNjE2OCAxMS4yNSA4LjI4NTg5IDExLjI1SDE1LjcxNDlDMTYuODM4NSAxMS4yNSAxNy43NDk5IDEyLjE2MjIgMTcuNzQ5OSAxMy4yODZWMTRDMTcuNzQ5OSAxNC40MTQyIDE3LjQxNDEgMTQuNzUgMTYuOTk5OSAxNC43NUMxNi41ODU3IDE0Ljc1IDE2LjI0OTkgMTQuNDE0MiAxNi4yNDk5IDE0VjEzLjI4NkMxNi4yNDk5IDEyLjk4OTggMTYuMDA5MyAxMi43NSAxNS43MTQ5IDEyLjc1SDguMjg1ODlDNy45OTAxIDEyLjc1IDcuNzQ5ODkgMTIuOTkwMiA3Ljc0OTg5IDEzLjI4NlYyMC4yNUgxMi45OTk5QzEzLjQxNDEgMjAuMjUgMTMuNzQ5OSAyMC41ODU4IDEzLjc0OTkgMjFDMTMuNzQ5OSAyMS40MTQyIDEzLjQxNDEgMjEuNzUgMTIuOTk5OSAyMS43NUg1LjExMDg5QzMuNjAwMDkgMjEuNzUgMi4zNzE5NyAyMC41MzE4IDIuMzYwOTEgMTkuMDIwNkMyLjM2MDkxIDE5LjAyMDUgMi4zNjA5MSAxOS4wMjA2IDIuMzYwOTEgMTkuMDIwNkwyLjI1NjkxIDUuMDIwNFpNOC43NDI4OSAzLjc1VjYuOTA5QzguNzQyODkgNy4wNDY3OSA4Ljg1NTEgNy4xNTkgOC45OTI4OSA3LjE1OUgxNC45OTI5QzE1LjEzMDcgNy4xNTkgMTUuMjQyOSA3LjA0Njc5IDE1LjI0MjkgNi45MDlWMy43NUg4Ljc0Mjg5Wk0yMS41MzAyIDE3LjQ2OTdDMjEuODIzMSAxNy43NjI2IDIxLjgyMzEgMTguMjM3NCAyMS41MzAyIDE4LjUzMDNMMTguNTMwMiAyMS41MzAzQzE4LjIzNzMgMjEuODIzMiAxNy43NjI1IDIxLjgyMzIgMTcuNDY5NiAyMS41MzAzTDE1LjQ2OTYgMTkuNTMwM0MxNS4xNzY3IDE5LjIzNzQgMTUuMTc2NyAxOC43NjI2IDE1LjQ2OTYgMTguNDY5N0MxNS43NjI1IDE4LjE3NjggMTYuMjM3MyAxOC4xNzY4IDE2LjUzMDIgMTguNDY5N0wxNy45OTk5IDE5LjkzOTNMMjAuNDY5NiAxNy40Njk3QzIwLjc2MjUgMTcuMTc2OCAyMS4yMzczIDE3LjE3NjggMjEuNTMwMiAxNy40Njk3WiIgZmlsbD0iIzUwNTA1MSIvPg0KPC9zdmc+DQo=";
|
|
42419
42423
|
var _imports_1 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTIgMi4yNDYwOUMxMi4xOTg5IDIuMjQ2MDkgMTIuMzg5NyAyLjMyNTExIDEyLjUzMDMgMi40NjU3NkwxNS41MzE2IDUuNDY3MDFDMTUuODI0NSA1Ljc1OTkxIDE1LjgyNDUgNi4yMzQ3OCAxNS41MzE2IDYuNTI3NjdDMTUuMjM4NyA2LjgyMDU3IDE0Ljc2MzggNi44MjA1NyAxNC40NzA5IDYuNTI3NjdMMTIuNzUgNC44MDY3NVYxNS4wMDExQzEyLjc1IDE1LjQxNTMgMTIuNDE0MiAxNS43NTExIDEyIDE1Ljc1MTFDMTEuNTg1OCAxNS43NTExIDExLjI1IDE1LjQxNTMgMTEuMjUgMTUuMDAxMVY0LjgwNjc1TDkuNTI5MDcgNi41Mjc2N0M5LjIzNjE3IDYuODIwNTcgOC43NjEzIDYuODIwNTcgOC40Njg0MSA2LjUyNzY3QzguMTc1NTEgNi4yMzQ3OCA4LjE3NTUxIDUuNzU5OTEgOC40Njg0MSA1LjQ2NzAxTDExLjQ2OTcgMi40NjU3NkMxMS42MTAzIDIuMzI1MTEgMTEuODAxMSAyLjI0NjA5IDEyIDIuMjQ2MDlaTTYuOTk3OSA5Ljc0ODU5QzYuMzA3MDkgOS43NDg1OSA1Ljc0NzA3IDEwLjMwODYgNS43NDcwNyAxMC45OTk0VjE5LjAwMjhDNS43NDcwNyAxOS42OTM2IDYuMzA3MDkgMjAuMjUzNiA2Ljk5NzkgMjAuMjUzNkgxNy4wMDIxQzE3LjY5MjkgMjAuMjUzNiAxOC4yNTI5IDE5LjY5MzYgMTguMjUyOSAxOS4wMDI4VjEwLjk5OTRDMTguMjUyOSAxMC4zMDg2IDE3LjY5MjkgOS43NDg1OSAxNy4wMDIxIDkuNzQ4NTlIMTUuMDAxMkMxNC41ODcgOS43NDg1OSAxNC4yNTEyIDkuNDEyODEgMTQuMjUxMiA4Ljk5ODU5QzE0LjI1MTIgOC41ODQzOCAxNC41ODcgOC4yNDg1OSAxNS4wMDEyIDguMjQ4NTlIMTcuMDAyMUMxOC41MjEzIDguMjQ4NTkgMTkuNzUyOSA5LjQ4MDE4IDE5Ljc1MjkgMTAuOTk5NFYxOS4wMDI4QzE5Ljc1MjkgMjAuNTIyIDE4LjUyMTMgMjEuNzUzNiAxNy4wMDIxIDIxLjc1MzZINi45OTc5QzUuNDc4NjYgMjEuNzUzNiA0LjI0NzA3IDIwLjUyMiA0LjI0NzA3IDE5LjAwMjhWMTAuOTk5NEM0LjI0NzA3IDkuNDgwMTggNS40Nzg2NiA4LjI0ODU5IDYuOTk3OSA4LjI0ODU5SDguOTk4NzRDOS40MTI5NSA4LjI0ODU5IDkuNzQ4NzQgOC41ODQzOCA5Ljc0ODc0IDguOTk4NTlDOS43NDg3NCA5LjQxMjgxIDkuNDEyOTUgOS43NDg1OSA4Ljk5ODc0IDkuNzQ4NTlINi45OTc5WiIgZmlsbD0iIzUwNTA1MSIvPg0KPC9zdmc+DQo=";
|
|
42420
42424
|
var _imports_2 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTIgMi4zNTg4OUM2LjcwNDk1IDIuMzU4ODkgMi4yNSA2LjI2OTkzIDIuMjUgMTEuMjkwOUMyLjI1IDE0LjExMzIgMy42NzUwNyAxNi41OTAxIDUuODQ4NzQgMTguMjEwNkM1Ljg0ODY0IDE4LjYxNjkgNS44NDg5NiAxOS4wNzMgNS44NDkzMSAxOS41NTg1VjE5LjU1ODZMNS44NDkzMSAxOS41NTkyQzUuODQ5NjQgMjAuMDMxNSA1Ljg1IDIwLjUzMTYgNS44NSAyMS4wNDA5QzUuODUgMjEuMzAwMyA1Ljk4NDAxIDIxLjU0MTIgNi4yMDQzNiAyMS42NzhDNi40MjQ3MSAyMS44MTQ5IDYuNzAwMTEgMjEuODI4MSA2LjkzMjU5IDIxLjcxMzFMMTAuMjQxOSAyMC4wNzU4QzEwLjgxMTkgMjAuMTcxNCAxMS4zOTg3IDIwLjIyMjkgMTIgMjAuMjIyOUMxNy4yOTUxIDIwLjIyMjkgMjEuNzUgMTYuMzExOCAyMS43NSAxMS4yOTA5QzIxLjc1IDYuMjY5OTMgMTcuMjk1MSAyLjM1ODg5IDEyIDIuMzU4ODlaTTMuNzUgMTEuMjkwOUMzLjc1IDcuMjMzODUgNy4zOTEwNSAzLjg1ODg5IDEyIDMuODU4ODlDMTYuNjA4OSAzLjg1ODg5IDIwLjI1IDcuMjMzODUgMjAuMjUgMTEuMjkwOUMyMC4yNSAxNS4zNDc5IDE2LjYwODkgMTguNzIyOSAxMiAxOC43MjI5QzExLjQwODQgMTguNzIyOSAxMC44MzE3IDE4LjY2NDggMTAuMjcyNSAxOC41NTczQzEwLjExMTcgMTguNTI2NSA5Ljk0NTE3IDE4LjU0OTEgOS43OTg0MSAxOC42MjE3TDcuMzQ5NSAxOS44MzMzTDcuMzQ5MyAxOS41NTVDNy4zNDg4NCAxOC45MTAzIDcuMzQ4NDIgMTguMzE5MSA3LjM0OSAxNy44MjU4QzcuMzQ5MjkgMTcuNTc3NyA3LjIyNjkzIDE3LjM0NTYgNy4wMjIxNSAxNy4yMDU3QzUuMDIwODUgMTUuODM4MSAzLjc1IDEzLjY5NTMgMy43NSAxMS4yOTA5Wk0xMS45IDcuMDg0ODlDMTAuNTcxMyA3LjA4NDg5IDkuNDkgOC4xNjAyIDkuNDkgOS40OTI4OUM5LjQ5IDkuOTA3MSA5LjgyNTc5IDEwLjI0MjkgMTAuMjQgMTAuMjQyOUMxMC42NTQyIDEwLjI0MjkgMTAuOTkgOS45MDcxIDEwLjk5IDkuNDkyODlDMTAuOTkgOC45OTE1NyAxMS4zOTY3IDguNTg0ODkgMTEuOSA4LjU4NDg5QzEyLjQwMjEgOC41ODQ4OSAxMi44MDkgOC45OTEzOSAxMi44MDkgOS40OTM4OUMxMi44MDkgOS42NTQzMiAxMi43NjQ2IDkuNzU1NDMgMTIuNyA5Ljg0MjQxQzEyLjYyMyA5Ljk0NjE4IDEyLjUwMjggMTAuMDQ4MSAxMi4zMTk2IDEwLjE3MTVDMTEuODUxMyAxMC40ODU5IDExLjE0OSAxMS4wNDg2IDExLjE0OSAxMi4xMjA5VjEyLjMyNzlDMTEuMTQ5IDEyLjc0MjEgMTEuNDg0OCAxMy4wNzc5IDExLjg5OSAxMy4wNzc5QzEyLjMxMzIgMTMuMDc3OSAxMi42NDkgMTIuNzQyMSAxMi42NDkgMTIuMzI3OVYxMi4xMjA5QzEyLjY0OSAxMS45NTMyIDEyLjY5NTYgMTEuODQ3IDEyLjc2MzEgMTEuNzU2QzEyLjg0MzIgMTEuNjQ4MiAxMi45Njc3IDExLjU0MyAxMy4xNTYxIDExLjQxNjZMMTMuMTU2OCAxMS40MTYxQzEzLjYxNDQgMTEuMTA4IDE0LjMwOSAxMC41NTIzIDE0LjMwOSA5LjQ5Mzg5QzE0LjMwOSA4LjE2MjM4IDEzLjIyOTkgNy4wODQ4OSAxMS45IDcuMDg0ODlaTTExLjg5MDUgMTUuNzI2MUMxMi4zOTMgMTUuNzI2MSAxMi44MDA1IDE1LjMxODcgMTIuODAwNSAxNC44MTYxQzEyLjgwMDUgMTQuMzEzNiAxMi4zOTMgMTMuOTA2MSAxMS44OTA1IDEzLjkwNjFDMTEuMzg3OSAxMy45MDYxIDEwLjk4MDUgMTQuMzEzNiAxMC45ODA1IDE0LjgxNjFDMTAuOTgwNSAxNS4zMTg3IDExLjM4NzkgMTUuNzI2MSAxMS44OTA1IDE1LjcyNjFaIiBmaWxsPSIjNTA1MDUxIi8+DQo8L3N2Zz4NCg==";
|
|
42421
42425
|
var plFormMenu_vue_vue_type_style_index_0_lang = "";
|
|
42422
|
-
const _sfc_main$
|
|
42423
|
-
const _hoisted_1$
|
|
42426
|
+
const _sfc_main$6 = {};
|
|
42427
|
+
const _hoisted_1$6 = {
|
|
42424
42428
|
id: "form-menu",
|
|
42425
42429
|
class: "container padding-menu pt-3 pb-3 h-100"
|
|
42426
42430
|
};
|
|
42427
|
-
const _hoisted_2$
|
|
42428
|
-
const _hoisted_3$
|
|
42429
|
-
_hoisted_2$
|
|
42431
|
+
const _hoisted_2$5 = /* @__PURE__ */ createStaticVNode('<nav class="d-grid gap-52 justify-content-center h-100"><div class="d-grid top-section gap-4"><a href="#"><img src="' + _imports_0$2 + '" alt="saved"></a><a href="#"><img src="' + _imports_1 + '" alt="share"></a><a href="#"><img src="' + _imports_2 + '" alt="support"></a></div><div class="decor"></div><a class="mt-auto" href="#"><img src="' + _imports_3 + '" alt="close"></a></nav>', 1);
|
|
42432
|
+
const _hoisted_3$5 = [
|
|
42433
|
+
_hoisted_2$5
|
|
42430
42434
|
];
|
|
42431
42435
|
function _sfc_render(_ctx, _cache) {
|
|
42432
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
42436
|
+
return openBlock(), createElementBlock("div", _hoisted_1$6, _hoisted_3$5);
|
|
42433
42437
|
}
|
|
42434
|
-
var PlFormMenu = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
42435
|
-
const _hoisted_1$
|
|
42438
|
+
var PlFormMenu = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render]]);
|
|
42439
|
+
const _hoisted_1$5 = {
|
|
42436
42440
|
id: "container-general",
|
|
42437
42441
|
class: "d-flex flex-column gap-3"
|
|
42438
42442
|
};
|
|
42439
|
-
const _hoisted_2$
|
|
42440
|
-
const _hoisted_3$
|
|
42443
|
+
const _hoisted_2$4 = { class: "d-flex justify-content-between mt-32" };
|
|
42444
|
+
const _hoisted_3$4 = { class: "d-flex justify-content-between mt-32" };
|
|
42441
42445
|
const _hoisted_4$3 = { class: "d-flex justify-content-between mt-32" };
|
|
42442
42446
|
const _hoisted_5$2 = { class: "d-flex justify-content-between mt-32" };
|
|
42443
42447
|
const _hoisted_6$1 = { class: "d-flex justify-content-between mt-32" };
|
|
42444
42448
|
const _hoisted_7$1 = { class: "d-flex justify-content-between mt-32" };
|
|
42445
|
-
const _sfc_main$
|
|
42449
|
+
const _sfc_main$5 = {
|
|
42446
42450
|
__name: "pl-additional",
|
|
42447
42451
|
props: {
|
|
42448
42452
|
modelValue: { type: Object, required: true }
|
|
@@ -42450,6 +42454,7 @@ const _sfc_main$4 = {
|
|
|
42450
42454
|
setup(__props) {
|
|
42451
42455
|
const props = __props;
|
|
42452
42456
|
let { modelValue: formClient } = toRefs(props);
|
|
42457
|
+
console.log("formClient", formClient);
|
|
42453
42458
|
const isOpen = reactive({
|
|
42454
42459
|
isBeneficiary: false,
|
|
42455
42460
|
isAcquirer: false
|
|
@@ -42458,10 +42463,8 @@ const _sfc_main$4 = {
|
|
|
42458
42463
|
const addAcquirer = () => isOpen.isAcquirer = true;
|
|
42459
42464
|
return (_ctx, _cache) => {
|
|
42460
42465
|
const _component_el_form_item = ElFormItem;
|
|
42461
|
-
const _component_pl_select = _sfc_main$7;
|
|
42462
|
-
const _component_pl_checkbox = _sfc_main$e;
|
|
42463
42466
|
const _component_el_form = ElForm;
|
|
42464
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
42467
|
+
return openBlock(), createElementBlock("div", _hoisted_1$5, [
|
|
42465
42468
|
createVNode(_sfc_main$9, {
|
|
42466
42469
|
title: "\u041A\u043E\u0441\u0432\u0435\u043D\u043D\u044B\u0435 \u0431\u0435\u043D\u0435\u0444\u0438\u0446\u0438\u0430\u0440\u044B",
|
|
42467
42470
|
"bth-title": "\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C",
|
|
@@ -42475,7 +42478,7 @@ const _sfc_main$4 = {
|
|
|
42475
42478
|
"add-item": addAcquirer
|
|
42476
42479
|
}),
|
|
42477
42480
|
createVNode(_sfc_main$a, {
|
|
42478
|
-
onTogglePopup: _cache[
|
|
42481
|
+
onTogglePopup: _cache[13] || (_cache[13] = ($event) => isOpen.isBeneficiary = false),
|
|
42479
42482
|
visible: isOpen.isBeneficiary,
|
|
42480
42483
|
name: "\u041D\u043E\u0432\u044B\u0439 \u0431\u0435\u043D\u0435\u0444\u0438\u0446\u0438\u0430\u0440",
|
|
42481
42484
|
"no-tabs": true
|
|
@@ -42492,23 +42495,25 @@ const _sfc_main$4 = {
|
|
|
42492
42495
|
modelValue: unref(formClient).newBeneficiary.fullName,
|
|
42493
42496
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => unref(formClient).newBeneficiary.fullName = $event),
|
|
42494
42497
|
label: "\u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
|
|
42495
|
-
placeholder:
|
|
42496
|
-
}, null, 8, ["modelValue"]),
|
|
42497
|
-
createElementVNode("div", _hoisted_2$
|
|
42498
|
+
placeholder: unref(placeholders).name
|
|
42499
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
42500
|
+
createElementVNode("div", _hoisted_2$4, [
|
|
42498
42501
|
createVNode(_sfc_main$f, {
|
|
42499
42502
|
class: "width-260",
|
|
42500
42503
|
modelValue: unref(formClient).newBeneficiary.percent,
|
|
42501
42504
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => unref(formClient).newBeneficiary.percent = $event),
|
|
42502
|
-
label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435"
|
|
42503
|
-
|
|
42505
|
+
label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435",
|
|
42506
|
+
placeholder: unref(placeholders).share
|
|
42507
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
42504
42508
|
createVNode(_sfc_main$f, {
|
|
42505
42509
|
class: "width-260",
|
|
42506
42510
|
modelValue: unref(formClient).newBeneficiary.nationality,
|
|
42507
42511
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => unref(formClient).newBeneficiary.nationality = $event),
|
|
42508
|
-
label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E"
|
|
42509
|
-
|
|
42512
|
+
label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E",
|
|
42513
|
+
placeholder: unref(placeholders).nationality
|
|
42514
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
42510
42515
|
]),
|
|
42511
|
-
createElementVNode("div", _hoisted_3$
|
|
42516
|
+
createElementVNode("div", _hoisted_3$4, [
|
|
42512
42517
|
createVNode(_component_el_form_item, {
|
|
42513
42518
|
class: "width-260",
|
|
42514
42519
|
label: "\u0414\u0430\u0442\u0430 \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F"
|
|
@@ -42521,34 +42526,38 @@ const _sfc_main$4 = {
|
|
|
42521
42526
|
]),
|
|
42522
42527
|
_: 1
|
|
42523
42528
|
}),
|
|
42524
|
-
createVNode(
|
|
42529
|
+
createVNode(_sfc_main$g, {
|
|
42525
42530
|
class: "width-260",
|
|
42526
42531
|
label: "\u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442",
|
|
42527
42532
|
modelValue: unref(formClient).newBeneficiary.doc,
|
|
42528
|
-
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => unref(formClient).newBeneficiary.doc = $event)
|
|
42529
|
-
|
|
42533
|
+
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => unref(formClient).newBeneficiary.doc = $event),
|
|
42534
|
+
placeholder: unref(placeholders).document
|
|
42535
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
42530
42536
|
]),
|
|
42531
42537
|
createElementVNode("div", _hoisted_4$3, [
|
|
42532
42538
|
createVNode(_sfc_main$f, {
|
|
42533
42539
|
class: "width-260",
|
|
42534
42540
|
modelValue: unref(formClient).newBeneficiary.ser,
|
|
42535
42541
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => unref(formClient).newBeneficiary.ser = $event),
|
|
42536
|
-
label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
|
|
42537
|
-
|
|
42542
|
+
label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430",
|
|
42543
|
+
placeholder: unref(placeholders).passport.number
|
|
42544
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
42538
42545
|
createVNode(_sfc_main$f, {
|
|
42539
42546
|
class: "width-260",
|
|
42540
42547
|
modelValue: unref(formClient).newBeneficiary.numb,
|
|
42541
42548
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => unref(formClient).newBeneficiary.numb = $event),
|
|
42542
|
-
label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F"
|
|
42543
|
-
|
|
42549
|
+
label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F",
|
|
42550
|
+
placeholder: unref(placeholders).passport.code
|
|
42551
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
42544
42552
|
]),
|
|
42545
42553
|
createVNode(_sfc_main$f, {
|
|
42546
42554
|
class: "mt-32",
|
|
42547
42555
|
area: true,
|
|
42548
42556
|
label: "\u0421\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442",
|
|
42549
42557
|
modelValue: unref(formClient).newBeneficiary.organ,
|
|
42550
|
-
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => unref(formClient).newBeneficiary.organ = $event)
|
|
42551
|
-
|
|
42558
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => unref(formClient).newBeneficiary.organ = $event),
|
|
42559
|
+
placeholder: unref(placeholders).passport.organ
|
|
42560
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
42552
42561
|
createVNode(_component_el_form_item, {
|
|
42553
42562
|
style: { "margin-top": "32px !important" },
|
|
42554
42563
|
label: "\u0414\u0430\u0442\u0430 \u0432\u044B\u0434\u0430\u0447\u0438 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
|
|
@@ -42556,8 +42565,9 @@ const _sfc_main$4 = {
|
|
|
42556
42565
|
default: withCtx(() => [
|
|
42557
42566
|
createVNode(_sfc_main$c, {
|
|
42558
42567
|
modelValue: unref(formClient).newBeneficiary.dates.passport,
|
|
42559
|
-
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => unref(formClient).newBeneficiary.dates.passport = $event)
|
|
42560
|
-
|
|
42568
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => unref(formClient).newBeneficiary.dates.passport = $event),
|
|
42569
|
+
placeholder: unref(placeholders).dates.passport
|
|
42570
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
42561
42571
|
]),
|
|
42562
42572
|
_: 1
|
|
42563
42573
|
}),
|
|
@@ -42566,21 +42576,32 @@ const _sfc_main$4 = {
|
|
|
42566
42576
|
area: true,
|
|
42567
42577
|
label: "\u041C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
|
|
42568
42578
|
modelValue: unref(formClient).newBeneficiary.organ,
|
|
42569
|
-
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => unref(formClient).newBeneficiary.organ = $event)
|
|
42570
|
-
|
|
42579
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => unref(formClient).newBeneficiary.organ = $event),
|
|
42580
|
+
placeholder: unref(placeholders).birthPlace
|
|
42581
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
42571
42582
|
createVNode(_sfc_main$f, {
|
|
42572
42583
|
class: "mt-32",
|
|
42573
42584
|
modelValue: unref(formClient).newBeneficiary.LAddress,
|
|
42574
42585
|
"onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => unref(formClient).newBeneficiary.LAddress = $event),
|
|
42575
42586
|
area: true,
|
|
42576
|
-
placeholder:
|
|
42587
|
+
placeholder: unref(placeholders).address.registration,
|
|
42577
42588
|
label: "\u0410\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438"
|
|
42578
|
-
}, null, 8, ["modelValue"]),
|
|
42579
|
-
createVNode(
|
|
42589
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
42590
|
+
withDirectives(createVNode(_sfc_main$f, {
|
|
42591
|
+
class: "mt-32",
|
|
42592
|
+
modelValue: unref(formClient).newBeneficiary.LAddress,
|
|
42593
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => unref(formClient).newBeneficiary.LAddress = $event),
|
|
42594
|
+
area: true,
|
|
42595
|
+
placeholder: unref(placeholders).address.actual,
|
|
42596
|
+
label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
|
|
42597
|
+
}, null, 8, ["modelValue", "placeholder"]), [
|
|
42598
|
+
[vShow, !unref(formClient).newBeneficiary.isSameAddress]
|
|
42599
|
+
]),
|
|
42600
|
+
createVNode(_sfc_main$e, {
|
|
42580
42601
|
class: "mt-32",
|
|
42581
42602
|
label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441 \u0441\u043E\u0432\u043F\u0430\u0434\u0430\u0435\u0442 \u0441 \u0430\u0434\u0440\u0435\u0441\u043E\u043C \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438",
|
|
42582
42603
|
modelValue: unref(formClient).newBeneficiary.isSameAddress,
|
|
42583
|
-
"onUpdate:modelValue": _cache[
|
|
42604
|
+
"onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => unref(formClient).newBeneficiary.isSameAddress = $event)
|
|
42584
42605
|
}, null, 8, ["modelValue"])
|
|
42585
42606
|
]),
|
|
42586
42607
|
_: 1
|
|
@@ -42589,7 +42610,7 @@ const _sfc_main$4 = {
|
|
|
42589
42610
|
_: 1
|
|
42590
42611
|
}, 8, ["visible"]),
|
|
42591
42612
|
createVNode(_sfc_main$a, {
|
|
42592
|
-
onTogglePopup: _cache[
|
|
42613
|
+
onTogglePopup: _cache[28] || (_cache[28] = ($event) => isOpen.isAcquirer = false),
|
|
42593
42614
|
visible: isOpen.isAcquirer,
|
|
42594
42615
|
name: "\u041D\u043E\u0432\u044B\u0439 \u0432\u044B\u0433\u043E\u0434\u043E\u043F\u0440\u0438\u043E\u0431\u0440\u0435\u0442\u0430\u0442\u0435\u043B\u044C",
|
|
42595
42616
|
"no-tabs": true
|
|
@@ -42604,24 +42625,32 @@ const _sfc_main$4 = {
|
|
|
42604
42625
|
default: withCtx(() => [
|
|
42605
42626
|
createVNode(_sfc_main$f, {
|
|
42606
42627
|
modelValue: unref(formClient).newBeneficiary.fullName,
|
|
42607
|
-
"onUpdate:modelValue": _cache[
|
|
42628
|
+
"onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => unref(formClient).newBeneficiary.fullName = $event),
|
|
42608
42629
|
label: "\u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
|
|
42609
|
-
placeholder:
|
|
42610
|
-
}, null, 8, ["modelValue"]),
|
|
42630
|
+
placeholder: unref(placeholders).name
|
|
42631
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
42611
42632
|
createElementVNode("div", _hoisted_5$2, [
|
|
42612
42633
|
createVNode(_sfc_main$f, {
|
|
42613
42634
|
class: "width-260",
|
|
42614
42635
|
modelValue: unref(formClient).newBeneficiary.percent,
|
|
42615
|
-
"onUpdate:modelValue": _cache[
|
|
42616
|
-
label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435"
|
|
42617
|
-
|
|
42636
|
+
"onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => unref(formClient).newBeneficiary.percent = $event),
|
|
42637
|
+
label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435",
|
|
42638
|
+
placeholder: unref(placeholders).share
|
|
42639
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
42618
42640
|
createVNode(_sfc_main$f, {
|
|
42619
42641
|
class: "width-260",
|
|
42620
42642
|
modelValue: unref(formClient).newBeneficiary.nationality,
|
|
42621
|
-
"onUpdate:modelValue": _cache[
|
|
42622
|
-
label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E"
|
|
42623
|
-
|
|
42643
|
+
"onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => unref(formClient).newBeneficiary.nationality = $event),
|
|
42644
|
+
label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E",
|
|
42645
|
+
placeholder: unref(placeholders).nationality
|
|
42646
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
42624
42647
|
]),
|
|
42648
|
+
createVNode(_sfc_main$e, {
|
|
42649
|
+
class: "mt-32",
|
|
42650
|
+
label: "\u042F\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u0431\u0435\u043D\u0435\u0444\u0438\u0446\u0438\u0430\u0440\u043E\u043C",
|
|
42651
|
+
modelValue: unref(formClient).newBeneficiary.isBeneficiary,
|
|
42652
|
+
"onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => unref(formClient).newBeneficiary.isBeneficiary = $event)
|
|
42653
|
+
}, null, 8, ["modelValue"]),
|
|
42625
42654
|
createElementVNode("div", _hoisted_6$1, [
|
|
42626
42655
|
createVNode(_component_el_form_item, {
|
|
42627
42656
|
class: "width-260",
|
|
@@ -42630,39 +42659,43 @@ const _sfc_main$4 = {
|
|
|
42630
42659
|
default: withCtx(() => [
|
|
42631
42660
|
createVNode(_sfc_main$c, {
|
|
42632
42661
|
modelValue: unref(formClient).newBeneficiary.dates.birthday,
|
|
42633
|
-
"onUpdate:modelValue": _cache[
|
|
42662
|
+
"onUpdate:modelValue": _cache[18] || (_cache[18] = ($event) => unref(formClient).newBeneficiary.dates.birthday = $event)
|
|
42634
42663
|
}, null, 8, ["modelValue"])
|
|
42635
42664
|
]),
|
|
42636
42665
|
_: 1
|
|
42637
42666
|
}),
|
|
42638
|
-
createVNode(
|
|
42667
|
+
createVNode(_sfc_main$g, {
|
|
42639
42668
|
class: "width-260",
|
|
42640
42669
|
label: "\u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442",
|
|
42641
42670
|
modelValue: unref(formClient).newBeneficiary.doc,
|
|
42642
|
-
"onUpdate:modelValue": _cache[
|
|
42643
|
-
|
|
42671
|
+
"onUpdate:modelValue": _cache[19] || (_cache[19] = ($event) => unref(formClient).newBeneficiary.doc = $event),
|
|
42672
|
+
placeholder: unref(placeholders).document
|
|
42673
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
42644
42674
|
]),
|
|
42645
42675
|
createElementVNode("div", _hoisted_7$1, [
|
|
42646
42676
|
createVNode(_sfc_main$f, {
|
|
42647
42677
|
class: "width-260",
|
|
42648
42678
|
modelValue: unref(formClient).newBeneficiary.ser,
|
|
42649
|
-
"onUpdate:modelValue": _cache[
|
|
42650
|
-
label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
|
|
42651
|
-
|
|
42679
|
+
"onUpdate:modelValue": _cache[20] || (_cache[20] = ($event) => unref(formClient).newBeneficiary.ser = $event),
|
|
42680
|
+
label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430",
|
|
42681
|
+
placeholder: unref(placeholders).passport.number
|
|
42682
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
42652
42683
|
createVNode(_sfc_main$f, {
|
|
42653
42684
|
class: "width-260",
|
|
42654
42685
|
modelValue: unref(formClient).newBeneficiary.numb,
|
|
42655
|
-
"onUpdate:modelValue": _cache[
|
|
42656
|
-
label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F"
|
|
42657
|
-
|
|
42686
|
+
"onUpdate:modelValue": _cache[21] || (_cache[21] = ($event) => unref(formClient).newBeneficiary.numb = $event),
|
|
42687
|
+
label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F",
|
|
42688
|
+
placeholder: unref(placeholders).passport.code
|
|
42689
|
+
}, null, 8, ["modelValue", "placeholder"])
|
|
42658
42690
|
]),
|
|
42659
42691
|
createVNode(_sfc_main$f, {
|
|
42660
42692
|
class: "mt-32",
|
|
42661
42693
|
area: true,
|
|
42662
42694
|
label: "\u0421\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442",
|
|
42663
42695
|
modelValue: unref(formClient).newBeneficiary.organ,
|
|
42664
|
-
"onUpdate:modelValue": _cache[
|
|
42665
|
-
|
|
42696
|
+
"onUpdate:modelValue": _cache[22] || (_cache[22] = ($event) => unref(formClient).newBeneficiary.organ = $event),
|
|
42697
|
+
placeholder: unref(placeholders).passport.organ
|
|
42698
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
42666
42699
|
createVNode(_component_el_form_item, {
|
|
42667
42700
|
style: { "margin-top": "32px !important" },
|
|
42668
42701
|
label: "\u0414\u0430\u0442\u0430 \u0432\u044B\u0434\u0430\u0447\u0438 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
|
|
@@ -42670,7 +42703,7 @@ const _sfc_main$4 = {
|
|
|
42670
42703
|
default: withCtx(() => [
|
|
42671
42704
|
createVNode(_sfc_main$c, {
|
|
42672
42705
|
modelValue: unref(formClient).newBeneficiary.dates.passport,
|
|
42673
|
-
"onUpdate:modelValue": _cache[
|
|
42706
|
+
"onUpdate:modelValue": _cache[23] || (_cache[23] = ($event) => unref(formClient).newBeneficiary.dates.passport = $event)
|
|
42674
42707
|
}, null, 8, ["modelValue"])
|
|
42675
42708
|
]),
|
|
42676
42709
|
_: 1
|
|
@@ -42680,21 +42713,32 @@ const _sfc_main$4 = {
|
|
|
42680
42713
|
area: true,
|
|
42681
42714
|
label: "\u041C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
|
|
42682
42715
|
modelValue: unref(formClient).newBeneficiary.organ,
|
|
42683
|
-
"onUpdate:modelValue": _cache[
|
|
42684
|
-
|
|
42716
|
+
"onUpdate:modelValue": _cache[24] || (_cache[24] = ($event) => unref(formClient).newBeneficiary.organ = $event),
|
|
42717
|
+
placeholder: unref(placeholders).birthPlace
|
|
42718
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
42685
42719
|
createVNode(_sfc_main$f, {
|
|
42686
42720
|
class: "mt-32",
|
|
42687
42721
|
modelValue: unref(formClient).newBeneficiary.LAddress,
|
|
42688
|
-
"onUpdate:modelValue": _cache[
|
|
42722
|
+
"onUpdate:modelValue": _cache[25] || (_cache[25] = ($event) => unref(formClient).newBeneficiary.LAddress = $event),
|
|
42689
42723
|
area: true,
|
|
42690
|
-
placeholder:
|
|
42724
|
+
placeholder: unref(placeholders).address.registration,
|
|
42691
42725
|
label: "\u0410\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438"
|
|
42692
|
-
}, null, 8, ["modelValue"]),
|
|
42693
|
-
createVNode(
|
|
42726
|
+
}, null, 8, ["modelValue", "placeholder"]),
|
|
42727
|
+
withDirectives(createVNode(_sfc_main$f, {
|
|
42728
|
+
class: "mt-32",
|
|
42729
|
+
modelValue: unref(formClient).newBeneficiary.LAddress,
|
|
42730
|
+
"onUpdate:modelValue": _cache[26] || (_cache[26] = ($event) => unref(formClient).newBeneficiary.LAddress = $event),
|
|
42731
|
+
area: true,
|
|
42732
|
+
placeholder: unref(placeholders).address.actual,
|
|
42733
|
+
label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
|
|
42734
|
+
}, null, 8, ["modelValue", "placeholder"]), [
|
|
42735
|
+
[vShow, !unref(formClient).newBeneficiary.isSameAddress]
|
|
42736
|
+
]),
|
|
42737
|
+
createVNode(_sfc_main$e, {
|
|
42694
42738
|
class: "mt-32",
|
|
42695
42739
|
label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441 \u0441\u043E\u0432\u043F\u0430\u0434\u0430\u0435\u0442 \u0441 \u0430\u0434\u0440\u0435\u0441\u043E\u043C \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438",
|
|
42696
42740
|
modelValue: unref(formClient).newBeneficiary.isSameAddress,
|
|
42697
|
-
"onUpdate:modelValue": _cache[
|
|
42741
|
+
"onUpdate:modelValue": _cache[27] || (_cache[27] = ($event) => unref(formClient).newBeneficiary.isSameAddress = $event)
|
|
42698
42742
|
}, null, 8, ["modelValue"])
|
|
42699
42743
|
]),
|
|
42700
42744
|
_: 1
|
|
@@ -42707,21 +42751,21 @@ const _sfc_main$4 = {
|
|
|
42707
42751
|
}
|
|
42708
42752
|
};
|
|
42709
42753
|
var plQuestionnaire_vue_vue_type_style_index_0_lang = "";
|
|
42710
|
-
const _hoisted_1$
|
|
42711
|
-
const _hoisted_2$
|
|
42754
|
+
const _hoisted_1$4 = { class: "form-wrapper" };
|
|
42755
|
+
const _hoisted_2$3 = {
|
|
42712
42756
|
id: "pl-questionnaire",
|
|
42713
42757
|
class: "wrapper d-flex justify-content-between"
|
|
42714
42758
|
};
|
|
42715
|
-
const _hoisted_3$
|
|
42759
|
+
const _hoisted_3$3 = { class: "left d-flex flex-column gap-2" };
|
|
42716
42760
|
const _hoisted_4$2 = { class: "center d-flex flex-column gap-3" };
|
|
42717
42761
|
const _hoisted_5$1 = { class: "right" };
|
|
42718
|
-
const _sfc_main$
|
|
42762
|
+
const _sfc_main$4 = {
|
|
42719
42763
|
__name: "pl-questionnaire",
|
|
42720
42764
|
props: {
|
|
42721
42765
|
modelValue: { type: Object, required: true },
|
|
42722
42766
|
percent: {
|
|
42723
42767
|
type: Number,
|
|
42724
|
-
default:
|
|
42768
|
+
default: 26
|
|
42725
42769
|
}
|
|
42726
42770
|
},
|
|
42727
42771
|
emits: ["update:modelValue"],
|
|
@@ -42733,9 +42777,9 @@ const _sfc_main$3 = {
|
|
|
42733
42777
|
});
|
|
42734
42778
|
const selectTabs = ref("general");
|
|
42735
42779
|
return (_ctx, _cache) => {
|
|
42736
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
42737
|
-
createElementVNode("div", _hoisted_2$
|
|
42738
|
-
createElementVNode("div", _hoisted_3$
|
|
42780
|
+
return openBlock(), createElementBlock("div", _hoisted_1$4, [
|
|
42781
|
+
createElementVNode("div", _hoisted_2$3, [
|
|
42782
|
+
createElementVNode("div", _hoisted_3$3, [
|
|
42739
42783
|
createVNode(_sfc_main$k, {
|
|
42740
42784
|
selected: selectTabs.value,
|
|
42741
42785
|
"onUpdate:selected": _cache[0] || (_cache[0] = ($event) => selectTabs.value = $event)
|
|
@@ -42756,12 +42800,12 @@ const _sfc_main$3 = {
|
|
|
42756
42800
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => isRef(form2) ? form2.value = $event : form2 = $event),
|
|
42757
42801
|
percent: __props.percent
|
|
42758
42802
|
}, null, 8, ["newFounderTabs", "modelValue", "percent"])) : createCommentVNode("", true),
|
|
42759
|
-
selectTabs.value === "contact" ? (openBlock(), createBlock(_sfc_main$
|
|
42803
|
+
selectTabs.value === "contact" ? (openBlock(), createBlock(_sfc_main$7, {
|
|
42760
42804
|
key: 2,
|
|
42761
42805
|
modelValue: unref(form2),
|
|
42762
42806
|
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => isRef(form2) ? form2.value = $event : form2 = $event)
|
|
42763
42807
|
}, null, 8, ["modelValue"])) : createCommentVNode("", true),
|
|
42764
|
-
selectTabs.value === "additional" ? (openBlock(), createBlock(_sfc_main$
|
|
42808
|
+
selectTabs.value === "additional" ? (openBlock(), createBlock(_sfc_main$5, {
|
|
42765
42809
|
key: 3,
|
|
42766
42810
|
modelValue: unref(form2),
|
|
42767
42811
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => isRef(form2) ? form2.value = $event : form2 = $event)
|
|
@@ -42777,14 +42821,14 @@ const _sfc_main$3 = {
|
|
|
42777
42821
|
};
|
|
42778
42822
|
const PlQuestionnairePlugin = {
|
|
42779
42823
|
install(app) {
|
|
42780
|
-
app.component("PlQuestionnaire", _sfc_main$
|
|
42824
|
+
app.component("PlQuestionnaire", _sfc_main$4);
|
|
42781
42825
|
app.use(k);
|
|
42782
42826
|
}
|
|
42783
42827
|
};
|
|
42784
42828
|
var plStepper_vue_vue_type_style_index_0_lang = "";
|
|
42785
|
-
const _hoisted_1$
|
|
42786
|
-
const _hoisted_2$
|
|
42787
|
-
const _hoisted_3$
|
|
42829
|
+
const _hoisted_1$3 = { class: "stepper-container" };
|
|
42830
|
+
const _hoisted_2$2 = { class: "stepper-title__container" };
|
|
42831
|
+
const _hoisted_3$2 = {
|
|
42788
42832
|
key: 0,
|
|
42789
42833
|
class: "stepper-figure"
|
|
42790
42834
|
};
|
|
@@ -42843,7 +42887,7 @@ const _hoisted_35 = { class: "stepper-footer__count" };
|
|
|
42843
42887
|
const __default__$1 = {
|
|
42844
42888
|
name: "PlStepper"
|
|
42845
42889
|
};
|
|
42846
|
-
const _sfc_main$
|
|
42890
|
+
const _sfc_main$3 = /* @__PURE__ */ Object.assign(__default__$1, {
|
|
42847
42891
|
props: {
|
|
42848
42892
|
displayType: {
|
|
42849
42893
|
type: String,
|
|
@@ -42903,13 +42947,13 @@ const _sfc_main$2 = /* @__PURE__ */ Object.assign(__default__$1, {
|
|
|
42903
42947
|
const checkCurrentTariff = (tariff, currentTariff2) => tariff[props.stepName] === currentTariff2[props.stepName];
|
|
42904
42948
|
return (_ctx, _cache) => {
|
|
42905
42949
|
return openBlock(), createElementBlock("div", null, [
|
|
42906
|
-
createElementVNode("div", _hoisted_1$
|
|
42950
|
+
createElementVNode("div", _hoisted_1$3, [
|
|
42907
42951
|
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(tariffsForStepper), (item, index) => {
|
|
42908
42952
|
return openBlock(), createElementBlock("div", {
|
|
42909
42953
|
class: "stepper-item",
|
|
42910
42954
|
key: item[__props.stepName]
|
|
42911
42955
|
}, [
|
|
42912
|
-
createElementVNode("div", _hoisted_2$
|
|
42956
|
+
createElementVNode("div", _hoisted_2$2, [
|
|
42913
42957
|
createElementVNode("div", {
|
|
42914
42958
|
class: normalizeClass(["stepper-title", {
|
|
42915
42959
|
"stepper-title_centered": getTariffsOnCenter(index),
|
|
@@ -42918,7 +42962,7 @@ const _sfc_main$2 = /* @__PURE__ */ Object.assign(__default__$1, {
|
|
|
42918
42962
|
}])
|
|
42919
42963
|
}, toDisplayString(item[__props.stepName]), 3)
|
|
42920
42964
|
]),
|
|
42921
|
-
__props.currentCount > item[__props.stepCountName] && !checkCurrentTariff(item, unref(currentTariff)) ? (openBlock(), createElementBlock("div", _hoisted_3$
|
|
42965
|
+
__props.currentCount > item[__props.stepCountName] && !checkCurrentTariff(item, unref(currentTariff)) ? (openBlock(), createElementBlock("div", _hoisted_3$2, _hoisted_6)) : (openBlock(), createElementBlock("div", _hoisted_7, [
|
|
42922
42966
|
createElementVNode("div", {
|
|
42923
42967
|
class: normalizeClass(["stepper-figure__circle", {
|
|
42924
42968
|
"stepper-figure__circle_checked": checkCurrentTariff(item, unref(currentTariff))
|
|
@@ -43006,18 +43050,18 @@ const _sfc_main$2 = /* @__PURE__ */ Object.assign(__default__$1, {
|
|
|
43006
43050
|
});
|
|
43007
43051
|
const PlStepperPlugin = {
|
|
43008
43052
|
install(app) {
|
|
43009
|
-
app.component("PlStepper", _sfc_main$
|
|
43053
|
+
app.component("PlStepper", _sfc_main$3);
|
|
43010
43054
|
}
|
|
43011
43055
|
};
|
|
43012
43056
|
var plGroupTable_vue_vue_type_style_index_0_lang = "";
|
|
43013
|
-
const _hoisted_1$
|
|
43057
|
+
const _hoisted_1$2 = {
|
|
43014
43058
|
key: 0,
|
|
43015
43059
|
class: "groupLabel__subLabelsList"
|
|
43016
43060
|
};
|
|
43017
43061
|
const __default__ = {
|
|
43018
43062
|
name: "PlGroupTable"
|
|
43019
43063
|
};
|
|
43020
|
-
const _sfc_main$
|
|
43064
|
+
const _sfc_main$2 = /* @__PURE__ */ Object.assign(__default__, {
|
|
43021
43065
|
props: {
|
|
43022
43066
|
showPopover: {
|
|
43023
43067
|
type: Boolean,
|
|
@@ -43708,7 +43752,7 @@ const _sfc_main$1 = /* @__PURE__ */ Object.assign(__default__, {
|
|
|
43708
43752
|
renderSlot(_ctx.$slots, [unref(groupLabelProp), getKeyOfGroup(row)].join("-"), {}, () => [
|
|
43709
43753
|
createElementVNode("p", null, toDisplayString(getGroupLabel(row)), 1)
|
|
43710
43754
|
]),
|
|
43711
|
-
row[unref(groupItemsProp)] ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
43755
|
+
row[unref(groupItemsProp)] ? (openBlock(), createElementBlock("div", _hoisted_1$2, [
|
|
43712
43756
|
renderSlot(_ctx.$slots, [unref(groupSubLabelProp), getKeyOfGroup(row)].join("-"))
|
|
43713
43757
|
])) : createCommentVNode("", true)
|
|
43714
43758
|
]),
|
|
@@ -43751,12 +43795,148 @@ const _sfc_main$1 = /* @__PURE__ */ Object.assign(__default__, {
|
|
|
43751
43795
|
});
|
|
43752
43796
|
const PlGroupTablePlugin = {
|
|
43753
43797
|
install(app) {
|
|
43754
|
-
app.component("PlGroupTable", _sfc_main$
|
|
43798
|
+
app.component("PlGroupTable", _sfc_main$2);
|
|
43799
|
+
}
|
|
43800
|
+
};
|
|
43801
|
+
var _imports_0$1 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTEuNDY4NyA5LjQ2OTY3QzExLjc2MTYgOS4xNzY3OCAxMi4yMzY0IDkuMTc2NzggMTIuNTI5MyA5LjQ2OTY3TDE2LjUyOTMgMTMuNDY5N0MxNi44MjIyIDEzLjc2MjYgMTYuODIyMiAxNC4yMzc0IDE2LjUyOTMgMTQuNTMwM0MxNi4yMzY0IDE0LjgyMzIgMTUuNzYxNiAxNC44MjMyIDE1LjQ2ODcgMTQuNTMwM0wxMS45OTkgMTEuMDYwN0w4LjUyOTMyIDE0LjUzMDNDOC4yMzY0MyAxNC44MjMyIDcuNzYxNTYgMTQuODIzMiA3LjQ2ODY2IDE0LjUzMDNDNy4xNzU3NyAxNC4yMzc0IDcuMTc1NzcgMTMuNzYyNiA3LjQ2ODY2IDEzLjQ2OTdMMTEuNDY4NyA5LjQ2OTY3WiIgZmlsbD0iIzY1NjU2NyIvPg0KPC9zdmc+DQo=";
|
|
43802
|
+
var plSelect_vue_vue_type_style_index_0_lang = "";
|
|
43803
|
+
const _hoisted_1$1 = { id: "form-select" };
|
|
43804
|
+
const _hoisted_2$1 = { class: "flex item-select" };
|
|
43805
|
+
const _hoisted_3$1 = {
|
|
43806
|
+
key: 0,
|
|
43807
|
+
src: _imports_1$2
|
|
43808
|
+
};
|
|
43809
|
+
const _sfc_main$1 = {
|
|
43810
|
+
__name: "pl-select",
|
|
43811
|
+
props: {
|
|
43812
|
+
placeholder: {
|
|
43813
|
+
type: String,
|
|
43814
|
+
default: ""
|
|
43815
|
+
},
|
|
43816
|
+
rules: {
|
|
43817
|
+
type: Object,
|
|
43818
|
+
default: function() {
|
|
43819
|
+
return {};
|
|
43820
|
+
}
|
|
43821
|
+
},
|
|
43822
|
+
prop: {
|
|
43823
|
+
type: String,
|
|
43824
|
+
default: "name"
|
|
43825
|
+
},
|
|
43826
|
+
isError: {
|
|
43827
|
+
type: Boolean,
|
|
43828
|
+
default: false
|
|
43829
|
+
},
|
|
43830
|
+
label: {
|
|
43831
|
+
type: String,
|
|
43832
|
+
default: ""
|
|
43833
|
+
},
|
|
43834
|
+
modelValue: {
|
|
43835
|
+
type: String,
|
|
43836
|
+
required: true
|
|
43837
|
+
},
|
|
43838
|
+
options: {
|
|
43839
|
+
type: Object,
|
|
43840
|
+
required: true
|
|
43841
|
+
},
|
|
43842
|
+
checked: {
|
|
43843
|
+
type: Boolean,
|
|
43844
|
+
default: true
|
|
43845
|
+
}
|
|
43846
|
+
},
|
|
43847
|
+
emits: ["update:modelValue", "validate"],
|
|
43848
|
+
setup(__props, { emit: emit2 }) {
|
|
43849
|
+
const props = __props;
|
|
43850
|
+
const selected = ref(false);
|
|
43851
|
+
const formSelect = ref();
|
|
43852
|
+
let select2 = ref("");
|
|
43853
|
+
select2.value = props.modelValue;
|
|
43854
|
+
let { modelValue: validateValue } = toRefs(props);
|
|
43855
|
+
const ruleForm = ref({
|
|
43856
|
+
[props.prop]: validateValue
|
|
43857
|
+
});
|
|
43858
|
+
const validateInp = (prop, isValid2, message2) => {
|
|
43859
|
+
emit2("validate", prop, isValid2, message2);
|
|
43860
|
+
};
|
|
43861
|
+
const blurSelect = async () => {
|
|
43862
|
+
selected.value = false;
|
|
43863
|
+
setTimeout(() => {
|
|
43864
|
+
formSelect.value.validate(() => {
|
|
43865
|
+
});
|
|
43866
|
+
}, 200);
|
|
43867
|
+
};
|
|
43868
|
+
watch(select2, (value) => {
|
|
43869
|
+
selected.value = false;
|
|
43870
|
+
emit2("update:modelValue", value);
|
|
43871
|
+
});
|
|
43872
|
+
return (_ctx, _cache) => {
|
|
43873
|
+
const _component_el_option = ElOption;
|
|
43874
|
+
const _component_el_select = ElSelect;
|
|
43875
|
+
const _component_el_form_item = ElFormItem;
|
|
43876
|
+
const _component_el_form = ElForm;
|
|
43877
|
+
return openBlock(), createElementBlock("div", _hoisted_1$1, [
|
|
43878
|
+
createVNode(_component_el_form, {
|
|
43879
|
+
onValidate: validateInp,
|
|
43880
|
+
"label-position": "top",
|
|
43881
|
+
model: ruleForm.value,
|
|
43882
|
+
ref_key: "formSelect",
|
|
43883
|
+
ref: formSelect,
|
|
43884
|
+
rules: __props.rules
|
|
43885
|
+
}, {
|
|
43886
|
+
default: withCtx(() => [
|
|
43887
|
+
createVNode(_component_el_form_item, {
|
|
43888
|
+
label: __props.label,
|
|
43889
|
+
prop: __props.prop,
|
|
43890
|
+
class: normalizeClass({ "is-error": __props.isError }),
|
|
43891
|
+
"show-message": true
|
|
43892
|
+
}, {
|
|
43893
|
+
default: withCtx(() => [
|
|
43894
|
+
createElementVNode("img", {
|
|
43895
|
+
class: normalizeClass(["form-select__arrow", { rotate: selected.value }]),
|
|
43896
|
+
src: _imports_0$1,
|
|
43897
|
+
alt: "arrow"
|
|
43898
|
+
}, null, 2),
|
|
43899
|
+
createVNode(_component_el_select, {
|
|
43900
|
+
"popper-class": [{ checked: __props.checked }, "selectBox"],
|
|
43901
|
+
modelValue: unref(select2),
|
|
43902
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(select2) ? select2.value = $event : select2 = $event),
|
|
43903
|
+
placeholder: __props.placeholder,
|
|
43904
|
+
onFocus: _cache[1] || (_cache[1] = ($event) => selected.value = true),
|
|
43905
|
+
onBlur: blurSelect
|
|
43906
|
+
}, {
|
|
43907
|
+
default: withCtx(() => [
|
|
43908
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.options, (item) => {
|
|
43909
|
+
return openBlock(), createBlock(_component_el_option, {
|
|
43910
|
+
class: "pl-form-option",
|
|
43911
|
+
key: item.value,
|
|
43912
|
+
label: item.label,
|
|
43913
|
+
value: item.value
|
|
43914
|
+
}, {
|
|
43915
|
+
default: withCtx(() => [
|
|
43916
|
+
createElementVNode("div", _hoisted_2$1, [
|
|
43917
|
+
createTextVNode(toDisplayString(item.label) + " ", 1),
|
|
43918
|
+
item.value === unref(select2) ? (openBlock(), createElementBlock("img", _hoisted_3$1)) : createCommentVNode("", true)
|
|
43919
|
+
])
|
|
43920
|
+
]),
|
|
43921
|
+
_: 2
|
|
43922
|
+
}, 1032, ["label", "value"]);
|
|
43923
|
+
}), 128))
|
|
43924
|
+
]),
|
|
43925
|
+
_: 1
|
|
43926
|
+
}, 8, ["popper-class", "modelValue", "placeholder"])
|
|
43927
|
+
]),
|
|
43928
|
+
_: 1
|
|
43929
|
+
}, 8, ["label", "prop", "class"])
|
|
43930
|
+
]),
|
|
43931
|
+
_: 1
|
|
43932
|
+
}, 8, ["model", "rules"])
|
|
43933
|
+
]);
|
|
43934
|
+
};
|
|
43755
43935
|
}
|
|
43756
43936
|
};
|
|
43757
43937
|
const PlSelectPlugin = {
|
|
43758
43938
|
install(app) {
|
|
43759
|
-
app.component("PlSelect", _sfc_main$
|
|
43939
|
+
app.component("PlSelect", _sfc_main$1);
|
|
43760
43940
|
}
|
|
43761
43941
|
};
|
|
43762
43942
|
const PlDatePickerPlusPlugin = {
|
|
@@ -43877,4 +44057,4 @@ const PlPlugin = {
|
|
|
43877
44057
|
apiJs: ApiJs,
|
|
43878
44058
|
loader: loadingAndSetup
|
|
43879
44059
|
};
|
|
43880
|
-
export { PlButton, PlButtonPlugin, _sfc_main as PlCard, PlCardPlugin, _sfc_main$q as PlCertDialog, PlCertDialogPlugin, _sfc_main$z as PlCurrency, PlCurrencyPlugin, _sfc_main$r as PlDatePicker, PlDatePickerPlugin, _sfc_main$c as PlDatePickerPlus, PlDatePickerPlusPlugin, _sfc_main$s as PlDatePickerRange, _sfc_main$y as PlForm, PlFormItem, PlFormItemPlugin, PlFormPlugin, _sfc_main$x as PlInput, _sfc_main$w as PlInputNative, PlInputNativePlugin, PlInputPlugin, _sfc_main$
|
|
44060
|
+
export { PlButton, PlButtonPlugin, _sfc_main as PlCard, PlCardPlugin, _sfc_main$q as PlCertDialog, PlCertDialogPlugin, _sfc_main$z as PlCurrency, PlCurrencyPlugin, _sfc_main$r as PlDatePicker, PlDatePickerPlugin, _sfc_main$c as PlDatePickerPlus, PlDatePickerPlusPlugin, _sfc_main$s as PlDatePickerRange, _sfc_main$y as PlForm, PlFormItem, PlFormItemPlugin, PlFormPlugin, _sfc_main$x as PlInput, _sfc_main$w as PlInputNative, PlInputNativePlugin, PlInputPlugin, _sfc_main$3 as PlStepper, PlStepperPlugin, _sfc_main$p as PlTable, _sfc_main$o as PlTableColumn, PlTablePlugin, _sfc_main$n as PlUpload, PlUploadPlugin, _sfc_main$u as TestViteNpmComponent, TestViteNpmComponentPlugin, PlPlugin as default };
|