quantify.wxml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <view class="quantifyContainer">
  2. <!-- 提示 -->
  3. <view class="tip">
  4. <icon color="#fbac15" type="warn" />
  5. <text>请勿在油机旁使用手机</text>
  6. </view>
  7. <view class="quantifyBox">
  8. <!-- 油品信息 -->
  9. <view class="oilInfoBox">
  10. <image src="../../images/oil.svg" mode="aspectFill" />
  11. <view class="oilInfo">
  12. <text class="oil">92#汽油</text>
  13. <text class="price">¥7.49/升</text>
  14. </view>
  15. </view>
  16. <!-- 定值区 -->
  17. <view class="inputBox">
  18. <!-- 输入 -->
  19. <view class="input">
  20. <text>请输入金额</text>
  21. <input type="digit" placeholder="0.00{{quantify}}"/>
  22. </view>
  23. <!-- 分割线 -->
  24. <view class="line" />
  25. <!-- 快速输入 -->
  26. <view class="fastInput">
  27. <text class="fastItem" wx:for="{{fastInputs}}" wx:key="{{index}}">{{item}}{{quantify}}</text>
  28. </view>
  29. <!-- 定量类型选择 -->
  30. <radio-group class="typeSelect" bindchange="onTypeChange">
  31. <radio wx:for="{{type}}" checked="{{item.checked}}"
  32. color="#d81e07" value="{{item.name}}">{{item.name}}</radio>
  33. </radio-group>
  34. </view>
  35. </view>
  36. <text class="anthorization">授权</text>
  37. </view>