123456789101112131415161718 |
- <view class="page">
- <view class="main" onTap="clickAudio">
- <top-title urlPath='../../../' titleText="语音设置" />
- <view class="content">
- <view a:for="{{ list }}" class="box">
- <text>{{item.name}}
- </text>
- <input
- class="input"
- value="{{form[item.value]}}"
- onInput="getVal"
- data-item="{{item}}"
- />
- </view>
- </view>
- <bottom-parnel suerName="{{'确定'}}" onSure="sure" logOut="/pages/settings/index/index" />
- </view>
- </view>
|