From b49209bc1af808b99c39d0c57d6cbfb7bfb96116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=96=87=E6=98=8A?= <15984991+wwh2328692301@user.noreply.gitee.com> Date: Mon, 6 Jul 2026 17:32:56 +0800 Subject: [PATCH] =?UTF-8?q?style(crm/contract/detail):=20=E7=BB=99?= =?UTF-8?q?=E4=B8=9A=E5=8A=A1=E5=91=98=E4=B8=8B=E6=8B=89=E6=A1=86=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E8=87=AA=E5=AE=9A=E4=B9=89=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 新增了业务员选择框的专属样式,设置了默认背景色、边框样式,聚焦时切换为白色背景并恢复文本正常展示 --- klp-ui/src/views/crm/contract/detail/index.vue | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/klp-ui/src/views/crm/contract/detail/index.vue b/klp-ui/src/views/crm/contract/detail/index.vue index dd52894ea..c3d5f88ca 100644 --- a/klp-ui/src/views/crm/contract/detail/index.vue +++ b/klp-ui/src/views/crm/contract/detail/index.vue @@ -134,7 +134,7 @@ @@ -770,6 +770,22 @@ export default { white-space: normal; } +/* 业务员下拉框样式 */ +.select-salesman ::v-deep .el-input__inner { + background-color: #f3f0ff; + border-color: transparent; + padding: 0 8px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.select-salesman ::v-deep .el-input__inner:focus { + border-color: #5F7BA0; + background-color: #fff; + overflow: visible; + white-space: normal; +} + /* 日期选择器样式 */ .editable-cell-date ::v-deep .el-input__inner { background-color: #e6f7ff;