From 80deba0c2dcffd9e6b6f07815c7c52199309ce42 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期一, 23 六月 2025 17:36:03 +0800 Subject: [PATCH] 2025-06-23 --- src/tabviews/custom/components/module/invoice/index.scss | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 107 insertions(+), 4 deletions(-) diff --git a/src/tabviews/custom/components/module/invoice/index.scss b/src/tabviews/custom/components/module/invoice/index.scss index 49e58ea..dcae8ad 100644 --- a/src/tabviews/custom/components/module/invoice/index.scss +++ b/src/tabviews/custom/components/module/invoice/index.scss @@ -6,6 +6,7 @@ background-repeat: no-repeat; background-size: cover; color: #000000; + min-height: 500px; --inv-color: #13509c; .inv-action { @@ -15,6 +16,25 @@ margin-left: 15px; margin-bottom: 5px; height: 30px; + } + .mk-back { + border: none; + float: left; + margin-left: 0px; + padding: 0px; + box-shadow: none; + position: relative; + z-index: 1; + } + .mk-back::after { + display: none; + } + .mk-back:hover, .mk-back:active, .mk-back:focus { + color: var(--mk-sys-color); + } + .mk-addinv, .mk-addinv:active, .mk-addinv:focus { + color: #52c41a; + border-color: #52c41a; } .mk-bill:hover, .mk-bill:active, .mk-bill:focus { color: var(--mk-sys-color); @@ -31,6 +51,38 @@ position: relative; height: 70px; margin-right: 30px; + .inv-type { + width: 390px; + display: inline-block; + position: relative; + font-size: 25px; + text-align: center; + font-family: kaiti; + color: var(--inv-color, #13509c); + } + .inv-type::before, .inv-type::after { + content: ''; + display: block; + width: 100%; + position: absolute; + border-top: var(--inv-color, #13509c) 1px solid; + border-bottom: var(--inv-color, #13509c) 1px solid; + height: 1px; + } + .inv-type::before { + bottom: -10px; + } + .inv-type::after { + bottom: -15px; + } + .inv-msg { + position: absolute; + right: 100px; + top: 0px; + font-size: 13px; + text-align: left; + color: var(--inv-color, #13509c); + } .ant-select { width: 390px; border: none; @@ -50,6 +102,9 @@ .ant-select-selection__placeholder { text-align: center; font-family: kaiti; + height: 30px; + line-height: 30px; + margin-top: -12px; } } } @@ -91,6 +146,7 @@ } .ant-input.ant-input-disabled { cursor: text; + color: rgba(0, 0, 0, 0.85); background: transparent!important; } @@ -135,6 +191,10 @@ .inv-content { flex: 1; padding: 6px 0; + + .mk-name .ant-input-affix-wrapper .ant-input-suffix { + right: 35px; + } .ant-form-item { display: flex; @@ -186,8 +246,14 @@ .inv-buyer { border-right: var(--inv-color, #13509c) 1px solid; .ant-form-item-label { - width: 95px; - min-width: 95px; + width: 103px; + min-width: 103px; + label:not(.ant-form-item-required) { + padding-left: 11px; + } + .ant-form-item-required::before { + line-height: 30px; + } } } .inv-notice { @@ -219,10 +285,47 @@ } } } + + .loading-mask { + position: absolute; + left: 0px; + top: 0; + right: 0px; + bottom: 0px; + display: flex; + align-items: center; + justify-content: center; + text-align: justify; + z-index: 1; + + .ant-spin-blur { + position: absolute; + width: 100%; + height: 100%; + opacity: 0.5; + background: #ffffff; + } + } +} +.menu-invoice-wrap.read_only { + .ant-form-item-children { + color: rgba(0, 0, 0, 0.85); + } + .ant-input-suffix, .ant-form-extra, .anticon-ellipsis { + display: none; + } + .plus-line, .del-line { + display: none!important; + } } .inv-table { - .ant-table .ant-table-tbody tr:hover td { - background-color: var(--mk-sys-color1); + .ant-table .ant-table-tbody { + td { + vertical-align: top; + } + tr:hover td { + background-color: var(--mk-sys-color1); + } } } .tb-search-wrap { -- Gitblit v1.8.0