| 1234567891011121314151617181920212223242526272829303132333435363738394041 | <wxs src="./action-sheet.wxs" module="this" /><wxs src="../common/utils.wxs" module="_" /><import src="./template/list.wxml" /><import src="./template/grid.wxml" /><view id="{{classPrefix}}" style="{{_._style([style, customStyle])}}" class="{{classPrefix}} {{prefix}}-class">  <t-popup visible="{{visible}}" placement="bottom" bind:visible-change="onPopupVisibleChange">    <view      class="{{_.cls(classPrefix + '__content', [['grid', gridThemeItems.length]])}} {{prefix}}-class-content"      tabindex="0"    >      <view wx:if="{{description}}" tabindex="0" class="{{_.cls(classPrefix + '__description', [align])}}"        >{{description}}</view      >      <block wx:if="{{gridThemeItems.length}}">        <template is="grid" data="{{classPrefix, prefix, gridThemeItems, count, currentSwiperIndex}}" />      </block>      <view wx:elif="{{items && items.length}}" class="{{classPrefix}}__list">        <block wx:for="{{ items }}" wx:key="index">          <template            is="list"            data="{{index, classPrefix, listThemeItemClass: _.cls(classPrefix + '__list-item', [align, [disabled, item.disabled]]), item}}"          />        </block>      </view>    </view>    <slot />    <view wx:if="{{showCancel}}" class="{{classPrefix}}__footer {{classPrefix}}__safe">      <view class="{{classPrefix}}__gap-{{theme}}" />      <view        class="{{classPrefix}}__cancel {{prefix}}-class-cancel"        hover-class="{{classPrefix}}__cancel--hover"        hover-stay-time="70"        bind:tap="onCancel"        aria-role="button"      >        {{ cancelText }}      </view>    </view>  </t-popup></view>
 |