hl-core 0.0.10-beta.41-2 → 0.0.10-beta.41-3
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/api/base.api.ts +1 -1
- package/components/Form/FormBlock.vue +1 -1
- package/components/Form/ManagerAttachment.vue +1 -1
- package/components/Input/PanelInput.vue +1 -1
- package/components/Layout/Header.vue +1 -1
- package/components/Menu/InfoMenu.vue +1 -1
- package/components/Menu/MenuHover.vue +1 -1
- package/components/Menu/MenuNav.vue +1 -1
- package/components/Menu/MenuNavItem.vue +1 -1
- package/components/Pages/Anketa.vue +1 -1
- package/components/Pages/ContragentForm.vue +1 -1
- package/components/Pages/Documents.vue +2 -2
- package/components/Pages/MemberForm.vue +1 -1
- package/components/Pages/ProductConditions.vue +2 -5
- package/components/Panel/PanelHandler.vue +1 -1
- package/composables/classes.ts +1836 -0
- package/composables/index.ts +26 -1861
- package/layouts/default.vue +1 -1
- package/package.json +1 -1
- package/store/data.store.ts +1 -1
- package/store/form.store.ts +1 -1
- package/store/member.store.ts +1 -1
- package/types/index.ts +2 -2
package/api/base.api.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { MemberCodes, Methods } from '../types/enum';
|
|
2
2
|
import { useAxiosInstance } from '../composables/axios';
|
|
3
|
-
import { Value, IDocument } from '../composables';
|
|
3
|
+
import { Value, IDocument } from '../composables/classes';
|
|
4
4
|
import type * as Types from '../types';
|
|
5
5
|
|
|
6
6
|
export class ApiClass {
|
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
</template>
|
|
237
237
|
|
|
238
238
|
<script lang="ts">
|
|
239
|
-
import { Value } from '../../composables';
|
|
239
|
+
import { Value } from '../../composables/classes';
|
|
240
240
|
import type { AnketaBody, AnketaSecond, AnswerName } from '../../types';
|
|
241
241
|
|
|
242
242
|
export default defineComponent({
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
|
|
289
289
|
<script lang="ts">
|
|
290
290
|
import { StoreMembers } from '../../types/enum';
|
|
291
|
-
import { Member, Value } from '../../composables';
|
|
291
|
+
import { Member, Value } from '../../composables/classes';
|
|
292
292
|
import type { ESBDValidationType } from '../../types';
|
|
293
293
|
|
|
294
294
|
export default defineComponent({
|
|
@@ -263,8 +263,8 @@
|
|
|
263
263
|
</template>
|
|
264
264
|
|
|
265
265
|
<script lang="ts">
|
|
266
|
-
import { DocumentItem, Value } from '../../composables';
|
|
267
|
-
import type { IDocument, Member } from '../../composables';
|
|
266
|
+
import { DocumentItem, Value } from '../../composables/classes';
|
|
267
|
+
import type { IDocument, Member } from '../../composables/classes';
|
|
268
268
|
import { uuid } from 'vue-uuid';
|
|
269
269
|
import type { Base, FileActions } from '../../types';
|
|
270
270
|
|
|
@@ -813,7 +813,7 @@
|
|
|
813
813
|
</template>
|
|
814
814
|
|
|
815
815
|
<script lang="ts">
|
|
816
|
-
import { Value, DocumentItem, Member } from '../../composables';
|
|
816
|
+
import { Value, DocumentItem, Member } from '../../composables/classes';
|
|
817
817
|
import { uuid } from 'vue-uuid';
|
|
818
818
|
import { StoreMembers, CoreEnums } from '../../types/enum';
|
|
819
819
|
import type { Api, ContragentType, Dicts, ESBDValidationType, FileActions, MultipleMember } from '../../types';
|
|
@@ -55,10 +55,7 @@
|
|
|
55
55
|
<base-form-input v-model="insured.gender.nameRu" class="mb-4" :label="$dataStore.t('form.gender')" :readonly="true" />
|
|
56
56
|
</div>
|
|
57
57
|
</base-form-section>
|
|
58
|
-
<base-form-section
|
|
59
|
-
v-if="isUnderwriterRole && whichProduct !== 'pensionannuitynew' && whichProduct !== 'balam' && whichProduct !== 'tumar'"
|
|
60
|
-
:title="$dataStore.t('recalculationInfo')"
|
|
61
|
-
>
|
|
58
|
+
<base-form-section v-if="isUnderwriterRole && whichProduct !== 'pensionannuitynew' && whichProduct !== 'balam' && whichProduct !== 'tumar'" :title="$dataStore.t('recalculationInfo')">
|
|
62
59
|
<base-form-input
|
|
63
60
|
v-model="productConditionsForm.lifeMultiply"
|
|
64
61
|
:maska="$maska.numbers"
|
|
@@ -868,7 +865,7 @@
|
|
|
868
865
|
</template>
|
|
869
866
|
|
|
870
867
|
<script lang="ts">
|
|
871
|
-
import { Member, Value, CountryValue, CalculatorForm, TransferContract } from '../../composables';
|
|
868
|
+
import { Member, Value, CountryValue, CalculatorForm, TransferContract } from '../../composables/classes';
|
|
872
869
|
import type { Projects, AddCover, AddCoverAnswer } from '../../types';
|
|
873
870
|
|
|
874
871
|
type PensionCalculation = {
|
|
@@ -250,7 +250,7 @@
|
|
|
250
250
|
</template>
|
|
251
251
|
|
|
252
252
|
<script lang="ts">
|
|
253
|
-
import { DocumentItem, Value } from '../../composables';
|
|
253
|
+
import { DocumentItem, Value } from '../../composables/classes';
|
|
254
254
|
import { HubConnectionBuilder } from '@microsoft/signalr';
|
|
255
255
|
import { uuid } from 'vue-uuid';
|
|
256
256
|
import type * as Types from '../../types';
|