sprof 0.1.0
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/README.md +29 -0
- package/package.json +101 -0
- package/src/Hooks/Hooks.ts +75 -0
- package/src/assets/img/avatar.webp +0 -0
- package/src/assets/styles/borders.scss +11 -0
- package/src/assets/styles/brandbook.css +227 -0
- package/src/assets/styles/colors.scss +42 -0
- package/src/assets/styles/fonts.scss +15 -0
- package/src/assets/styles/index.css +15 -0
- package/src/assets/styles/index.scss +45 -0
- package/src/assets/styles/platform/android.css +53 -0
- package/src/assets/styles/platform/ios.css +53 -0
- package/src/assets/styles/platform/webdesktop.css +72 -0
- package/src/assets/styles/platform/webdesktop_old.css +65 -0
- package/src/assets/styles/platform/webmobile.css +53 -0
- package/src/assets/styles/platform/webtablet.css +53 -0
- package/src/assets/styles/reset.scss +28 -0
- package/src/assets/styles/shadow.scss +6 -0
- package/src/assets/styles/theme/aquaBlueLight.css +162 -0
- package/src/assets/styles/theme/blueLight.css +187 -0
- package/src/assets/styles/theme/blueLight_test.css +162 -0
- package/src/assets/styles/theme/dark.css +286 -0
- package/src/assets/styles/theme/light.css +151 -0
- package/src/assets/svg/ArrowLeft.svg +5 -0
- package/src/assets/svg/ArrowRight.svg +5 -0
- package/src/assets/svg/Close.svg +7 -0
- package/src/assets/svg/DoubleArrowLeft.svg +5 -0
- package/src/assets/svg/DoubleArrowRight.svg +5 -0
- package/src/assets/svg/Ellipsis.svg +7 -0
- package/src/assets/svg/Filter.svg +10 -0
- package/src/assets/svg/Menu.svg +5 -0
- package/src/assets/svg/Move.svg +5 -0
- package/src/assets/svg/Password.svg +5 -0
- package/src/assets/svg/RightMenu.svg +5 -0
- package/src/assets/svg/Settings.svg +6 -0
- package/src/assets/svg/User.svg +6 -0
- package/src/buildLibrary.ts +59 -0
- package/src/classes/Auth.ts +63 -0
- package/src/classes/AuthButton.ts +64 -0
- package/src/classes/AuthForm.ts +114 -0
- package/src/classes/AuthModal.ts +32 -0
- package/src/classes/AuthStatusesObjects.ts +37 -0
- package/src/classes/AuthTokens.ts +43 -0
- package/src/classes/AuthUser.ts +53 -0
- package/src/classes/CallbackRequest.ts +12 -0
- package/src/classes/Chat.ts +18 -0
- package/src/classes/ChatMessage.ts +48 -0
- package/src/classes/Contact.ts +96 -0
- package/src/classes/Cropper.ts +22 -0
- package/src/classes/DateHelper.ts +29 -0
- package/src/classes/Email.ts +18 -0
- package/src/classes/EmailField.ts +42 -0
- package/src/classes/EmailRules.ts +4 -0
- package/src/classes/FTSPPreset.ts +16 -0
- package/src/classes/FileInfo.ts +86 -0
- package/src/classes/HttpResponse.ts +22 -0
- package/src/classes/Human.ts +106 -0
- package/src/classes/LabelValue.ts +11 -0
- package/src/classes/LocalStore.ts +22 -0
- package/src/classes/M2M.ts +25 -0
- package/src/classes/Menu.ts +102 -0
- package/src/classes/PageSectionImage.ts +19 -0
- package/src/classes/PasswordField.ts +39 -0
- package/src/classes/PasswordRepeatField.ts +37 -0
- package/src/classes/Phone.ts +17 -0
- package/src/classes/PostAddress.ts +11 -0
- package/src/classes/PostAddressRules.ts +1 -0
- package/src/classes/Role.ts +13 -0
- package/src/classes/Schema.ts +13 -0
- package/src/classes/SchemaField.ts +10 -0
- package/src/classes/SearchElement.ts +18 -0
- package/src/classes/SearchElementMeta.ts +10 -0
- package/src/classes/SearchGroup.ts +25 -0
- package/src/classes/SearchGroupMetaColumn.ts +11 -0
- package/src/classes/SearchModel.ts +61 -0
- package/src/classes/SortModel.ts +57 -0
- package/src/classes/SubMenu.ts +56 -0
- package/src/classes/TelephoneNumberRules.ts +9 -0
- package/src/classes/User.ts +17 -0
- package/src/classes/UserAccount.ts +17 -0
- package/src/classes/UserService.ts +20 -0
- package/src/classes/ValidationRules.ts +15 -0
- package/src/classes/ValueType.ts +69 -0
- package/src/classes/Website.ts +11 -0
- package/src/classes/WebsiteRules.ts +4 -0
- package/src/classes/admin/AdminButtonParams.ts +27 -0
- package/src/classes/admin/AdminHeaderParams.ts +34 -0
- package/src/classes/calendar/Calendar.ts +168 -0
- package/src/classes/calendar/Day.ts +15 -0
- package/src/classes/calendar/Month.ts +144 -0
- package/src/classes/calendar/Week.ts +44 -0
- package/src/classes/calendar/Year.ts +130 -0
- package/src/classes/filters/Cursor.ts +43 -0
- package/src/classes/filters/FTSP.ts +99 -0
- package/src/classes/filters/FilterModel.ts +263 -0
- package/src/classes/filters/FilterQuery.ts +187 -0
- package/src/classes/filters/OperatorsOptions.ts +8 -0
- package/src/classes/filters/OperatorsTextOptions.ts +3 -0
- package/src/classes/filters/Pagination.ts +78 -0
- package/src/classes/filters/SelectFilter.ts +15 -0
- package/src/classes/filters/TreeModel.ts +14 -0
- package/src/classes/page/CustomSection.ts +24 -0
- package/src/classes/page/Page.ts +160 -0
- package/src/classes/page/PageDocument.ts +27 -0
- package/src/classes/page/PageImage.ts +15 -0
- package/src/classes/page/PageSection.ts +82 -0
- package/src/classes/page/PageSectionDocument.ts +56 -0
- package/src/classes/page/PageSideMenu.ts +74 -0
- package/src/components/AdaptiveContainer.vue +154 -0
- package/src/components/AdaptiveContainerHorizontal.vue +173 -0
- package/src/components/AdminGallery.vue +238 -0
- package/src/components/AuthModal.vue +16 -0
- package/src/components/CarouselImages.vue +434 -0
- package/src/components/ContactForm.vue +219 -0
- package/src/components/ContextWindow.vue +48 -0
- package/src/components/DateInputRange.vue +66 -0
- package/src/components/DateInputRange_v2.vue +25 -0
- package/src/components/DropList.vue +55 -0
- package/src/components/Edit.svg +10 -0
- package/src/components/EmailForm.vue +180 -0
- package/src/components/FTSPPanel.vue +379 -0
- package/src/components/FilterCheckbox.vue +73 -0
- package/src/components/FilterSelect.vue +104 -0
- package/src/components/FiltersButtonsSelect.vue +126 -0
- package/src/components/GeneralItem.vue +172 -0
- package/src/components/GridContainer.vue +66 -0
- package/src/components/Icons/Filter/IconDownload.vue +55 -0
- package/src/components/Icons/Filter/IconFilter.vue +55 -0
- package/src/components/Icons/IconArrowLeft.vue +36 -0
- package/src/components/Icons/IconCheckDefault.vue +41 -0
- package/src/components/Icons/IconClose.vue +37 -0
- package/src/components/Icons/IconEdit.vue +40 -0
- package/src/components/Icons/IconEmail.vue +36 -0
- package/src/components/Icons/IconMove.vue +53 -0
- package/src/components/Icons/IconPhone.vue +36 -0
- package/src/components/Icons/IconSearch.vue +47 -0
- package/src/components/Icons/IconSelectArrow.vue +41 -0
- package/src/components/Icons/Pagination/ArrowLeft.vue +52 -0
- package/src/components/Icons/Pagination/ArrowRight.vue +52 -0
- package/src/components/Icons/Pagination/DoubleArrowLeft.vue +52 -0
- package/src/components/Icons/Pagination/DoubleArrowRight.vue +52 -0
- package/src/components/Icons/Pagination/EllipsisSvg.vue +58 -0
- package/src/components/ImageCropper.vue +203 -0
- package/src/components/InfoItem.vue +294 -0
- package/src/components/InfoItemSelectButtons.vue +43 -0
- package/src/components/LeftRightContainer.vue +93 -0
- package/src/components/MessageBody.vue +45 -0
- package/src/components/PAutocomplete.vue +93 -0
- package/src/components/PDialog.vue +77 -0
- package/src/components/PLoader.vue +68 -0
- package/src/components/PNotification.vue +79 -0
- package/src/components/PPagination.vue +174 -0
- package/src/components/PhoneForm.vue +180 -0
- package/src/components/RSContainer.vue +262 -0
- package/src/components/RemoteSearch.vue +156 -0
- package/src/components/ResearcheContainer.vue +71 -0
- package/src/components/RightSliderContainer.vue +181 -0
- package/src/components/RightTabsContainer.vue +210 -0
- package/src/components/SelectValueType.vue +39 -0
- package/src/components/SingleNameToggleForm.vue +399 -0
- package/src/components/SortList.vue +101 -0
- package/src/components/SortSelect.vue +93 -0
- package/src/components/SvgIcon.vue +25 -0
- package/src/components/Switch3Pos.vue +173 -0
- package/src/components/ThemeWrapper.vue +19 -0
- package/src/components/ToggleInfoItem.vue +296 -0
- package/src/components/TopSliderContainer.vue +166 -0
- package/src/components/UploaderImage.vue +268 -0
- package/src/components/atoms/PButton/PButton.stories.ts +44 -0
- package/src/components/atoms/PButton/PButton.test.ts +66 -0
- package/src/components/atoms/PButton/PButton.vue +54 -0
- package/src/components/atoms/PButton/skins/p-button_base.css +131 -0
- package/src/components/atoms/PButton/skins/p-button_filter.scss +83 -0
- package/src/components/atoms/PButton/skins/p-button_icon.scss +78 -0
- package/src/components/atoms/PButton/skins/p-button_pag.css +44 -0
- package/src/components/atoms/PButton/skins/p-button_text.css +88 -0
- package/src/components/atoms/PButton/skins/p-button_text_ano.css +88 -0
- package/src/components/atoms/PCheckbox/PCheckBox.test.ts +107 -0
- package/src/components/atoms/PCheckbox/PCheckBox.vue +92 -0
- package/src/components/atoms/PDatePicker/PDatePicker.test.ts +63 -0
- package/src/components/atoms/PDatePicker/PDatePicker.vue +141 -0
- package/src/components/atoms/PFlex/PFlex.test.ts +41 -0
- package/src/components/atoms/PFlex/PFlex.vue +46 -0
- package/src/components/atoms/PInput/PInput.stories.ts +40 -0
- package/src/components/atoms/PInput/PInput.test.ts +92 -0
- package/src/components/atoms/PInput/PInput.vue +133 -0
- package/src/components/atoms/PInputDate/PInputDate.test.ts +55 -0
- package/src/components/atoms/PInputDate/PInputDate.vue +79 -0
- package/src/components/atoms/PInputNumber/PInputNumber.vue +175 -0
- package/src/components/atoms/PLeftSlider/PLeftSlider.test.ts +121 -0
- package/src/components/atoms/PLeftSlider/PLeftSlider.vue +139 -0
- package/src/components/atoms/PList/PList.test.ts +32 -0
- package/src/components/atoms/PList/PList.vue +27 -0
- package/src/components/atoms/PListItem/PListItem.test.ts +61 -0
- package/src/components/atoms/PListItem/PListItem.vue +51 -0
- package/src/components/atoms/PRadio/PRadio.test.ts +110 -0
- package/src/components/atoms/PRadio/PRadio.vue +97 -0
- package/src/components/atoms/PRightSlider/PRightSlider.test.ts +123 -0
- package/src/components/atoms/PRightSlider/PRightSlider.vue +149 -0
- package/src/components/atoms/PSelect/PSelect.test.ts +74 -0
- package/src/components/atoms/PSelect/PSelect.vue +192 -0
- package/src/components/atoms/PSelect/select-arrow-down.svg +4 -0
- package/src/components/atoms/PSticky/PSticky.test.ts +70 -0
- package/src/components/atoms/PSticky/PSticky.vue +37 -0
- package/src/components/atoms/PString/PString.test.ts +58 -0
- package/src/components/atoms/PString/PString.vue +58 -0
- package/src/components/atoms/PTextarea/PTextarea.stories.ts +40 -0
- package/src/components/atoms/PTextarea/PTextarea.test.ts +22 -0
- package/src/components/atoms/PTextarea/PTextarea.vue +123 -0
- package/src/components/atoms/PTopSlider/PTopSlider.test.ts +95 -0
- package/src/components/atoms/PTopSlider/PTopSlider.vue +164 -0
- package/src/components/molecules/Collapse/CollapseContainer.vue +36 -0
- package/src/components/molecules/Collapse/CollapseItem.vue +295 -0
- package/src/components/molecules/Collapse/VerticalCollapseContainer.vue +102 -0
- package/src/components/molecules/PAdd/PAdd.vue +65 -0
- package/src/components/molecules/PAdd/PContainer.vue +65 -0
- package/src/components/molecules/PAdd/PContainerStickyHead.vue +51 -0
- package/src/components/molecules/PDel/PDel.vue +74 -0
- package/src/components/organisms/AuthForm.vue +219 -0
- package/src/components/organisms/PModal.vue +113 -0
- package/src/components/organisms/PTabs/ITab.ts +5 -0
- package/src/components/organisms/PTabs/PTabs.vue +190 -0
- package/src/components/organisms/UploaderFile/UploaderFile.test.ts +23 -0
- package/src/components/organisms/UploaderFile/UploaderFile.vue +202 -0
- package/src/components/pages/AuthPage.vue +22 -0
- package/src/components/pages/PageNotFound.vue +7 -0
- package/src/index.ts +206 -0
- package/src/interfaces/AdminLayout.ts +4 -0
- package/src/interfaces/Animations.ts +5 -0
- package/src/interfaces/AuthStatuses.ts +8 -0
- package/src/interfaces/CalendarScale.ts +6 -0
- package/src/interfaces/Callback.ts +2 -0
- package/src/interfaces/Class.ts +3 -0
- package/src/interfaces/DataTypes.ts +8 -0
- package/src/interfaces/Filter.ts +3 -0
- package/src/interfaces/IAdminMenu.ts +9 -0
- package/src/interfaces/IAuthInfo.ts +0 -0
- package/src/interfaces/ICursor.ts +14 -0
- package/src/interfaces/IEmailPassword.ts +4 -0
- package/src/interfaces/IFIlesList.ts +4 -0
- package/src/interfaces/IFile.ts +7 -0
- package/src/interfaces/IFileAnchor.ts +4 -0
- package/src/interfaces/IFileInfo.ts +22 -0
- package/src/interfaces/IFileInfosGetter.ts +5 -0
- package/src/interfaces/IFiler.ts +7 -0
- package/src/interfaces/IFilter.ts +4 -0
- package/src/interfaces/IFilterQuery.ts +24 -0
- package/src/interfaces/IForm.ts +5 -0
- package/src/interfaces/IHTTPTypes.ts +19 -0
- package/src/interfaces/IMessage.ts +5 -0
- package/src/interfaces/IOption.ts +4 -0
- package/src/interfaces/IOrdered.ts +4 -0
- package/src/interfaces/IPagination.ts +15 -0
- package/src/interfaces/ISearchElement.ts +6 -0
- package/src/interfaces/ISearchObject.ts +6 -0
- package/src/interfaces/ISearchQuery.ts +4 -0
- package/src/interfaces/ISelectFilter.ts +6 -0
- package/src/interfaces/ISortModel.ts +18 -0
- package/src/interfaces/IStorePaginator.ts +4 -0
- package/src/interfaces/ISupposedTimePeriod.ts +4 -0
- package/src/interfaces/ITimePeriod.ts +4 -0
- package/src/interfaces/ITokens.ts +4 -0
- package/src/interfaces/IWithId.ts +3 -0
- package/src/interfaces/IWithImage.ts +9 -0
- package/src/interfaces/IWithName.ts +4 -0
- package/src/interfaces/IWithSupposedTimePeriod.ts +4 -0
- package/src/interfaces/ItemsWithCount.ts +4 -0
- package/src/interfaces/LocalStoreKeys.ts +7 -0
- package/src/interfaces/Operators.ts +11 -0
- package/src/interfaces/Orders.ts +4 -0
- package/src/interfaces/RoleName.ts +4 -0
- package/src/interfaces/SocialTypes.ts +6 -0
- package/src/interfaces/Sort.ts +9 -0
- package/src/interfaces/ValueRelation.ts +7 -0
- package/src/interfaces/canvas/ICanvas.ts +3 -0
- package/src/interfaces/canvas/ICanvasResult.ts +7 -0
- package/src/interfaces/canvas/ICoordinates.ts +6 -0
- package/src/interfaces/types.ts +3 -0
- package/src/services/AdminHead.ts +32 -0
- package/src/services/AdminSideMenu.ts +52 -0
- package/src/services/AdminUI.ts +9 -0
- package/src/services/Arrays.ts +65 -0
- package/src/services/Axios.ts +64 -0
- package/src/services/BaseRoutes.ts +21 -0
- package/src/services/BaseStore.ts +220 -0
- package/src/services/Button.ts +42 -0
- package/src/services/Cache.ts +44 -0
- package/src/services/CacheS.ts +44 -0
- package/src/services/CarouselSwipe.ts +14 -0
- package/src/services/ClassHelper.ts +101 -0
- package/src/services/Color.ts +8 -0
- package/src/services/CreateSortModels.ts +26 -0
- package/src/services/Cursor.ts +51 -0
- package/src/services/DateFormat.ts +102 -0
- package/src/services/DateMask.ts +69 -0
- package/src/services/Dates.ts +41 -0
- package/src/services/DatesFormatter.ts +45 -0
- package/src/services/Dialog.ts +70 -0
- package/src/services/Dragger.ts +22 -0
- package/src/services/Extension.ts +6 -0
- package/src/services/Favourite.ts +62 -0
- package/src/services/HttpClient.ts +199 -0
- package/src/services/HttpClientS.ts +188 -0
- package/src/services/HttpError.ts +58 -0
- package/src/services/Loading.ts +14 -0
- package/src/services/MakeCarousel.ts +10 -0
- package/src/services/Menu.ts +102 -0
- package/src/services/Message.ts +66 -0
- package/src/services/Notification.ts +37 -0
- package/src/services/PHelp.ts +20 -0
- package/src/services/Paginator.ts +22 -0
- package/src/services/Period.ts +29 -0
- package/src/services/PhoneService.ts +46 -0
- package/src/services/Router.ts +85 -0
- package/src/services/RouterGuard.ts +15 -0
- package/src/services/Scheduler.ts +66 -0
- package/src/services/Scroll.ts +19 -0
- package/src/services/SortList.ts +44 -0
- package/src/services/Sorter.ts +6 -0
- package/src/services/Strings.test.ts +30 -0
- package/src/services/Strings.ts +138 -0
- package/src/services/Time.ts +124 -0
- package/src/services/Timer.ts +13 -0
- package/src/services/Token.ts +71 -0
- package/src/services/Visible.ts +16 -0
- package/src/services/WaitElement.ts +19 -0
- package/src/services/WebSocketClient.ts +62 -0
- package/src/services/brandColors.ts +5 -0
- package/src/services/buildNameNumbers.ts +8 -0
- package/src/services/countRating.ts +12 -0
- package/src/services/index.ts +105 -0
- package/src/services/indexNames.ts +55 -0
- package/src/services/moves.ts +17 -0
- package/src/services/useConfirmLeavePage.ts +52 -0
- package/src/services/validate.ts +22 -0
- package/src/store/AuthStore.ts +58 -0
- package/src/store/ContactsStore.ts +11 -0
- package/src/store/CropperStore.ts +20 -0
- package/src/store/EmailsStore.ts +11 -0
- package/src/store/FTSPPresetsStore.ts +11 -0
- package/src/store/FileInfosStore.ts +11 -0
- package/src/store/HumansStore.ts +11 -0
- package/src/store/MenusStore.ts +11 -0
- package/src/store/PhonesStore.ts +11 -0
- package/src/store/SchemasStore.ts +11 -0
- package/src/store/SearchStore.ts +65 -0
- package/src/store/ServicesStores.ts +29 -0
- package/src/store/ServicesStoresNames.ts +17 -0
- package/src/store/UserAccountsStore.ts +11 -0
- package/src/store/ValueTypesStore.ts +11 -0
- package/src/tsconfig.build-lib.json +30 -0
- package/src/types/AuthInfo.ts +6 -0
- package/src/types/HttpHeaders.ts +12 -0
- package/src/types/HttpMethods.ts +6 -0
- package/src/types/Sizes.ts +7 -0
- package/src/types/Statuses.ts +9 -0
- package/src/types/ValueTypes.ts +16 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="date-range">
|
|
3
|
+
<PInputDate v-model:model-value="startDate" @change="setStart" />
|
|
4
|
+
-
|
|
5
|
+
<PInputDate v-model:model-value="endDate" @change="setEnd" />
|
|
6
|
+
</div>
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
<script setup lang="ts">
|
|
10
|
+
const props = defineProps({
|
|
11
|
+
start: {
|
|
12
|
+
type: Date,
|
|
13
|
+
default: undefined,
|
|
14
|
+
},
|
|
15
|
+
end: {
|
|
16
|
+
type: Date,
|
|
17
|
+
default: undefined,
|
|
18
|
+
},
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
const emits = defineEmits(['update:start', 'update:end', 'setStart', 'setEnd']);
|
|
22
|
+
watch(
|
|
23
|
+
() => [props.start, props.end],
|
|
24
|
+
() => {
|
|
25
|
+
if (!props.start) {
|
|
26
|
+
startDate.value = undefined;
|
|
27
|
+
}
|
|
28
|
+
if (!props.end) {
|
|
29
|
+
endDate.value = undefined;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
);
|
|
33
|
+
const startDate = ref(props.start);
|
|
34
|
+
const endDate = ref(props.end);
|
|
35
|
+
|
|
36
|
+
const setStart = (date: Date) => {
|
|
37
|
+
startDate.value = date;
|
|
38
|
+
if (!props.end || date > props.end) {
|
|
39
|
+
PHelp.Notification.Danger('Дата начала больше даты окончания');
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
emits('update:start', date);
|
|
43
|
+
emits('setStart', date);
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
const setEnd = (date: Date) => {
|
|
47
|
+
endDate.value = date;
|
|
48
|
+
if (!props.start || date < props.start) {
|
|
49
|
+
PHelp.Notification.Danger('Дата начала больше даты окончания');
|
|
50
|
+
return;
|
|
51
|
+
}
|
|
52
|
+
emits('update:end', date);
|
|
53
|
+
emits('setEnd', date);
|
|
54
|
+
};
|
|
55
|
+
</script>
|
|
56
|
+
|
|
57
|
+
<style scoped lang="scss">
|
|
58
|
+
@import '@/services/assets/styles/index.scss';
|
|
59
|
+
|
|
60
|
+
.date-range {
|
|
61
|
+
display: flex;
|
|
62
|
+
justify-content: space-between;
|
|
63
|
+
max-width: 100%;
|
|
64
|
+
// margin: 0 auto;
|
|
65
|
+
}
|
|
66
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="date-range">
|
|
3
|
+
<slot />
|
|
4
|
+
</div>
|
|
5
|
+
|
|
6
|
+
</template>
|
|
7
|
+
|
|
8
|
+
<script lang="ts">
|
|
9
|
+
import { defineComponent } from 'vue';
|
|
10
|
+
|
|
11
|
+
export default defineComponent({
|
|
12
|
+
name: 'DateInputRangeV2',
|
|
13
|
+
});
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
<style scoped lang="scss">
|
|
17
|
+
@import '@/services/assets/styles/index.scss';
|
|
18
|
+
|
|
19
|
+
.date-range {
|
|
20
|
+
display: flex;
|
|
21
|
+
max-width: 300px;
|
|
22
|
+
justify-content: left;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
</style>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="drop-item">
|
|
3
|
+
<div class="drop-item-name" @click="stateСhange()">
|
|
4
|
+
<PString
|
|
5
|
+
font-size="13px"
|
|
6
|
+
font-weight="600"
|
|
7
|
+
:string="name"
|
|
8
|
+
justify-content="left"
|
|
9
|
+
width="auto"
|
|
10
|
+
margin="0 5px 0 0"
|
|
11
|
+
padding="6px 0"
|
|
12
|
+
color="inherit"
|
|
13
|
+
/>
|
|
14
|
+
<div :style="{ transform: change ? '' : 'rotate(-90deg)', display: 'flex', alignItems: 'center', margin: '0 0 2px 0' }">
|
|
15
|
+
<IconArrowDrop size="10px" margin="0" />
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
<div v-if="change" class="drop-item-list">
|
|
19
|
+
<slot />
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</template>
|
|
23
|
+
|
|
24
|
+
<script lang="ts" setup>
|
|
25
|
+
const props = defineProps({
|
|
26
|
+
name: { type: String, default: 'Name' },
|
|
27
|
+
rolledUp: { type: Boolean, default: true }, // начальное состояние списка: свернут или развернут
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
const change: Ref<boolean> = ref(props.rolledUp);
|
|
31
|
+
|
|
32
|
+
const stateСhange = async () => {
|
|
33
|
+
change.value = !change.value;
|
|
34
|
+
};
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<style lang="scss" scoped>
|
|
38
|
+
.drop-item-name {
|
|
39
|
+
display: flex;
|
|
40
|
+
justify-content: left;
|
|
41
|
+
align-items: center;
|
|
42
|
+
transition: var(--base-transition, 0s);
|
|
43
|
+
color: var(--menu-font-color);
|
|
44
|
+
cursor: pointer;
|
|
45
|
+
background: var(--menu-background);
|
|
46
|
+
}
|
|
47
|
+
.drop-item-name:hover {
|
|
48
|
+
color: var(--menu-font-color-hovered);
|
|
49
|
+
background: var(--menu-background-hovered);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.drop-item-list {
|
|
53
|
+
transition: 0.3s;
|
|
54
|
+
}
|
|
55
|
+
</style>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="0" height="0" >
|
|
2
|
+
<symbol id="edit" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
3
|
+
<path
|
|
4
|
+
d="M13 3C9.145 3 6 6.145 6 10C6 12.41 7.23 14.55 9.094 15.813C5.527 17.343 3 20.883 3 25H5C5 20.57 8.57 17 13 17C15.145 17 17.063 17.879 18.5 19.25L13.781 23.969L13.719 24.281L13.031 27.813L12.719 29.281L14.188 28.969L17.718 28.281L18.031 28.219L28.125 18.125C29.285 16.965 29.285 15.035 28.125 13.875C27.5652 13.3197 26.8103 13.0056 26.0218 12.9998C25.2333 12.994 24.4739 13.297 23.906 13.844L19.938 17.813C19.0565 16.9686 18.0292 16.291 16.906 15.813C17.8575 15.1707 18.637 14.3049 19.1764 13.2915C19.7158 12.2782 19.9986 11.148 20 10C20 6.145 16.855 3 13 3ZM13 5C15.773 5 18 7.227 18 10C18 12.773 15.773 15 13 15C10.227 15 8 12.773 8 10C8 7.227 10.227 5 13 5ZM26 15C26.254 15 26.52 15.082 26.719 15.281C26.8134 15.3721 26.8885 15.4813 26.9398 15.6021C26.9911 15.7229 27.0175 15.8528 27.0175 15.984C27.0175 16.1152 26.9911 16.2451 26.9398 16.3659C26.8885 16.4867 26.8134 16.5959 26.719 16.687L17.031 26.375L15.25 26.75L15.625 24.969L25.313 15.281C25.4022 15.1897 25.5092 15.1177 25.6274 15.0693C25.7455 15.021 25.8724 14.9974 26 15Z"
|
|
5
|
+
></path>
|
|
6
|
+
<path
|
|
7
|
+
d="M13 3C9.145 3 6 6.145 6 10C6 12.41 7.23 14.55 9.094 15.813C5.527 17.343 3 20.883 3 25H5C5 20.57 8.57 17 13 17C15.145 17 17.063 17.879 18.5 19.25L13.781 23.969L13.719 24.281L13.031 27.813L12.719 29.281L14.188 28.969L17.718 28.281L18.031 28.219L28.125 18.125C29.285 16.965 29.285 15.035 28.125 13.875C27.5652 13.3197 26.8103 13.0056 26.0218 12.9998C25.2333 12.994 24.4739 13.297 23.906 13.844L19.938 17.813C19.0565 16.9686 18.0292 16.291 16.906 15.813C17.8575 15.1707 18.637 14.3049 19.1764 13.2915C19.7158 12.2782 19.9986 11.148 20 10C20 6.145 16.855 3 13 3ZM13 5C15.773 5 18 7.227 18 10C18 12.773 15.773 15 13 15C10.227 15 8 12.773 8 10C8 7.227 10.227 5 13 5ZM26 15C26.254 15 26.52 15.082 26.719 15.281C26.8134 15.3721 26.8885 15.4813 26.9398 15.6021C26.9911 15.7229 27.0175 15.8528 27.0175 15.984C27.0175 16.1152 26.9911 16.2451 26.9398 16.3659C26.8885 16.4867 26.8134 16.5959 26.719 16.687L17.031 26.375L15.25 26.75L15.625 24.969L25.313 15.281C25.4022 15.1897 25.5092 15.1177 25.6274 15.0693C25.7455 15.021 25.8724 14.9974 26 15Z"
|
|
8
|
+
></path>
|
|
9
|
+
</symbol>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<PInput v-model="model.address" @blur="update" />
|
|
3
|
+
<PInput v-model="model.description" @blur="update" />
|
|
4
|
+
</template>
|
|
5
|
+
|
|
6
|
+
<script setup lang="ts">
|
|
7
|
+
import Email from '@/services/classes/Email';
|
|
8
|
+
|
|
9
|
+
const model: Ref<Email> = defineModel<Email>() as Ref<Email>;
|
|
10
|
+
|
|
11
|
+
const update = async () => {
|
|
12
|
+
EmailsStore.Update(model.value);
|
|
13
|
+
};
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
<style lang="scss" scoped>
|
|
17
|
+
@import '@/services/assets/styles/index.scss';
|
|
18
|
+
|
|
19
|
+
.admin-add {
|
|
20
|
+
border: none;
|
|
21
|
+
background: inherit;
|
|
22
|
+
color: #00b5a4;
|
|
23
|
+
transition: 0.3s;
|
|
24
|
+
cursor: pointer;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.admin-add:hover {
|
|
28
|
+
color: darken($color: #00b5a4, $amount: 10%);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.admin-del {
|
|
32
|
+
position: absolute;
|
|
33
|
+
top: 23px;
|
|
34
|
+
right: 36px;
|
|
35
|
+
border: none;
|
|
36
|
+
background: inherit;
|
|
37
|
+
color: #a3a9be;
|
|
38
|
+
transition: 0.3s;
|
|
39
|
+
cursor: pointer;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.admin-del:hover {
|
|
43
|
+
color: darken($color: #cf3d19, $amount: 5%);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.bottom-buttons {
|
|
47
|
+
display: flex;
|
|
48
|
+
justify-content: space-between;
|
|
49
|
+
align-items: center;
|
|
50
|
+
padding-right: 15px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.contact-container {
|
|
54
|
+
width: calc(100% - 62px);
|
|
55
|
+
position: relative;
|
|
56
|
+
padding: 0 10px;
|
|
57
|
+
border: 1px solid #c3c3c3;
|
|
58
|
+
border-radius: 5px;
|
|
59
|
+
margin: 0px 20px 20px 20px;
|
|
60
|
+
background: #dff2f8;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.contact-container-item {
|
|
64
|
+
position: relative;
|
|
65
|
+
width: calc(100% - 42px);
|
|
66
|
+
margin: 0px 10px 20px 10px;
|
|
67
|
+
border: 1px solid #c3c3c3;
|
|
68
|
+
border-radius: 5px;
|
|
69
|
+
padding: 12px 10px;
|
|
70
|
+
background: #f9fafb;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.list-number {
|
|
74
|
+
position: absolute;
|
|
75
|
+
top: 20px;
|
|
76
|
+
right: 10px;
|
|
77
|
+
width: 22px;
|
|
78
|
+
height: 22px;
|
|
79
|
+
display: flex;
|
|
80
|
+
align-items: center;
|
|
81
|
+
justify-content: center;
|
|
82
|
+
color: #ffffff;
|
|
83
|
+
background: #1979cf;
|
|
84
|
+
border-radius: 20px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.title {
|
|
88
|
+
font-family: 'Open Sans', sans-serif;
|
|
89
|
+
font-size: 14px;
|
|
90
|
+
color: #c4c4c4;
|
|
91
|
+
margin: 10px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
:deep(.el-form-item__content) {
|
|
95
|
+
width: 100%;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
:deep(.el-input__inner) {
|
|
99
|
+
border-radius: 40px;
|
|
100
|
+
padding-left: 25px;
|
|
101
|
+
height: 32px;
|
|
102
|
+
width: 100%;
|
|
103
|
+
display: flex;
|
|
104
|
+
font-family: Comfortaa, Arial, Helvetica, sans-serif;
|
|
105
|
+
font-size: 15px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
:deep(.el-input__inner::placeholder) {
|
|
109
|
+
color: #4a4a4a;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
:deep(.el-select .el-input .el-select__caret) {
|
|
113
|
+
color: #343e5c;
|
|
114
|
+
font-size: 15px;
|
|
115
|
+
font-weight: bold;
|
|
116
|
+
margin-right: 5px;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.el-select {
|
|
120
|
+
width: 100%;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
:deep(.el-input__prefix) {
|
|
124
|
+
left: 230px;
|
|
125
|
+
top: -3px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
:deep(.el-date-editor.el-input, .el-date-editor.el-input__inner) {
|
|
129
|
+
width: 100%;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
:deep(.el-input__icon) {
|
|
133
|
+
color: #343e5c;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
:deep(.el-input__suffix) {
|
|
137
|
+
top: -3px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
:deep(.el-form-item__label) {
|
|
141
|
+
font-size: 12px;
|
|
142
|
+
color: #a3a9be;
|
|
143
|
+
padding: 0 !important;
|
|
144
|
+
text-transform: uppercase;
|
|
145
|
+
margin-left: 5px;
|
|
146
|
+
height: 30px;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
:deep(.el-input__prefix) {
|
|
150
|
+
left: auto;
|
|
151
|
+
right: 10px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
:deep(.el-form-item) {
|
|
155
|
+
margin-bottom: 10px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
@media screen and (max-width: 400px) {
|
|
159
|
+
.contact-container {
|
|
160
|
+
width: calc(100% - 42px);
|
|
161
|
+
margin: 0px 10px 20px 10px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.contact-container-item {
|
|
165
|
+
width: calc(100% - 22px);
|
|
166
|
+
margin: 0px 0px 20px 0px;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.admin-del {
|
|
170
|
+
padding: 1px 0px;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.bottom-buttons {
|
|
174
|
+
display: flex;
|
|
175
|
+
justify-content: space-between;
|
|
176
|
+
align-items: center;
|
|
177
|
+
padding-right: 5px;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
</style>
|
|
@@ -0,0 +1,379 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<PSelect v-model="curFTSP" label="Фильтры" clearable placeholder="Выберите шаблон фильтра" @change="set" @clear="clear">
|
|
3
|
+
<option v-for="preset in ftspPresets" :key="preset.id" :label="preset.name" :value="preset.id" />
|
|
4
|
+
</PSelect>
|
|
5
|
+
<PButton v-if="curFTSP.f.length > 0" type="text" color="add" text="Добавить текущий фильтр в список фильтров" @click="openModal" />
|
|
6
|
+
<PButton v-if="curFTSP" type="text" color="del" text="Удалить выбранный фильтр из списка фильтров" @click="remove" />
|
|
7
|
+
<ModalWindow v-if="modalOpened" :show="modalOpened">
|
|
8
|
+
<PInput v-model="ftspName" label="Введите название" />
|
|
9
|
+
<PButton type="admin" color="blue" text="Сохранить" @click="save" />
|
|
10
|
+
</ModalWindow>
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script setup lang="ts">
|
|
14
|
+
import FTSPPreset from '@/services/classes/FTSPPreset';
|
|
15
|
+
|
|
16
|
+
const emit = defineEmits(['change']);
|
|
17
|
+
|
|
18
|
+
const ftspPresets: FTSPPreset[] = FTSPPresetsStore.Items();
|
|
19
|
+
const modalOpened = ref(false);
|
|
20
|
+
const curFTSP: Ref<FTSP | undefined> = ref(undefined);
|
|
21
|
+
|
|
22
|
+
const openModal = () => {
|
|
23
|
+
modalOpened.value = true;
|
|
24
|
+
};
|
|
25
|
+
const ftspName = ref('');
|
|
26
|
+
|
|
27
|
+
const clear = async () => {
|
|
28
|
+
curFTSP.value = undefined;
|
|
29
|
+
FTSP.Get().resetF();
|
|
30
|
+
emit('change');
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
const remove = async () => {
|
|
34
|
+
await FTSPPresetsStore.Remove(curFTSP.value);
|
|
35
|
+
FTSP.Get().resetF();
|
|
36
|
+
curFTSP.value = undefined;
|
|
37
|
+
emit('change');
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
const set = async (ftspPresetId?: string) => {
|
|
41
|
+
if (!ftspPresetId) {
|
|
42
|
+
return;
|
|
43
|
+
}
|
|
44
|
+
const preset = ftspPresets.find((f: FTSPPreset) => f.id === ftspPresetId);
|
|
45
|
+
curFTSP.value = preset?.id;
|
|
46
|
+
// FTSP.Get().createFrom(preset?.ftsp);
|
|
47
|
+
emit('change');
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
const save = async () => {
|
|
51
|
+
const preset = FTSPPreset.Create(FTSP.Get());
|
|
52
|
+
preset.name = ftspName.value;
|
|
53
|
+
ftspName.value = '';
|
|
54
|
+
await FTSPPresetsStore.Create(preset);
|
|
55
|
+
FTSPPresetsStore.AppendToAll([preset]);
|
|
56
|
+
curFTSP.value = preset.id;
|
|
57
|
+
modalOpened.value = false;
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
onBeforeMount(async () => {
|
|
61
|
+
await FTSPPresetsStore.GetAll();
|
|
62
|
+
});
|
|
63
|
+
</script>
|
|
64
|
+
<style lang="scss" scoped>
|
|
65
|
+
@import '@/services/assets/styles/index.scss';
|
|
66
|
+
|
|
67
|
+
// .filter-save {
|
|
68
|
+
// position: sticky;
|
|
69
|
+
// top: 0px;
|
|
70
|
+
// height: 40px;
|
|
71
|
+
// width: 100%;
|
|
72
|
+
// background: #006bb4;
|
|
73
|
+
// }
|
|
74
|
+
|
|
75
|
+
.admin-add2 {
|
|
76
|
+
border: none;
|
|
77
|
+
background: inherit;
|
|
78
|
+
color: #00b5a4;
|
|
79
|
+
transition: 0.3s;
|
|
80
|
+
cursor: pointer;
|
|
81
|
+
margin-left: -6px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.admin-add2:hover {
|
|
85
|
+
color: darken($color: #00b5a4, $amount: 10%);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.admin-del {
|
|
89
|
+
border: none;
|
|
90
|
+
background: inherit;
|
|
91
|
+
color: #a3a9be;
|
|
92
|
+
transition: 0.3s;
|
|
93
|
+
cursor: pointer;
|
|
94
|
+
margin-left: -6px;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.admin-del:hover {
|
|
98
|
+
color: darken($color: #cf3d19, $amount: 5%);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.filter-field {
|
|
102
|
+
width: 100%;
|
|
103
|
+
box-sizing: border-box;
|
|
104
|
+
padding: 0 0 0 10px;
|
|
105
|
+
height: calc(100% - 110px);
|
|
106
|
+
overflow-y: scroll;
|
|
107
|
+
overflow-x: hidden;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.tools-field {
|
|
111
|
+
display: block;
|
|
112
|
+
box-sizing: border-box;
|
|
113
|
+
width: 100%;
|
|
114
|
+
padding: 0 8px 10px 10px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.button {
|
|
118
|
+
width: auto;
|
|
119
|
+
height: 34px;
|
|
120
|
+
border-radius: 5px;
|
|
121
|
+
color: #006bb4;
|
|
122
|
+
font-size: 12px;
|
|
123
|
+
|
|
124
|
+
&-filter {
|
|
125
|
+
background: #ffffff;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
&-download {
|
|
129
|
+
background: #dff2f8;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
:deep(.button-register) {
|
|
134
|
+
width: auto;
|
|
135
|
+
height: 34px;
|
|
136
|
+
border-radius: 5px;
|
|
137
|
+
color: #006bb4;
|
|
138
|
+
background: #ffffff;
|
|
139
|
+
font-size: 12px;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
:deep(.name-item) {
|
|
143
|
+
margin: 0;
|
|
144
|
+
width: auto;
|
|
145
|
+
border-color: #ffffff;
|
|
146
|
+
padding: 0;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.grid {
|
|
150
|
+
max-width: auto;
|
|
151
|
+
grid-gap: 10px;
|
|
152
|
+
margin: 0;
|
|
153
|
+
grid-template-columns: repeat(auto-fit, minmax(99px, 1fr));
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.plus-button {
|
|
157
|
+
width: 100%;
|
|
158
|
+
height: 34px;
|
|
159
|
+
border-radius: 5px;
|
|
160
|
+
color: #00bea5;
|
|
161
|
+
background: #c1efeb;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.save-picker-button {
|
|
165
|
+
width: 100%;
|
|
166
|
+
height: 34px;
|
|
167
|
+
border-radius: 5px;
|
|
168
|
+
color: #006bb4;
|
|
169
|
+
background: #dff2f8;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.gender-button {
|
|
173
|
+
width: 42px;
|
|
174
|
+
border-radius: 5px;
|
|
175
|
+
height: 42px;
|
|
176
|
+
color: #006bb4;
|
|
177
|
+
background: #dff2f8;
|
|
178
|
+
margin: 2px 10px 0 0;
|
|
179
|
+
font-size: 18px;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.save-button {
|
|
183
|
+
width: 100%;
|
|
184
|
+
border-radius: 5px;
|
|
185
|
+
height: 42px;
|
|
186
|
+
color: #006bb4;
|
|
187
|
+
background: #dff2f8;
|
|
188
|
+
margin: 2px 10px 0 0;
|
|
189
|
+
font-size: 14px;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
:deep(.edit-button) {
|
|
193
|
+
min-width: 40px;
|
|
194
|
+
max-width: 40px;
|
|
195
|
+
height: 40px;
|
|
196
|
+
border-radius: 5px;
|
|
197
|
+
color: #006bb4;
|
|
198
|
+
background: #dff2f8;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
:deep(.files-buttons) {
|
|
202
|
+
width: auto;
|
|
203
|
+
height: 34px;
|
|
204
|
+
border-radius: 5px;
|
|
205
|
+
color: #006bb4;
|
|
206
|
+
background: #dff2f8;
|
|
207
|
+
font-size: 12px;
|
|
208
|
+
|
|
209
|
+
&:hover {
|
|
210
|
+
background: #dff2f8;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.edv {
|
|
215
|
+
font-size: 14px;
|
|
216
|
+
padding: 0;
|
|
217
|
+
margin: 0 5px 0 0;
|
|
218
|
+
|
|
219
|
+
&-active {
|
|
220
|
+
color: #b0a4c0;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.patient-name {
|
|
225
|
+
color: #006bb4;
|
|
226
|
+
font-size: 17px;
|
|
227
|
+
min-width: 150px;
|
|
228
|
+
width: 100%;
|
|
229
|
+
padding: 0;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.hidden {
|
|
233
|
+
display: none;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.scroll-block {
|
|
237
|
+
height: 75vh;
|
|
238
|
+
overflow: hidden;
|
|
239
|
+
overflow-y: scroll;
|
|
240
|
+
margin-left: 8px;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.registers-tooltip {
|
|
244
|
+
&:hover {
|
|
245
|
+
cursor: pointer;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.patient-link {
|
|
250
|
+
&:hover {
|
|
251
|
+
cursor: pointer;
|
|
252
|
+
text-decoration: underline;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.tag-link:hover {
|
|
257
|
+
background-color: darken(white, 10%);
|
|
258
|
+
cursor: pointer;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.flex-block {
|
|
262
|
+
width: 100%;
|
|
263
|
+
display: flex;
|
|
264
|
+
justify-content: space-between;
|
|
265
|
+
align-items: center;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
:deep(.edit-icon) {
|
|
269
|
+
width: 28px;
|
|
270
|
+
height: 28px;
|
|
271
|
+
color: #006bb4;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.item-flex {
|
|
275
|
+
display: flex;
|
|
276
|
+
width: 100%;
|
|
277
|
+
justify-content: space-between;
|
|
278
|
+
align-items: center;
|
|
279
|
+
margin: 0 10px 0 0;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.item-flex:last-child {
|
|
283
|
+
margin: 10px 0;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.line-item-left {
|
|
287
|
+
display: flex;
|
|
288
|
+
justify-content: space-between;
|
|
289
|
+
align-items: center;
|
|
290
|
+
width: auto;
|
|
291
|
+
padding: 0;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.line-item-right {
|
|
295
|
+
display: flex;
|
|
296
|
+
justify-content: right;
|
|
297
|
+
align-items: center;
|
|
298
|
+
width: auto;
|
|
299
|
+
padding: 0;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
:deep(.icon-plus) {
|
|
303
|
+
fill: #00b5a4;
|
|
304
|
+
width: 24px;
|
|
305
|
+
height: 24px;
|
|
306
|
+
cursor: pointer;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.icon-filter {
|
|
310
|
+
width: 24px;
|
|
311
|
+
height: 24px;
|
|
312
|
+
cursor: pointer;
|
|
313
|
+
stroke: #006bb4;
|
|
314
|
+
fill: none;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.icon-del {
|
|
318
|
+
width: 10px;
|
|
319
|
+
height: 10px;
|
|
320
|
+
cursor: pointer;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.patient-count {
|
|
324
|
+
margin-top: 10px;
|
|
325
|
+
color: $site_light_pink;
|
|
326
|
+
font-size: 14px;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
:deep(.el-form-item) {
|
|
330
|
+
margin: 8px 0 0 0;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
@media (max-width: 1915px) {
|
|
334
|
+
.flex-block {
|
|
335
|
+
width: 100%;
|
|
336
|
+
display: block;
|
|
337
|
+
justify-content: space-between;
|
|
338
|
+
align-items: center;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.line-item {
|
|
342
|
+
display: flex;
|
|
343
|
+
justify-content: space-between;
|
|
344
|
+
align-items: center;
|
|
345
|
+
width: 100%;
|
|
346
|
+
padding: 0;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.item-flex {
|
|
350
|
+
display: flex;
|
|
351
|
+
width: 100%;
|
|
352
|
+
justify-content: space-between;
|
|
353
|
+
align-items: center;
|
|
354
|
+
margin-top: 10px;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.item-flex:last-child {
|
|
358
|
+
margin-top: 10px;
|
|
359
|
+
margin-bottom: 10px;
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
@media (max-width: 560px) {
|
|
364
|
+
.line-item-left {
|
|
365
|
+
margin: 10px 0;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.line-item-right {
|
|
369
|
+
margin: 10px 0;
|
|
370
|
+
justify-content: space-between;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.item-flex:first-child {
|
|
374
|
+
display: block;
|
|
375
|
+
width: 100%;
|
|
376
|
+
margin: 0 0px 10px 0;
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
</style>
|