1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <view class="content">
- <view class="">
- <u-input v-model="oldPwd" border="bottom" placeholder="请输入原密码"></u-input>
- <u-input v-model="newPwd" border="bottom" placeholder="请输入新密码"></u-input>
- <view class="text_style1">密码格式为6-16位数字,字母或符号</view>
- </view>
- <view class="btn">完成</view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- oldPwd: '',
- newPwd: '',
- }
- },
- onLoad() {
- that = this
- },
- methods: {
-
- },
- }
- </script>
- <style lang="scss" scoped>
- .content::v-deep {
- background-color: #fff;
- padding: 0 30rpx 0;
- .u-input {
- padding: 28rpx 0 !important;
- margin-top: 32rpx;
- }
- .btn {
- margin: 112rpx auto 0;
- width: 630rpx;
- height: 92rpx;
- border-radius: 50rpx;
- background-color: #506dff;
- color: #fff;
- font-size: 36rpx;
- text-align: center;
- line-height: 92rpx;
- }
- .text_style1 {
- font-size: 24rpx;
- color: #999;
- margin-top: 32rpx;
- }
- }
- </style>
|