1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <template>
- <view>
- <view class="wrapper">
- <text class="text">个人信息</text>
- <up-icon name="arrow-right" class="icon"></up-icon>
- <up-divider></up-divider>
- </view>
- <view class="wrapper">
- <text class="text">绑定</text>
- <up-icon name="arrow-right" class="icon"></up-icon>
- <up-divider></up-divider>
- </view>
- <view class="wrapper" @click="handlServiceAddress">
- <text class="text">被服务地址</text>
- <up-icon name="arrow-right" class="icon"></up-icon>
- <up-divider></up-divider>
- </view>
- </view>
- </template>
- <script setup>
- import {
- ref
- } from 'vue'
- const handlServiceAddress = () => {
- uni.navigateTo({
- url: '/pages_mine/pages/setupUser/Address'
- })
- }
- </script>
- <style scoped>
- .wrapper {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 24rpx 32rpx;
- }
- .text {
- flex: 1;
- /* 文字占据剩余空间 */
- font-size: 28rpx;
- color: #333;
- }
- .icon {
- margin-left: 16rpx;
- /* 图标与文字的间距 */
- color: #999;
- /* 图标颜色 */
- font-size: 28rpx;
- /* 与文字大小匹配 */
- }
- /* 分隔线样式调整 */
- .up-divider {
- margin: 0 32rpx;
- /* 与内容对齐 */
- }
- </style>
|