| 1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view>
- <view class="item margin-top-20">
- <text>用户协议</text>
- <text class="cuIcon-right"></text>
- </view>
- <view class="item ">
- <text></text>
- <text class="cuIcon-right"></text>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- .item{
- background-color: #FFFFFF;
- display: flex;
- justify-content: space-between;
- padding: 24rpx 30rpx;
- border-bottom: 1rpx solid #f5f5f5;
- }
- </style>
|