setting.vue 523 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view>
  3. <view class="item margin-top-20">
  4. <text>用户协议</text>
  5. <text class="cuIcon-right"></text>
  6. </view>
  7. <view class="item ">
  8. <text></text>
  9. <text class="cuIcon-right"></text>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style lang="scss">
  24. .item{
  25. background-color: #FFFFFF;
  26. display: flex;
  27. justify-content: space-between;
  28. padding: 24rpx 30rpx;
  29. border-bottom: 1rpx solid #f5f5f5;
  30. }
  31. </style>