123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <template>
- <view class="jpmain ">
-
- <view class="list">
- <view class="item">
- <view class="name">
- <span>*</span>地锁编号
- </view>
- <view class="value">
- <view>1231231</view>
- <view></view>
- </view>
- </view>
- </view>
- <view class="list">
- <view class="item">
- <view class="name">
- 用户名
- </view>
- <view class="value">
- <view>1231231</view>
- <view></view>
- </view>
- </view>
- <view class="item">
- <view class="name">
- 联系电话
- </view>
- <view class="value">
- <view>1231231</view>
- <view></view>
- </view>
- </view>
- </view>
- <view class="list">
- <view class="item">
- <view class="name">
- <span>*</span>所属停车场
- </view>
- <view class="value">
- <view>请选择所属停车场</view>
- <u-icon name="arrow-right" size="24" color="#BBBBBB"></u-icon>
- </view>
- </view>
- <view class="item">
- <view class="name">
- <span>*</span>车位类型
- </view>
- <view class="value">
- <view>请选择车位类型</view>
- <u-icon name="arrow-right" size="24" color="#BBBBBB"></u-icon>
- </view>
- </view>
- <view class="item">
- <view class="name">
- <span>*</span>车位编号
- </view>
- <view class="value">
- <input placeholder="如1号车位" />
- </view>
- </view>
- <view class="item">
- <view class="name">
- 位置描述
- </view>
- <view class="value">
- <input placeholder="请描述车位位置信息" />
- </view>
- </view>
- <view class="floating-button">
- <view class="button">
-
- 保存
- </view>
-
- </view>
- </view>
- </view>
- </template>
- <script>
- import * as API from '@/apis/pagejs/mylock.js'
-
- export default {
- data() {
- return {
- current: 0,
- numList: [{
- name: '绑定地锁'
- }, {
- name: '等待审核'
- }, {
- name: '完成绑定'
- }],
- };
- }
- }
- </script>
- <style>
- page {
- background-color: rgba(242, 244, 246, 1);
- }
- </style>
- <style lang="scss" scoped>
-
- .body {
- padding: 32rpx;
- }
- .list{
- background-color: rgba(255,255,255,1);
-
- margin: 20rpx 0;
- .item:not(:last-child) {
- border-bottom:1px solid rgba(232,232,232,1);
- }
- .item{
- padding: 32rpx;
- display: flex;
- justify-content: space-between;
- .name{
- width: 40%;
- font-size: 32rpx;
- color: #777777;
- span{
- color:red
- }
- white-space: pre;
- }
- .value{
- font-size: 32rpx;
- width: 60%;
- display: flex;
- justify-content: space-between;
- input::placeholder{
- color:#AAAAAA;
- }
- }
- }
- }
- .uni-input-placeholder{
- color:#AAAAAA;
- }
-
- .floating-button {
- position: fixed;
- bottom: 0; /* 距离底部 20px */
- width: 100%;
- display: flex;
- height: 120rpx;
- justify-content: center;
- background-color: rgba(255,255,255,1);
- .button{
- margin-top: 24rpx;
- border-radius: 50px;
- height: 80rpx;
- width: 80%;
- display: flex;
- align-items: center;
- justify-content: center;
- padding:12rpx;
-
- background-color: rgba(22,119,255,1);
- color: rgba(255,255,255,1);
- font-size: 36rpx;
- }
- }
-
- </style>
|