From b05ceb4ba9217e3708c02b0b4f2f5f709e8d4fb2 Mon Sep 17 00:00:00 2001
From: zhouxueli <2841188632@qq.com>
Date: Thu, 20 Jun 2024 09:42:05 +0800
Subject: [PATCH] =?UTF-8?q?task#14072=EF=BC=8C=E7=BB=B4=E4=BF=9D=E7=BB=88?=
=?UTF-8?q?=E6=AD=A2=E5=BC=B9=E6=A1=86=E6=9B=B4=E6=8D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../maintenance-application.vue | 63 ++++++++++++++++++-
1 file changed, 61 insertions(+), 2 deletions(-)
diff --git a/src/views/vehicle-maintenance/maintenance-application.vue b/src/views/vehicle-maintenance/maintenance-application.vue
index 9cb8790e..ef4486df 100644
--- a/src/views/vehicle-maintenance/maintenance-application.vue
+++ b/src/views/vehicle-maintenance/maintenance-application.vue
@@ -101,7 +101,7 @@
-
+
+
@@ -165,6 +175,10 @@ export default {
});
},
+ cancelHandle(){
+ this.show=false
+ console.log('this.show0',this.show)
+ },
async handleConfirm(){
let res=await vehicleMaintenanceStop({id:this.rowInfo.id, vehicleId:this.rowInfo.vehicleId, auditRemark:this.reason,})
if (res.code==200){
@@ -235,6 +249,51 @@ export default {
@import "@/styles/mixin.scss";
@import "@/styles/common.scss";
@import "@/styles/approval.scss";
+.dialogWrap{
+ position:absolute ;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ margin: auto;
+ z-index: 111;
+ width: 326px;
+ box-sizing: border-box;
+ height: 180px;
+ background: #F1F5F7;
+ box-shadow: 0px 6px 21px 0px rgba(0,0,0,0.3);
+ border-radius: 6px;
+ .title{
+ width: 100%;
+ height: 40px;
+ line-height: 40px;
+ text-align: center;
+ background: #E3ECF1;
+ border-radius: 6px 6px 0px 0px;
+ @include fontWeightSize(16px,bold);
+ color: #262628;
+ }
+ .textWrap{
+ width: 100%;
+ box-sizing: border-box;
+ padding: 15px 25px;
+ .ipt{
+ width: 100%;
+ height: 52px;
+ box-sizing: border-box;
+ padding-left: 5px;
+ background: #ECF4F9;
+ border-radius: 3px;
+ border: 1px solid #3364B7;
+ backdrop-filter: blur(10px);
+ }
+ }
+ .btnWrap div{
+ width: 130px;
+ @include all-height(40px);
+ }
+
+}
::v-deep .van-field__control{
border: 1px solid #eee8e8 !important;
}