123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- <template>
- <view>
- <view class="container">
- <!--顶部返回按钮-->
- <text class="back-btn iconfont iconzuo" @tap="navBack"></text>
- <view class="right-top-sign"></view>
- <view class="wrapper">
- <view class="left-top-sign"> Reset</view>
- <view class="welcome"> 修改密码 </view>
- <view class="input-content">
- <view class="input-item">
- <text class="tit">旧密码</text>
- <input type="password" placeholder="请输入旧密码" v-model="oldpwd" />
- </view>
- <view class="input-item">
- <text class="tit">新密码</text>
- <input v-model="newpwd" type="password" placeholder="请输入新密码" />
- </view>
- <view class="input-item">
- <text class="tit">确认密码</text>
- <input v-model="confirmpwd" type="password" placeholder="请输入确认密码" />
- </view>
- </view>
- <button class="confirm-btn" :class="'bg-' + themeColor.name" @click="checkPwd()">
- 修改密码
- </button>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- toastMsg
- } from '@/pages/toast/toast.js'
- export default {
- data() {
- return {
- oldpwd: '',
- newpwd: '',
- confirmpwd: '',
- hasLogin: false
- };
- },
- onLoad(options) {
- },
- methods: {
- navBack() {
- this.$mRouter.back();
- },
- navTo(route) {
- this.$mRouter.push({
- route
- });
- },
- checkPwd() {
- if (this.oldpwd == '') {
- toastMsg('warning', "请输入旧密码");
- return false;
- }
- if (this.newpwd == '') {
- toastMsg('warning', "请输入新密码");
- return false;
- }
- if (this.confirmpwd == '') {
- toastMsg('warning', "请输入确认密码");
- return false;
- } else if (this.confirmpwd != this.newpwd) {
- toastMsg('warning', "两次密码输入不一致");
- return false;
- }
- toastMsg("loading", "提交中..");
- this.changePwd();
- },
- changePwd() {
- this.hasLogin = this.$mStore.getters.hasLogin;
- if (this.hasLogin) {
- var url = this.$mConfig.baseUrl + '/system/user/profile/updatePwd?oldPassword=' + this.oldpwd +
- '&newPassword=' + this.newpwd;
- var that = this;
- var token = this.$preToken + ' ' + this.$store.state.accessToken;
- uni.request({
- url: url,
- method: "PUT",
- header: {
- 'content-type': 'application/json',
- 'Authorization': token
- },
- dataType: "JSON",
- success: function(r) {
- var res = r.data;
- if (res.code == "200") {
- toastMsg('success', '修改成功');
- that.navBack();
- } else {
- toastMsg('warning', res.msg);
- }
- }
- })
- } else {
- toastMsg('warning', '登录信息已失效,请重新登录');
- uni.reLaunch({
- url: '../public/login'
- })
- }
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background: $color-white;
- }
- .container {
- padding-top: 60px;
- position: relative;
- width: 100vw;
- overflow: hidden;
- .wrapper {
- position: relative;
- width: 100vw;
- z-index: 90;
- background: #fff;
- padding-bottom: 40upx;
- .welcome {
- position: relative;
- left: 50upx;
- top: -90upx;
- font-size: 46upx;
- color: #555;
- text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.3);
- }
- .input-content {
- padding: 0 60upx;
- }
- .input-item {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: center;
- padding: 0 30upx;
- background: $page-color-light;
- height: 120upx;
- border-radius: 4px;
- margin-bottom: 50upx;
- &:last-child {
- margin-bottom: 0;
- }
- .tit {
- height: 50upx;
- line-height: 56upx;
- font-size: $font-sm + 2upx;
- color: $font-color-base;
- }
- input {
- height: 60upx;
- font-size: $font-base + 2upx;
- color: $font-color-dark;
- width: 100%;
- }
- }
- .input-item-sms-code {
- position: relative;
- .sms-code-btn {
- position: absolute;
- right: 20upx;
- color: #111;
- bottom: 20upx;
- font-size: 28upx;
- }
- .sms-code-resend {
- color: #999;
- }
- }
- .forget-section {
- font-size: $font-sm + 2upx;
- color: $font-color-spec;
- text-align: center;
- margin-top: 40upx;
- }
- }
- .back-btn {
- position: absolute;
- left: 40upx;
- z-index: 9999;
- padding-top: var(--status-bar-height);
- top: 40upx;
- font-size: 40upx;
- color: $font-color-dark;
- }
- .left-top-sign {
- font-size: 120upx;
- color: $page-color-base;
- position: relative;
- left: -16upx;
- }
- .right-top-sign {
- position: absolute;
- top: 80upx;
- right: -30upx;
- z-index: 95;
- &:before,
- &:after {
- display: block;
- content: '';
- width: 400upx;
- height: 80upx;
- background: #b4f3e2;
- }
- &:before {
- transform: rotate(50deg);
- border-radius: 0 50px 0 0;
- }
- &:after {
- position: absolute;
- right: -198upx;
- top: 0;
- transform: rotate(-50deg);
- border-radius: 50px 0 0 0;
- /* background: pink; */
- }
- }
- .register-section {
- margin: 50upx 0 50upx 0;
- width: 100%;
- font-size: $font-sm + 2upx;
- color: $font-color-base;
- text-align: center;
- text {
- color: $font-color-spec;
- margin-left: 10upx;
- margin-right: 10upx;
- }
- }
- }
- .password-type-2 {
- width: 100%;
- position: relative;
- .back-btn {
- position: absolute;
- left: 40upx;
- z-index: 9999;
- padding-top: var(--status-bar-height);
- top: 40upx;
- font-size: 48upx;
- color: $color-white;
- }
- .login-top {
- height: 460upx;
- position: relative;
- .desc {
- position: absolute;
- top: 200upx;
- left: 40upx;
- font-size: 48upx;
- .title {
- font-size: 48upx;
- }
- }
- .login-pic {
- position: absolute;
- width: 220upx;
- height: 270upx;
- right: 30upx;
- top: 100upx;
- }
- }
- .login-type-content {
- position: relative;
- top: -72upx;
- .login-bg {
- width: 94vw;
- height: 114vw;
- margin: 0 3vw;
- }
- .main {
- width: 94vw;
- position: absolute;
- top: 0;
- left: 3vw;
- .nav-bar {
- display: flex;
- height: 100upx;
- justify-content: center;
- align-items: center;
- position: relative;
- z-index: 10;
- .nav-bar-item {
- flex: 1;
- display: flex;
- height: 100%;
- line-height: 96upx;
- font-size: $font-lg;
- display: flex;
- margin: 0 120upx;
- justify-content: center;
- }
- .nav-bar-item-active {
- border-bottom: 5upx solid;
- }
- }
- .login-type-form {
- width: 80%;
- margin: 50upx auto;
- .input-item {
- position: relative;
- height: 90upx;
- line-height: 90upx;
- margin-bottom: $spacing-lg;
- .iconfont {
- font-size: 50upx;
- position: absolute;
- left: 0;
- }
- .login-type-input {
- height: 90upx;
- padding-left: 80upx;
- border-bottom: 1upx solid rgba(0, 0, 0, .1);
- }
- .sms-code-btn,
- sms-code-resend {
- width: 240upx;
- font-size: $font-base - 2upx;
- }
- }
- }
- .login-type-tips {
- padding: 0 50upx;
- display: flex;
- justify-content: space-between;
- }
- .confirm-btn {
- height: 80upx;
- line-height: 80upx;
- }
- }
- }
- .login-type-bottom {
- width: 100%;
- padding-bottom: 30upx;
- text-align: center;
- font-size: $font-lg;
- }
- }
- </style>
|