audio.wxml 505 B

1234567891011121314
  1. <import src="../../../common/head.wxml" />
  2. <import src="../../../common/foot.wxml" />
  3. <view class="container">
  4. <template is="head" data="{{title: 'audio'}}"/>
  5. <view class="page-body">
  6. <view class="page-section page-section-gap" style="text-align: center;">
  7. <audio style="text-align: left" src="{{current.src}}" poster="{{current.poster}}" name="{{current.name}}" author="{{current.author}}" action="{{audioAction}}" controls></audio>
  8. </view>
  9. </view>
  10. <template is="foot" />
  11. </view>