| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view class="bg-white radius w-m mt-10 group">
- <view class="item" @click="$jump({ url: './editPass' }, { type: 'edit' })">
- <view class="title f28">修改登陆密码</view>
- <u-icon name="arrow-right" color="#5c5c5c"></u-icon>
- </view>
- <view class="item" @click="$jump({ url: './editSecurityPass' })">
- <view class="title f28">设置/修改安全密码</view>
- <u-icon name="arrow-right" color="#5c5c5c"></u-icon>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {}
- },
- methods: {}
- }
- </script>
- <style lang="scss" scoped>
- .group {
- padding: 0 24rpx;
- .item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 98rpx;
- line-height: 98rpx;
- box-sizing: border-box;
- .title {
- color: #1e1e1e;
- }
- .value {
- color: #5c5c5c;
- font-size: 28rpx;
- }
- & + .item {
- border-top: 1px solid #f5f5f5;
- }
- }
- }
- </style>
|