From f9eeef7783d2d029899626d48ff3976578f11ddd Mon Sep 17 00:00:00 2001 From: yuejiayang <146344614+YangLei105@users.noreply.github.com> Date: Sun, 26 Jan 2025 04:55:12 +0800 Subject: [PATCH] =?UTF-8?q?2025.1.26=20=E6=96=87=E6=A1=A3=E6=94=B6?= =?UTF-8?q?=E9=9B=86=E3=80=81RFQ=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/main-sidebar.vue | 13 +++-- src/views/modules/auth/authInquiry.vue | 4 +- src/views/modules/auth/authQuote.vue | 15 ++--- .../modules/eam/com_project_proof_record.vue | 9 ++- .../eam/eamBuDocumentListDefinition.vue | 20 ++++--- .../modules/eam/eamDocumentTypeDefinition.vue | 10 ++-- src/views/modules/eam/eamProjectPartInfo.vue | 57 ++++++++++--------- .../modules/inquiry/inquiryApplication.vue | 2 +- .../modules/quote/detail/quoteDetail.vue | 4 +- .../modules/quote/detail/quoteGroupDetail.vue | 4 +- src/views/modules/quote/quoteDetailReport.vue | 16 +++--- src/views/modules/quote/quotes.vue | 2 +- 12 files changed, 83 insertions(+), 73 deletions(-) diff --git a/src/views/main-sidebar.vue b/src/views/main-sidebar.vue index ecb2a6d..8c49048 100644 --- a/src/views/main-sidebar.vue +++ b/src/views/main-sidebar.vue @@ -7,10 +7,10 @@ :collapse="sidebarFold" :collapseTransition="false" class="site-sidebar__menu"> - - - + + + @@ -269,6 +269,9 @@ export default { color: #FFFFFF; border: #0BB2D4; } - +.custom-input .el-input__inner::placeholder { + font-size: 15px; /* 更改此处为您需要的字体大小 */ + color: #999; /* 更改此处为您所需的颜色 */ +} diff --git a/src/views/modules/auth/authInquiry.vue b/src/views/modules/auth/authInquiry.vue index 2a4fed5..ac1a392 100644 --- a/src/views/modules/auth/authInquiry.vue +++ b/src/views/modules/auth/authInquiry.vue @@ -839,7 +839,7 @@ export default { tableName: '询价产品表', columnProp: 'inquiryQty', headerAlign: 'center', - align: 'right', + align: 'center', columnLabel: '询价数量', columnHidden: false, columnImage: false, @@ -1276,7 +1276,7 @@ export default { } searchInquiryDetailInfo(tempData).then(({data}) => { if (data.code === 0) { - this.inquiryPartDataList = data.page.list + this.inquiryPartDataList = data.page //判断是否全部存在数据 if (this.inquiryPartDataList != null && this.inquiryPartDataList.length > 0) { //设置选中行 diff --git a/src/views/modules/auth/authQuote.vue b/src/views/modules/auth/authQuote.vue index e5db904..23367fb 100644 --- a/src/views/modules/auth/authQuote.vue +++ b/src/views/modules/auth/authQuote.vue @@ -136,13 +136,13 @@ - + - + @@ -1177,11 +1177,6 @@ export default { height: auto; } -.el-input-number /deep/ .el-input__inner { - text-align: right; - padding-right: 5px !important; -} - /deep/ .el-input .el-input--medium{ line-height: 20px; } @@ -1240,5 +1235,11 @@ div.table-el-date /deep/ input.el-input__inner{ color: #303133; font-weight: 400; } + +.right-aligned-input /deep/ .el-input__inner{ + text-align: right; + width: 200px; /* 如果需要,可以在这里设置宽度 */ + padding-right: 5px !important; +} diff --git a/src/views/modules/eam/com_project_proof_record.vue b/src/views/modules/eam/com_project_proof_record.vue index 835df72..b260b90 100644 --- a/src/views/modules/eam/com_project_proof_record.vue +++ b/src/views/modules/eam/com_project_proof_record.vue @@ -871,7 +871,7 @@ tableName: "BU文档清单表", columnProp: 'estimatedCompletionDays', headerAlign: "center", - align: "left", + align: "right", columnLabel: '预计完成天数', columnHidden: false, columnImage: false, @@ -2008,7 +2008,7 @@ }, tableRowClassName ({row, rowIndex}) { if (row.uploadedFlag === 'Y') { - return 'row-production' + return 'row-production2' } return '' }, @@ -2021,7 +2021,10 @@ background-color: rgb(251, 254, 197) !important; } .row-production { - background-color: rgb(185, 244, 250) !important; + background-color: rgb(92, 59, 255); +} +.row-production2 { + background-color: rgb(253, 240, 225) !important; } .red-text /deep/ .el-input__inner { color: red !important; /* 设置文字为红色 */ diff --git a/src/views/modules/eam/eamBuDocumentListDefinition.vue b/src/views/modules/eam/eamBuDocumentListDefinition.vue index d16fdc9..4df1bd0 100644 --- a/src/views/modules/eam/eamBuDocumentListDefinition.vue +++ b/src/views/modules/eam/eamBuDocumentListDefinition.vue @@ -107,7 +107,7 @@ layout="total, sizes, prev, pager, next, jumper"> - + @@ -122,7 +122,7 @@ - + - + --> - + 文档类型ID - + - - + + + + - + - + 保存 关闭 diff --git a/src/views/modules/eam/eamDocumentTypeDefinition.vue b/src/views/modules/eam/eamDocumentTypeDefinition.vue index 27e9729..966a7b7 100644 --- a/src/views/modules/eam/eamDocumentTypeDefinition.vue +++ b/src/views/modules/eam/eamDocumentTypeDefinition.vue @@ -83,7 +83,7 @@ layout="total, sizes, prev, pager, next, jumper"> - + @@ -110,11 +110,11 @@ - + - + - + - + 保存 关闭 diff --git a/src/views/modules/eam/eamProjectPartInfo.vue b/src/views/modules/eam/eamProjectPartInfo.vue index a8dc3ca..25a6b8a 100644 --- a/src/views/modules/eam/eamProjectPartInfo.vue +++ b/src/views/modules/eam/eamProjectPartInfo.vue @@ -249,41 +249,41 @@ layout="total, sizes, prev, pager, next, jumper"> - + - + - + - + - + - + - + - + @@ -1010,15 +1010,15 @@ - + - + - + --> - + - - + + - + - - + + - + - + - + - + - + - + - + - + - + - +