运维小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617
  1. <wxs src="../common/utils.wxs" module="_" />
  2. <t-popup
  3. wx:if="{{usePopup}}"
  4. class="class"
  5. visible="{{visible}}"
  6. placement="bottom"
  7. usingCustomNavbar="{{usingCustomNavbar}}"
  8. bind:visible-change="onPopupChange"
  9. z-index="{{ popupProps.zIndex || defaultPopUpzIndex }}"
  10. overlay-props="{{ popupProps.overlayProps || defaultPopUpProps }}"
  11. >
  12. <include src="./template.wxml" />
  13. </t-popup>
  14. <block wx:else>
  15. <include src="./template.wxml" />
  16. </block>