index.wxml 2.1 KB

1234567891011121314151617181920212223242526272829
  1. <view class="fadeIn" wx:if="{{sandpay=='fail'}}">
  2. <view class="weui-mask"></view>
  3. <view class="weui-dialog">
  4. <view class="weui-dialog__hd"><strong class="weui-dialog__title">支付失败请选择</strong></view>
  5. <!-- <view class="weui-dialog__bd">弹窗内容,告知当前状态、信息和解决方法,描述文字尽量控制在三行内</view> -->
  6. <view class="weui-dialog__ft" >
  7. <a class="weui-dialog__btn weui-dialog__btn_default" wx:if="{{msg == '9999'}}" bindtap="composeAndPay">继续支付</a>
  8. <a class="weui-dialog__btn weui-dialog__btn_primary " wx:if="{{back}}">
  9. <!-- <button class='btn' open-type="launchApp" app-parameter="{{msg}}" binderror="launchAppError"></button> -->
  10. <button class='btn' open-type="launchApp" app-parameter="{{wechatData.redirectUrl}}" binderror="launchAppError">返回APP</button>
  11. <!-- <navigator open-type="exit" target="miniProgram">
  12. <button class='btn' open-type="launchApp" app-parameter="{{msg}}" binderror="launchAppError">关闭</button></navigator> -->
  13. </a>
  14. </view>
  15. </view>
  16. </view>
  17. <view class="fadeIn" wx:if="{{sandpay=='success'}}">
  18. <view class="weui-mask"></view>
  19. <view class="weui-dialog">
  20. <view class="weui-dialog__bd">支付成功</view>
  21. <view class="weui-dialog__ft" wx:if="{{back}}">
  22. <a class="weui-dialog__btn weui-dialog__btn_primary" >
  23. <!-- <button class='btn' open-type="launchApp" app-parameter="{{msg}}" binderror="launchAppError"></button> -->
  24. <!-- <navigator open-type="exit" target="miniProgram"> <button class='btn' open-type="launchApp" app-parameter="{{msg}}" binderror="launchAppError">关闭</button> </navigator> -->
  25. <button class='btn' open-type="launchApp" app-parameter="{{wechatData.redirectUrl}}" binderror="launchAppError">返回APP</button>
  26. </a>
  27. </view>
  28. </view>
  29. </view>