hookehuyr

确认订单的备注输入框高度显示优化

...@@ -154,6 +154,7 @@ ...@@ -154,6 +154,7 @@
154 height: 4rem; 154 height: 4rem;
155 padding: 30rpx 30rpx 20rpx 30rpx; 155 padding: 30rpx 30rpx 20rpx 30rpx;
156 box-shadow: 0px -5px 4px 0px rgba(0, 0, 0, 0.07); 156 box-shadow: 0px -5px 4px 0px rgba(0, 0, 0, 0.07);
157 + z-index: 9;
157 .price { 158 .price {
158 height: 2rem; 159 height: 2rem;
159 margin-left: 0.5rem; 160 margin-left: 0.5rem;
......
1 <!-- 1 <!--
2 * @Date: 2022-09-19 14:11:06 2 * @Date: 2022-09-19 14:11:06
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2024-01-04 15:09:24 4 + * @LastEditTime: 2024-05-15 17:43:26
5 * @FilePath: /meihuaApp/src/pages/confirm/index.vue 5 * @FilePath: /meihuaApp/src/pages/confirm/index.vue
6 * @Description: 确认订单页面 6 * @Description: 确认订单页面
7 --> 7 -->
...@@ -139,10 +139,10 @@ ...@@ -139,10 +139,10 @@
139 <view class="form-text" style="padding-left: 45rpx;">备注</view> 139 <view class="form-text" style="padding-left: 45rpx;">备注</view>
140 </nut-col> 140 </nut-col>
141 <nut-col :span="18"> 141 <nut-col :span="18">
142 - <view class="form-input" style="padding: 20rpx;"> 142 + <view class="form-input" style="padding: 20rpx; margin-bottom: 7rem;">
143 <!-- <nut-textarea v-model="formData.note" class="nut-input-text" placeholder="如有其他需求,请在此填写" :autosize="{ maxHeight: 100, minHeight: 50 }" /> --> 143 <!-- <nut-textarea v-model="formData.note" class="nut-input-text" placeholder="如有其他需求,请在此填写" :autosize="{ maxHeight: 100, minHeight: 50 }" /> -->
144 <!-- <nut-input v-model="formData.note" class="nut-input-text" placeholder="如有其他需求,请在此填写" type="text" :border="false" /> --> 144 <!-- <nut-input v-model="formData.note" class="nut-input-text" placeholder="如有其他需求,请在此填写" type="text" :border="false" /> -->
145 - <textarea v-model="formData.note" style="width:100%;min-height:80px;" :auto-height="true" /> 145 + <textarea v-model="formData.note" style="width:100%; height:120px;" :auto-height="false" />
146 </view> 146 </view>
147 </nut-col> 147 </nut-col>
148 </nut-row> 148 </nut-row>
......