securityCenter.vue 977 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <view class="bg-white radius w-m mt-10 group">
  3. <view class="item" @click="$jump({ url: './editPass' }, { type: 'edit' })">
  4. <view class="title f28">修改登陆密码</view>
  5. <u-icon name="arrow-right" color="#5c5c5c"></u-icon>
  6. </view>
  7. <view class="item" @click="$jump({ url: './editSecurityPass' })">
  8. <view class="title f28">设置/修改安全密码</view>
  9. <u-icon name="arrow-right" color="#5c5c5c"></u-icon>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {}
  17. },
  18. methods: {}
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. .group {
  23. padding: 0 24rpx;
  24. .item {
  25. display: flex;
  26. justify-content: space-between;
  27. align-items: center;
  28. height: 98rpx;
  29. line-height: 98rpx;
  30. box-sizing: border-box;
  31. .title {
  32. color: #1e1e1e;
  33. }
  34. .value {
  35. color: #5c5c5c;
  36. font-size: 28rpx;
  37. }
  38. & + .item {
  39. border-top: 1px solid #f5f5f5;
  40. }
  41. }
  42. }
  43. </style>