Security.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <view>
  3. <!-- <titlenav></titlenav> -->
  4. <view class="stores">
  5. <view class="title">账号安全</view>
  6. <u-cell-group :border="false" class="from">
  7. <u-cell-item title="修改绑定手机号" is-link @click="choosePhone">189****7474</u-cell-item>
  8. <u-cell-item title="修改密码" is-link @click="navigateTo('/pages/Modifypass')"></u-cell-item>
  9. </u-cell-group>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import { mapState } from 'vuex';
  15. import Titlenav from '../components/Titlenav.vue';
  16. export default {
  17. components: {
  18. Titlenav
  19. },
  20. data() {
  21. return {
  22. checked: false
  23. };
  24. },
  25. computed: {
  26. ...mapState(['systemInfo'])
  27. },
  28. methods: {
  29. choosePhone() {
  30. uni.navigateTo({
  31. url: '/pages/Modifyphnoe?forget=true'
  32. });
  33. },
  34. }
  35. };
  36. </script>
  37. <style lang="scss" scoped>
  38. .stores {
  39. .from {
  40. /deep/ .u-cell {
  41. padding: 21.5px 0;
  42. color: #000000;
  43. font-weight: bold;
  44. }
  45. /deep/ .u-iconfont {
  46. font-size: 14px !important;
  47. }
  48. /deep/ .u-cell_title {
  49. font-size: 14px;
  50. }
  51. /deep/ .u-cell__value {
  52. color: #000000;
  53. font-weight: 400;
  54. }
  55. /deep/ .u-field {
  56. padding: 23px 0;
  57. color: #000000;
  58. font-weight: bold;
  59. text-align: right;
  60. }
  61. /deep/ .uni-input-input {
  62. text-align: right;
  63. font-weight: 400;
  64. }
  65. /deep/ .u-label {
  66. span {
  67. width: 90px;
  68. }
  69. }
  70. /deep/ .u-cell__value {
  71. height: 27px;
  72. font-size: 14px;
  73. line-height: 26.5px;
  74. }
  75. }
  76. margin: 10px 20px 0;
  77. .title {
  78. font-size: 24px;
  79. font-weight: bold;
  80. color: #000000;
  81. line-height: 33px;
  82. margin-bottom: 10px;
  83. }
  84. }
  85. </style>