hl-core 0.0.9-beta.42-test → 0.0.9-beta.44
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<section :class="[$styles.blueBgLight, $styles.rounded]" class="mt-[14px] p-4 flex flex-col gap-[1px]">
|
|
3
|
-
<h2 :class="[$styles.textTitle]" class="font-medium text-center w-full mb-4">
|
|
3
|
+
<h2 v-if="title && typeof title === 'string'" :class="[$styles.textTitle]" class="font-medium text-center w-full mb-4">
|
|
4
4
|
{{ title }}
|
|
5
5
|
<slot name="icon"></slot>
|
|
6
6
|
</h2>
|
|
@@ -13,8 +13,8 @@ export default defineComponent({
|
|
|
13
13
|
props: {
|
|
14
14
|
title: {
|
|
15
15
|
type: String,
|
|
16
|
-
default: '
|
|
17
|
-
required:
|
|
16
|
+
default: '',
|
|
17
|
+
required: false,
|
|
18
18
|
},
|
|
19
19
|
},
|
|
20
20
|
});
|
package/locales/ru.json
CHANGED
|
@@ -709,7 +709,6 @@
|
|
|
709
709
|
"welcome": "Добро пожаловать",
|
|
710
710
|
"information": "Дополнительные данные",
|
|
711
711
|
"policyNumber": "Номер полиса",
|
|
712
|
-
"policyStartDate": "Начало полиса",
|
|
713
712
|
"statusCode": "Статус заявки",
|
|
714
713
|
"initiator": "Инициатор",
|
|
715
714
|
"iin&bin": "ИИН/БИН",
|
|
@@ -729,7 +728,7 @@
|
|
|
729
728
|
"premiumWithLoad": "Страховая премия за факт период (с нагрузкой)",
|
|
730
729
|
"premiumWithoutLoad": "Страховая премия за факт период (без нагрузки)",
|
|
731
730
|
"policyStartDate": "Дата начала действия полиса",
|
|
732
|
-
"policyEndDate": "Дата окончания действия полиса"
|
|
731
|
+
"policyEndDate": "Дата окончания действия полиса"
|
|
733
732
|
},
|
|
734
733
|
"placeholders": {
|
|
735
734
|
"login": "Логин",
|
package/package.json
CHANGED
package/store/data.store.ts
CHANGED
|
@@ -3148,6 +3148,7 @@ export const useDataStore = defineStore('data', {
|
|
|
3148
3148
|
delete policyholder.clientData.identityDocument;
|
|
3149
3149
|
delete policyholder.clientData.authoritedPerson.identityDocument;
|
|
3150
3150
|
delete policyholder.clientData.activityTypes;
|
|
3151
|
+
delete policyholder.clientData.citizenship;
|
|
3151
3152
|
if (!policyholder.clientData.iin) return false;
|
|
3152
3153
|
try {
|
|
3153
3154
|
const response = await this.api.startApplication(policyholder);
|