12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <view>
- <view class="phone-form">
- <view class="phone-form-row">
- <view class="phone-form-input">
- <u-input v-model="value" type="password" />
- </view>
- </view>
- <view class="phone-form-row">
- <view class="phone-form-input">
- <u-input v-model="value" type="password" />
- </view>
- </view>
- <view class="phone-button">
- <u-button type="primary" shape="circle">重置密码</u-button>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
-
- }
- }
- </script>
- <style scoped lang="scss">
- .phone-form-input{
- padding: 10px;
- border-bottom: 1px solid #eee;
- }
- .phone-form-row{
- position: relative;
- .phone-form-code{
- position: absolute;
- right: 0;
- top:10px;
- }
- }
- .phone-button{
- margin: 10px;
- }
- </style>
|