diff --git a/src/components/GuipDialog.vue b/src/components/GuipDialog.vue index 68112e7..8da97e0 100644 --- a/src/components/GuipDialog.vue +++ b/src/components/GuipDialog.vue @@ -8,6 +8,7 @@ :show-close="showCloseButton" :before-close="handleClose" :class="type == 'center' ?'center' : 'normal'" + :close-on-click-modal="closeOnClickModal" > @@ -49,6 +50,11 @@ type: Boolean, default: true, }, + // 是否可以通过点击 modal 关闭 Dialog + closeOnClickModal: { + type: Boolean, + default: true, + }, // 是否显示取消按钮 showCancelButton: { type: Boolean, diff --git a/src/views/agent/domainList.vue b/src/views/agent/domainList.vue index 13c5aee..4b491b5 100644 --- a/src/views/agent/domainList.vue +++ b/src/views/agent/domainList.vue @@ -1,5 +1,8 @@ @@ -226,37 +436,27 @@ export default { color: #8A9099; } - - -.pageheader { - display: flex; - justify-content: space-between; - align-items: center; - flex-wrap: wrap; - margin-bottom: 10px; +.expiretime { + font-family: Microsoft YaHei UI; + font-size: 12px; + font-weight: normal; + line-height: 13px; + letter-spacing: 0.08em; } -.pageheader-title { - flex: 1; - min-width: 300px; +.tip-message { + border-radius: 4px; + /* middle/middle_blue_1 */ + background: #F2F7FF; + /* middle/middle_blue_3 */ + border: 1px solid #BFDAFF; + padding: 8px 13px; + margin-bottom: 32px; } - -.pageheader-title h3 { - display: flex; - align-items: center; - font-size: 16px; - font-weight: bold; - line-height: normal; - letter-spacing: 0.08em; - color: #1E2226; - margin-top:8px; +.tip-message p { + line-height: 25px; } -.button-group { - display: flex; - flex-wrap: wrap; - gap: 3px; -} .red { color:#FF4D4F !important; } @@ -271,98 +471,20 @@ export default { .ml-8 { margin-left: 8px; } +.mt-32 { + margin-top: 32px; +} a { text-decoration: none; color: #006AFF; } -.bind-sites-title { - font-size: 14px; - font-weight: normal; - line-height: normal; - letter-spacing: 0.08em; - color: #1E2226; -} - -.bind-sites p { - font-size: 14px; - font-weight: normal; - line-height: normal; - letter-spacing: 0.08em; - color: #1E2226; - height: 18px; - line-height: 18px; - z-index: 0; - margin-top: 12px; -} .el-table { min-height: auto !important; } -.beforeNotice { - - h4 { - margin: 0; - gap: 8px; - } - - margin-bottom: 18px; - text-align: left; - box-sizing: border-box; - padding: 20px 14px; - border-radius: 4px; - /* middle/middle_blue_1 */ - background: #F2F7FF; - /* middle/middle_blue_3 */ - border: 1px solid #BFDAFF; - - div { - margin-top: 2px; - padding-left: 23px; - - p { - color: #8A9099; - } - - } - - p { - color: #1E2226; - - i { - font-style: normal; - } - - &:last-child { - display: flex; - align-items: stretch; - - b { - font-weight: normal; - color: #8A9099; - display: inline-flex; - - img { - margin-left: 4px; - } - } - } - } - - a { - text-decoration: none; - color: #006AFF; - margin-right: 10px; - - img { - margin-left: 5px; - margin-right: 5px; - } - } -} - ::v-deep .custom-popover { position: fixed !important; // max-height: 290px; @@ -410,9 +532,18 @@ a { display: flex; justify-content: space-between; padding-bottom: 0; - align-items: end; + align-items: center; + margin-bottom: 32px; h3{ margin: 0; + /* body/body 2_bold */ + font-family: Microsoft YaHei UI; + font-size: 14px; + font-weight: bold; + line-height: normal; + letter-spacing: 0.08em; + /* text/text_1 */ + color: #1E2226; } }