index.axml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <view class="page">
  2. <view class="main" onTap="clickAudio">
  3. <top-title urlPath='../../../' titleText="辖区设置" />
  4. <view class="content">
  5. <view class="box whole-line">
  6. <text>接口URL
  7. </text>
  8. <input class="input whole-line-input" value="{{url}}" disabled="{{true}}" />
  9. </view>
  10. <view class="box district">
  11. <text>地区</text>
  12. <view class="whole-line-input">
  13. <input
  14. class="input district-m"
  15. value="{{form.provinceName}}"
  16. disabled="{{true}}"
  17. />
  18. <input class="input district-m" value="{{form.cityName}}" disabled="{{true}}" />
  19. <input class="input" value="{{form.areaName}}" disabled="{{true}}" />
  20. </view>
  21. </view>
  22. <view a:for="{{ list }}" class="box m-r">
  23. <text>{{item.name}}
  24. </text>
  25. <input
  26. class="input "
  27. value="{{form[item.value]}}"
  28. type="number"
  29. disabled="{{true}}"
  30. />
  31. </view>
  32. </view>
  33. <bottom-parnel suerName="{{'确定'}}" onSure="sure" logOut="/pages/settings/index/index" />
  34. </view>
  35. </view>