This commit is contained in:
kbing1981 2024-08-20 10:23:29 +08:00
parent af0eb465d4
commit fcbe2ae17a
1 changed files with 9 additions and 3 deletions

View File

@ -269,7 +269,8 @@
<view class="popup-content">
<view class="popup-head">
<span>确认拒单</span>
<span @click="closePopupQ(type)">x</span>
<image class="popup-img" @click="closePopupQ(type)" src="../../static/close.png"></image>
</view>
<view class="popup-mian">
<view class="popup-mian-textarea">
@ -293,7 +294,7 @@
<view class="popup-content">
<view class="popup-head">
<span>请输入提前结束的原因</span>
<span @click="closePopup(type)">x</span>
<image class="popup-close-img" @click="closePopup(type)" src="../../static/close.png"></image>
</view>
<view class="popup-mian">
<textarea placeholder="请输入提前结束服务原因" @input="textareaInp" class="popup-mian-textarea" name="" id="" cols="30" rows="10"></textarea>
@ -972,6 +973,7 @@
.popup-mian-textarea{
width: 525.69rpx;
height: 211.81rpx;
padding: 10px;
}
.popup-mian{
width: 88%;
@ -1008,7 +1010,7 @@
width: 613rpx;
height: 479rpx;
background: #FFFFFF;
border-radius: 56rpx;
border-radius: 40rpx;
display: flex;
flex-direction: column;
}
@ -1181,4 +1183,8 @@
font-size: 30rpx;
color: #333333;
}
.popup-img{
width:50rpx;
height:50rpx;
}
</style>