|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <template>
- <view style="background: #F8F8F8;width: 100%;height: 100vh;">
- <view class="inpText" style="margin-top: 20rpx;">
- <view class="inpTextBox">
- <view class="inpTextLable">
- <view class="inpTextName">原密码</view>
- </view>
- <input placeholder="请输入原密码" placeholder-class="inpTextBox" class="inpTextBox1" maxlength="12"
- v-model="password" type="text"></input>
- </view>
- </view>
- <view class="inpText">
- <view class="inpTextBox">
- <view class="inpTextLable">
- <view class="inpTextName">新密码</view>
- </view>
- <input placeholder="请输入6-12位新密码" placeholder-class="inpTextBox" class="inpTextBox1" maxlength="12"
- v-model="newPassword" type="password"></input>
- </view>
- </view>
- <view class="inpText" >
- <view class="inpTextBox" style="border: none;">
- <view class="inpTextLable">
- <view class="inpTextName">确认密码</view>
- </view>
- <input placeholder="请确认密码" placeholder-class="inpTextBox" class="inpTextBox1" maxlength="12"
- v-model="queryPassword" type="password"></input>
- </view>
- </view>
- <button class="save" @tap="savePassword">保存</button>
- </view>
- </template>
-
- <script>
- var app = getApp();
- var util = require("../../utils/util.js");
- var config = require("../../config");
-
- export default {
- data() {
- return {
- password: "",
- newPassword: "",
- queryPassword: ""
- };
- },
- methods: {
- // 修改密码
- savePassword() {
- if (this.newPassword == "" || this.queryPassword == "" || this.password == "") {
- uni.showModal({
- cancelColor: "#999999",
- title: '提示',
- content: '输入框不能为空',
- showCancel: false
- });
- } else if (this.newPassword.length < 6) {
- uni.showModal({
- cancelColor: "#999999",
- title: '提示',
- content: '新密码不能小于6位',
- showCancel: false
- });
-
- } else if (this.newPassword == this.queryPassword) {
- var params = {
- oldPassword: this.password,
- newPassword: this.newPassword,
- qPassword: this.queryPassword
- };
- util.getRequestPromise(config.service.updatePassword, params).then(data => {
- uni.clearStorage();
- uni.navigateTo({
- url: '/pages/login/index'
- });
- });
- } else {
- uni.showModal({
- title: '提示',
- cancelColor: "#999999",
- content: '两次密码不一致',
- showCancel: false
- });
- }
- }
-
- }
- };
- </script>
- <style>
- .inpText {
- width: 100%;
- box-sizing: border-box;
- padding: 0 20rpx;
- background-color: #FFFFFF;
- }
-
- .inpTextBox {
- color: #BBBFC8;
- text-align: left;
- border-bottom: 1px solid #EEEEEE;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- height: 109rpx;
- }
-
- .inpTextLable {
- width: 155rpx;
- display: flex;
- align-items: center;
- }
-
- .inpTextName {
- color: #020F28;
- font-size: 32rpx;
- }
-
- .inpTextBox1 {
- width: 410rpx;
- font-size: 32rpx;
- padding: 0 20rpx;
- box-sizing: border-box;
- color: #333;
- }
-
- .save {
- width: 640rpx;
- height: 87rpx;
- text-align: center;
- line-height: 87rpx;
- color: #fff;
- font-size: 32rpx;
- background: #0A6EE9;
- margin: 0 auto;
- margin-top: 120rpx;
- }
- </style>
|