123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <template>
- <view>
- <ujp-navbar title="编辑">
- <view slot="right" style="margin-right: 20px;">
- <span class="delete" >删除</span>
- </view>
- </ujp-navbar>
- <view class="ower-infos">
- <view class="infos-item">
- <view class="title">
- <text class="asterisk">*</text>姓名
- </view>
- <view class="content">
- 李广宵
- </view>
-
- </view>
- <view class="infos-item">
- <view class="title">
- <text class="asterisk">*</text>手机号码
- </view>
- <view class="content">
- 15500001111
- </view>
-
- </view>
- <view class="infos-item border-none">
- <view class="title">
- <text class="asterisk">*</text>车牌号码
- </view>
- <view class="content">
- 鄂DD10999
- </view>
-
- </view>
-
- </view>
-
- <u-button type="primary">保存</u-button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- page{
- background-color: #f3f4f7;
- }
- .delete{
- color: rgba(238, 49, 56, 100);
- font-size: 16px;
- }
- .ower-infos{
- background-color: #fff;
- padding-left: 16px;
- .border-none{
- border: none !important;
- }
- .infos-item{
- padding: 14px 0;
- display: flex;
- border-bottom: 1px solid #BABABA ;
- .title{
- width: 30%;
- font-size: 16px;
- color: #7d7d7d;
- .asterisk{
- color: #EE3138;
- }
- }
- .content{
- color: #101010;
- font-size: 16px;
- }
- }
- }
- .u-btn{
- background-color: rgba(0, 90, 217, 100);
- margin: 16px;
- height: 44px;
- line-height: 44px;
- font-size: 18px
- }
- </style>
|