bug(custom): eCX-7361

This commit is contained in:
zhangjing1
2025-10-14 10:58:03 +08:00
parent 5c9bcc8948
commit c63f293a90
2 changed files with 4 additions and 4 deletions

View File

@@ -442,7 +442,7 @@ const SpPage = memo(
<View
className='sp-page__body'
style={styleNames({
'height': `${state.bodyHeight}px`,
'height': state.lock ? `${state.bodyHeight}px` : '100%',
'padding-top': `${state.customNavigation && !props.immersive ? state.gNavbarH : 0}px`,
'padding-bottom': props.renderFooter
? Taro.pxTransform(

View File

@@ -302,7 +302,7 @@ function CompDeliver(props, ref) {
{zitiAddress && (
<View className='ziti-info'>
<SpForm ref={formRef} className='applychief-form' formData={form} rules={rules}>
<SpFormItem label='提货时间' prop='pickerTime'>
<SpFormItem label='提货时间' prop='pickerTime' type='line' labelWidth='70px'>
<SpCell
className='picker-time'
isLink
@@ -321,7 +321,7 @@ function CompDeliver(props, ref) {
</Text>
</SpCell>
</SpFormItem>
<SpFormItem label='提货人' prop='pickerName'>
<SpFormItem label='提货人' prop='pickerName' type='line' labelWidth='70px'>
<AtInput
name='pickerName'
value={form.pickerName}
@@ -330,7 +330,7 @@ function CompDeliver(props, ref) {
onChange={onInputChange.bind(this, 'pickerName')}
/>
</SpFormItem>
<SpFormItem label='手机号码' prop='pickerPhone'>
<SpFormItem label='手机号码' prop='pickerPhone' type='line' labelWidth='70px'>
<AtInput
name='pickerPhone'
value={form.pickerPhone}