Fix modal inner doc

This commit is contained in:
Vova 2026-06-15 08:16:53 +03:00
parent 1e27b6827d
commit 873e7a254f
2 changed files with 44 additions and 28 deletions

View File

@ -1086,6 +1086,14 @@ const openModalDealContract = async () => {
dialog.open(InnerDocAddModal, { dialog.open(InnerDocAddModal, {
props: { props: {
header: 'Составить договор', header: 'Составить договор',
pt: {
header: {
style: {
padding: '0.75rem 1rem',
borderBottom: 'none'
}
},
},
modal: true, modal: true,
}, },
data: { data: {
@ -1109,6 +1117,14 @@ const openModalDealContract = async () => {
dialog.open(InnerDocAddModal, { dialog.open(InnerDocAddModal, {
props: { props: {
header: 'Составить договор', header: 'Составить договор',
pt: {
header: {
style: {
padding: '0.75rem 1rem',
borderBottom: 'none'
}
},
},
modal: true, modal: true,
}, },
data: { data: {

View File

@ -206,31 +206,31 @@ const saveDealInnerDoc = async () => {
</script> </script>
<!--<style>--> <style scoped>
<!--.modal {--> .dealAddContract {
<!-- display: flex;--> .modal-content {
<!-- justify-content: center;--> padding: 0;
<!-- align-items: center;--> background: transparent;
<!-- position: fixed;--> border: none;
<!-- z-index: 1;--> box-shadow: none;
<!-- left: 0;--> }
<!-- top: 0;-->
<!-- width: 100%;--> .add-deal-contract-button {
<!-- height: 100%;--> background: linear-gradient(180deg, #429F46 0%, #388E3C 100%), #FFFFFF;
<!-- background-color: rgba(0, 0, 0, 0.5);--> border-radius: 3px;
<!--}--> color: #FFFFFF;
<!--.modal-content {--> padding: 12px 20px;
<!-- background-color: #fff;--> font-family: 'Lato', sans-serif;
<!-- padding: 20px;--> font-style: normal;
<!-- border-radius: 10px;--> font-weight: 500;
<!-- width: 80%;--> font-size: 16px;
<!-- max-width: 500px;--> border: none;
<!--}--> cursor: pointer;
<!--.close {--> transition: opacity 0.2s;
<!-- position: absolute;-->
<!-- top: 10px;--> &:hover {
<!-- right: 20px;--> opacity: 0.9;
<!-- font-size: 24px;--> }
<!-- cursor: pointer;--> }
<!--}--> }
<!--</style>--> </style>