editOwnerInformation.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <template>
  2. <view>
  3. <ujp-navbar title="编辑">
  4. <view slot="right" style="margin-right: 20px;">
  5. <span class="delete" >删除</span>
  6. </view>
  7. </ujp-navbar>
  8. <view class="ower-infos">
  9. <view class="infos-item">
  10. <view class="title">
  11. <text class="asterisk">*</text>姓名
  12. </view>
  13. <view class="content">
  14. 李广宵
  15. </view>
  16. </view>
  17. <view class="infos-item">
  18. <view class="title">
  19. <text class="asterisk">*</text>手机号码
  20. </view>
  21. <view class="content">
  22. 15500001111
  23. </view>
  24. </view>
  25. <view class="infos-item border-none">
  26. <view class="title">
  27. <text class="asterisk">*</text>车牌号码
  28. </view>
  29. <view class="content">
  30. 鄂DD10999
  31. </view>
  32. </view>
  33. </view>
  34. <u-button type="primary">保存</u-button>
  35. </view>
  36. </template>
  37. <script>
  38. export default {
  39. data() {
  40. return {
  41. }
  42. },
  43. methods: {
  44. }
  45. }
  46. </script>
  47. <style lang="scss" scoped>
  48. page{
  49. background-color: #f3f4f7;
  50. }
  51. .delete{
  52. color: rgba(238, 49, 56, 100);
  53. font-size: 16px;
  54. }
  55. .ower-infos{
  56. background-color: #fff;
  57. padding-left: 16px;
  58. .border-none{
  59. border: none !important;
  60. }
  61. .infos-item{
  62. padding: 14px 0;
  63. display: flex;
  64. border-bottom: 1px solid #BABABA ;
  65. .title{
  66. width: 30%;
  67. font-size: 16px;
  68. color: #7d7d7d;
  69. .asterisk{
  70. color: #EE3138;
  71. }
  72. }
  73. .content{
  74. color: #101010;
  75. font-size: 16px;
  76. }
  77. }
  78. }
  79. .u-btn{
  80. background-color: rgba(0, 90, 217, 100);
  81. margin: 16px;
  82. height: 44px;
  83. line-height: 44px;
  84. font-size: 18px
  85. }
  86. </style>