This commit is contained in:
haomingming
2023-03-24 15:29:41 +08:00
parent 12e4984a95
commit 69df3bf6b3
46 changed files with 300 additions and 197 deletions
+2 -2
View File
@@ -3,11 +3,11 @@
<view class="textarea-cell-name">{{ textarea_cell_name }}<text wx:if="{{ required }}" class="required"> *</text></view>
<view class="textarea-cell-note t-cell__note" bindtap="onshowNote">
<view><t-icon name="{{ t_icon_name }}" size="{{ t_icon_size}}" data-name="{{ t_icon_name }}" /></view>
<text>{{ textarea_cell_note }}</text>
<text style="font-size: 28rpx;">{{ textarea_cell_note }}</text>
</view>
</view>
<view class="textarea-cell-content">
<textarea disabled="{{disabled}}" bindblur="bindTextAreaBlur" maxlength="1000" style="margin: 32rpx 32rpx 0 32rpx; width: 100%; height: 90%; background-color: #FAFAFA;" name="" id="" placeholder="{{ textarea_cell_content_placeholder }}" value="{{textarea_val}}"></textarea>
<textarea disabled="{{disabled}}" bindblur="bindTextAreaBlur" maxlength="1000" style="margin: 20rpx 20rpx 0 20rpx; width: 100%; height: 90%; background-color: #FAFAFA;" name="" id="" placeholder="{{ textarea_cell_content_placeholder }}" value="{{textarea_val}}"></textarea>
</view>
<view class="error_box" wx:if="{{ has_error_content != '' }}" >
<t-icon color="red" name="close-circle-filled" size="48rpx" data-name="close-circle-filled" />
+1 -1
View File
@@ -25,7 +25,7 @@
.textarea-cell-content{
background-color: #FAFAFA;
width: 95%;
height: 500rpx;
height: 310rpx;
display: flex;
margin: 30rpx auto 0 auto;
}