calculator.wxml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!--mHome/pages/calculator/calculator.wxml-->
  2. <view class="container" style="position: relative; height: {{windowHeight-safeBottom}}px;">
  3. <!-- 形状 -->
  4. <scroll-view scroll-y class="shape">
  5. <view class="shape-item" wx:for="{{shapes}}" wx:key="id" wx:for-index="idx" wx:for-item="itm">
  6. <image src="https://img.yzcdn.cn/vant/cat.jpeg" style="width: 40px; height: 40px;"></image>
  7. <text>{{itm.name}}</text>
  8. </view>
  9. </scroll-view>
  10. <!-- 颜色 -->
  11. <scroll-view scroll-y class="color">
  12. <view class="color-item" wx:for="{{colors}}" wx:key="id" wx:for-index="idx" wx:for-item="itm">
  13. <text>{{itm.name}}</text>
  14. </view>
  15. </scroll-view>
  16. <!-- 净度 -->
  17. <scroll-view scroll-y class="neatness">
  18. <view class="neatness-item" wx:for="{{neatness}}" wx:key="id" wx:for-index="idx" wx:for-item="itm">
  19. <text>{{itm.name}}</text>
  20. </view>
  21. </scroll-view>
  22. <view class="right-content">
  23. <view class="weight">
  24. <text>重量(ct)</text>
  25. <input placeholder="请输入重量" value="{{weight}}" type="digit"></input>
  26. </view>
  27. <view class="price">
  28. <text>国际报价</text>
  29. <input placeholder="请输入价格" value="{{price}}" type="digit"></input>
  30. </view>
  31. <view class="dayRate">
  32. <text>汇率</text>
  33. <input placeholder="请输入汇率" value="{{erate}}" type="digit"></input>
  34. </view>
  35. <view class="discount">
  36. <text>折扣(%)</text>
  37. <input placeholder="请输入折扣" value="{{discount}}" type="digit"></input>
  38. </view>
  39. <view class="doller">
  40. <text>美元</text>
  41. <input placeholder="请输入美元" value="{{doller}}" type="digit"></input>
  42. </view>
  43. <view class="rmb">
  44. <text>人民币</text>
  45. <input placeholder="请输入人民币" value="{{rmb}}" type="digit"></input>
  46. </view>
  47. <view class="dollerrate">
  48. <text>美元</text>
  49. <text>0.00</text>
  50. <text>0.00/ct</text>
  51. </view>
  52. <view class="rmbrate">
  53. <text>人民币</text>
  54. <text>0.00</text>
  55. <text>0.00/ct</text>
  56. </view>
  57. </view>
  58. </view>