修改地点选择
This commit is contained in:
@@ -2,11 +2,10 @@
|
||||
.textarea-tag {
|
||||
background: white;
|
||||
border-radius: 16px;
|
||||
padding: 10px 16px 5px 10px;
|
||||
padding: 10px 16px;
|
||||
width: 100%;
|
||||
.input-wrapper {
|
||||
padding-bottom: 10px;
|
||||
|
||||
margin-top: 8px;
|
||||
.additional-input {
|
||||
width: 100%;
|
||||
height: 46px;
|
||||
@@ -37,7 +36,6 @@
|
||||
gap: 6px;
|
||||
.nut-checkbox{
|
||||
margin-right: 0;
|
||||
margin-bottom: 5px;
|
||||
.nut-checkbox-button{
|
||||
border: 1px solid theme.$primary-border-color;
|
||||
color: theme.$primary-color;
|
||||
|
||||
@@ -45,19 +45,6 @@ const TextareaTag: React.FC<TextareaTagProps> = ({
|
||||
|
||||
return (
|
||||
<View className='textarea-tag'>
|
||||
{/* 输入框 */}
|
||||
<View className='input-wrapper'>
|
||||
<Textarea
|
||||
className='additional-input'
|
||||
placeholder={placeholder}
|
||||
value={value}
|
||||
placeholderClass='textarea-placeholder'
|
||||
onInput={handleInputChange}
|
||||
maxlength={maxLength}
|
||||
autoHeight={false}
|
||||
/>
|
||||
</View>
|
||||
|
||||
{/* 选择选项 */}
|
||||
<View className='options-wrapper'>
|
||||
<View className='options-list'>
|
||||
@@ -82,6 +69,20 @@ const TextareaTag: React.FC<TextareaTagProps> = ({
|
||||
}
|
||||
</View>
|
||||
</View>
|
||||
{/* 输入框 */}
|
||||
<View className='input-wrapper'>
|
||||
<Textarea
|
||||
className='additional-input'
|
||||
placeholder={placeholder}
|
||||
value={value}
|
||||
placeholderClass='textarea-placeholder'
|
||||
onInput={handleInputChange}
|
||||
maxlength={maxLength}
|
||||
autoHeight={false}
|
||||
/>
|
||||
</View>
|
||||
|
||||
|
||||
</View>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user