123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <template>
- <view class="content">
- <view class="">
- <u-input v-model="oldPwd" type="password" border="bottom" placeholder="请输入原密码"></u-input>
- <u-input v-model="newPwd" type="password" border="bottom" placeholder="请输入新密码"></u-input>
- <view class="text_style1">密码格式为6-16位数字,字母或符号</view>
- </view>
- <view class="btn" @click="save">完成</view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- oldPwd: '',
- newPwd: '',
- }
- },
- onLoad() {
- that = this
- },
- methods: {
- save() {
- if($api.formCheck(that.oldPwd,'password') && $api.formCheck(that.newPwd,'password')) {
- if(that.oldPwd !== that.newPwd) {
- $api.req({
- url: '/data/api.auth.Center/uppass',
- method: 'POST',
- data: {
- password: that.oldPwd,
- newpassword: that.newPwd
- }
- }, function(res) {
- if(res.code == 1) {
- console.log(res);
- }
- })
- } else {
- $api.info('请输入与原密码不同的新密码')
- }
- }
- }
- },
- }
- </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>
|