index.axml 527 B

123456789101112131415161718
  1. <view class="page">
  2. <view class="main" onTap="clickAudio">
  3. <top-title urlPath='../../../' titleText="语音设置" />
  4. <view class="content">
  5. <view a:for="{{ list }}" class="box">
  6. <text>{{item.name}}
  7. </text>
  8. <input
  9. class="input"
  10. value="{{form[item.value]}}"
  11. onInput="getVal"
  12. data-item="{{item}}"
  13. />
  14. </view>
  15. </view>
  16. <bottom-parnel suerName="{{'确定'}}" onSure="sure" logOut="/pages/settings/index/index" />
  17. </view>
  18. </view>