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;
}