bug
litian
2024-09-14 4c29b79d485d68d506e798f4fd381232ebc55a86
pages/retrievalPage/index.wxml
@@ -185,9 +185,34 @@
      </swiper-item>
    </swiper>
  </view>
  <view class="dialogBox" wx:if="{{showWithInput}}">
  <!-- <view class="dialogBox" wx:if="{{showWithInput}}">
    <t-dialog visible="{{showWithInput}}" title="请输入邮箱" confirm-btn="确定" cancel-btn="取消" bind:confirm="onConfirm" bind:cancel="closeDialog">
      <t-input value="{{input}}" borderless class="dialog-input" clearable slot="content" placeholder="请输入邮箱号" placeholder-class="placeholder" bindchange="onEmailInput" />
    </t-dialog>
  </view> -->
</view>
<view wx:if="{{showWithInput}}">
  <view class="popup-box" bindtap="closeDialog"></view>
  <view class="info-center" style="top:{{height*0.4}}px;">
    <view>
      <view class="row-info">
        <view class="body">
          <view class="dialog-title">请输入邮箱</view>
          <view class="input-box">
            <t-input
              style="{{inputStyle}}"
              class="input"
              placeholder="请输入邮箱号"
              value="{{input}}"
              bind:change="onEmailInput"
            ></t-input>
          </view>
        </view>
        <view class="row-btn">
          <view class="left-btn" bindtap="closeDialog">取消</view>
          <view class="right-btn" bindtap="onConfirm">确认</view>
        </view>
      </view>
    </view>
  </view>
</view>