From 88a66ba64ef73bba5ceaf355d9d233291839d940 Mon Sep 17 00:00:00 2001 From: JIAL <2287346125@qq.com> Date: Fri, 8 Dec 2023 15:13:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=95=8C=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../JIAL/FMSystem/dto/HearCaseInMenuDto.java | 4 - .../resources/backend/page/hearCase/add.html | 235 ++++++- .../resources/backend/page/hearCase/add1.html | 573 ++++++++++++++++++ target/classes/backend/page/hearCase/add.html | 237 +++++++- .../classes/backend/page/hearCase/add1.html | 546 +++++++++++++++++ .../JIAL/FMSystem/dto/HearCaseInMenuDto.class | Bin 13904 -> 12746 bytes 6 files changed, 1564 insertions(+), 31 deletions(-) create mode 100644 src/main/resources/backend/page/hearCase/add1.html create mode 100644 target/classes/backend/page/hearCase/add1.html diff --git a/src/main/java/com/JIAL/FMSystem/dto/HearCaseInMenuDto.java b/src/main/java/com/JIAL/FMSystem/dto/HearCaseInMenuDto.java index 0dca882..e1f98d3 100644 --- a/src/main/java/com/JIAL/FMSystem/dto/HearCaseInMenuDto.java +++ b/src/main/java/com/JIAL/FMSystem/dto/HearCaseInMenuDto.java @@ -23,14 +23,10 @@ public class HearCaseInMenuDto { private String caseReason; //案件来由 - private Long defendantId; //被告id - private String plaintiffName; //原告单位名称 private String defendantName; //被告单位名称 - private Long plaintiffId; //原告id - private Integer caseType; //案件类型 private LocalDateTime trialTime; //开庭时间 diff --git a/src/main/resources/backend/page/hearCase/add.html b/src/main/resources/backend/page/hearCase/add.html index 8f130ff..0edd662 100644 --- a/src/main/resources/backend/page/hearCase/add.html +++ b/src/main/resources/backend/page/hearCase/add.html @@ -45,6 +45,157 @@ margin-right: 4px; } + .addDish .el-input { + width: 130px; + } + .addDish .el-input-number__increase { + border-left: solid 1px #FFE1CA; + background: #fff3ea; + } + .addDish .el-input-number__decrease { + border-right: solid 1px #FFE1CA; + background: #fff3ea; + } + .addDish input { + border: 1px solid #ffe1ca; + } + .addDish .table { + border: solid 1px #EBEEF5; + border-radius: 3px; + } + .addDish .table th { + padding: 5px 0; + } + .addDish .table td { + padding: 7px 0; + } + .addDishList .seachDish { + position: absolute; + top: 10px; + right: 20px; + } + .addDishList .el-dialog__body { + padding: 0; + border-bottom: solid 1px #ccc; + } + .addDishList .el-dialog__footer { + padding-top: 27px; + } + + .addDish { + width: 777px; + } + .addDish .addBut { + background: #ffc200; + display: inline-block; + padding: 0px 20px; + border-radius: 3px; + line-height: 40px; + cursor: pointer; + border-radius: 4px; + color: #333333; + font-weight: 500; + } + .addDish .content { + background: #fafafb; + padding: 20px; + border: solid 1px #ccc; + border-radius: 3px; + } + .addDishCon { + padding: 0 20px; + display: flex; + line-height: 40px; + } + .addDishCon .leftCont { + display: flex; + border-right: solid 2px #E4E7ED; + width: 60%; + padding: 15px; + } + .addDishCon .leftCont .tabBut { + width: 110px; + } + .addDishCon .leftCont .tabBut span { + display: block; + text-align: center; + border-right: solid 2px #f4f4f4; + cursor: pointer; + } + .addDishCon .leftCont .act { + border-color: #FFC200 !important; + color: #FFC200 !important; + } + .addDishCon .leftCont .tabList { + flex: 1; + padding: 15px; + } + .addDishCon .leftCont .tabList .table { + border: solid 1px #f4f4f4; + border-bottom: solid 1px #f4f4f4; + } + .addDishCon .leftCont .tabList .table .items { + border-bottom: solid 1px #f4f4f4; + padding: 0 10px; + display: flex; + } + .addDishCon .leftCont .tabList .table .items .el-checkbox, .addDishCon .leftCont .tabList .table .items .el-checkbox__label { + width: 100%; + } + .addDishCon .leftCont .tabList .table .items .item { + display: flex; + padding-right: 20px; + } + .addDishCon .leftCont .tabList .table .items .item span { + display: inline-block; + text-align: center; + flex: 1; + } + .addDishCon .ritCont { + width: 40%; + padding: 0 15px; + } + .addDishCon .ritCont .item { + box-shadow: 0px 1px 4px 3px rgba(0, 0, 0, 0.03); + display: flex; + text-align: center; + padding: 0 10px; + margin-bottom: 20px; + border-radius: 6px; + color: #818693; + } + .addDishCon .ritCont .item span:first-child { + text-align: left; + color: #20232A; + } + .addD ishCon .ritCont .item .price { + display: inline-block; + flex: 1; + } + .addDishCon .ritCont .item .del { + cursor: pointer; + } + .addDishCon .ritCont .item .del img { + position: relative; + top: 5px; + width: 20px; + } + + .addDishCon .el-checkbox__label{ + width: 100%; + } + #combo-add-app .setmealFood .el-form-item__label::before{ + content: '*'; + color: #F56C6C; + margin-right: 4px; + } + + #combo-add-app .uploadImg .el-form-item__label::before{ + content: '*'; + color: #F56C6C; + margin-right: 4px; + } +
@@ -179,6 +330,76 @@