123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- <template>
- <view style="height: 100%">
- <image
- mode="widthFix"
- src="/pages2/static/login_bg.jpg"
- class="full_img"
- ></image>
- <u-navbar
- title="修改密码"
- :border-bottom="false"
- background="{ background: '#ffffff',opacity:0.4; }"
- title-color="#ffffff"
- back-icon-color="#ffffff"
- ></u-navbar>
- <view style="padding: 30rpx">
- <view class="login_box">
- <u-form :model="form" ref="uForm">
- <u-form-item prop="oldpwd"
- ><u-input
- class="password"
- placeholder-style="color:#999999"
- v-model="form.oldpwd"
- type="password"
- placeholder="请输入旧密码"
- /></u-form-item>
- <u-form-item prop="pwd"
- ><u-input
- class="password"
- placeholder-style="color:#999999"
- v-model="form.pwd"
- type="password"
- placeholder="请输入新密码"
- /></u-form-item>
- <u-form-item prop="pwdAgain"
- ><u-input
- class="password"
- placeholder-style="color:#999999"
- v-model="form.pwdAgain"
- type="password"
- placeholder="再次输入新密码"
- /></u-form-item>
- </u-form>
- </view>
- <button
- :disabled="isUse"
- class="loginBtn"
- :class="{ able: canSubmit() }"
- @click="submit"
- >
- 确定
- </button>
- </view>
- <u-verification-code
- seconds="60"
- ref="uCode"
- @change="codeChange"
- ></u-verification-code>
- <!-- <u-navbar title="" :border-bottom="false" background="{ background: '#ffffff',opacity:0.4; }" title-color="#ffffff" back-icon-color="#ffffff">
-
- </u-navbar> -->
- </view>
- </template>
- <script>
- import {mapGetters} from 'vuex';
- export default {
- data() {
- return {
- code: "",
- form: {
- code: "",
- tel: "",
- pwd: "",
- pwdAgain: "",
- },
- rules: {
- pwd: [
- {
- required: true,
- message: "请输入密码",
- // 可以单个或者同时写两个触发验证方式
- trigger: ["change"],
- },
- ],
- pwdAgain: [
- {
- required: true,
- message: "请输入密码",
- // 可以单个或者同时写两个触发验证方式
- trigger: ["change"],
- },
- ],
- oldpwd: [
- {
- required: true,
- message: "请输入旧密码",
- // 可以单个或者同时写两个触发验证方式
- trigger: ["change"],
- },
- ],
- },
- codeTips: "",
- read: "",
- isUse: false,
- };
- },
- methods: {
- canSubmit() {
- if (
- this.form.oldpwd &&
- this.form.pwd &&
- this.form.pwdAgain
- ) {
- return true;
- }
- return false;
- },
- submit() {
- let that = this;
- if (!this.form.oldpwd) {
- this.$u.toast("请输入旧密码");
- return;
- }
- if (!this.form.pwd) {
- this.$u.toast("请输入新密码");
- return;
- }
- if (!this.form.pwdAgain) {
- this.$u.toast("请输入确定新密码");
- return;
- }
- if (this.form.pwd != this.form.pwdAgain) {
- this.$u.toast("两次密码不一致");
- return;
- }
- that.isUse = true;
- console.log(this.userInfo,"sda")
- let datas = {
- userId: this.userInfo.userId,
- oldPwd: this.form.oldpwd,
- newPwd: this.form.pwd,
- };
- that.$api.appuserupdatePwd(datas).then(
- (res) => {
- that.isUse = false;
- if (res.data.code == 200) {
- uni.showModal({
- title: "提示",
- content: "修改成功",
- showCancel: false,
- success: function (resst) {
- // this.$navTo.togo()
- uni.reLaunch({
- url: "/pages/wd/index",
- });
- },
- });
- } else {
- that.$u.toast(res.data.msg);
- }
- },
- (err) => {
- that.isUse = false;
- console.log(err);
- }
- );
- },
- },
- onLoad(option) {
- let that = this;
- // this.from = option.from; // 看页面没有用到
- uni.login({
- provider: "weixin",
- success: function (loginRes) {
- that.code = loginRes.code;
- },
- });
- },
- onReady() {
- this.$refs.uForm.setRules(this.rules);
- },
- computed: {...mapGetters(['userInfo'])},
- };
- </script>
- <style scoped lang="scss">
- .wxBtn {
- position: fixed;
- bottom: 10%;
- width: 100%;
- left: 0;
- }
- /deep/ .wxBtn button::after {
- border: none;
- }
- .loginBtn {
- width: 526rpx;
- height: 80rpx;
- background: linear-gradient(90deg, #015eea, #00c0fa);
- box-shadow: 0rpx 10rpx 16rpx 4rpx rgba(1, 99, 235, 0.04);
- opacity: 0.6;
- border-radius: 40rpx;
- color: #ffffff;
- text-align: center;
- line-height: 80rpx;
- margin: 40rpx auto;
- &.able {
- opacity: 1;
- }
- }
- .wxloginBtn {
- background: url("/static/loginBtn.png") no-repeat;
- background-size: 100% 100%;
- border: none;
- width: 100rpx;
- height: 100rpx;
- }
- /deep/page {
- background-color: #ffffff;
- height: 100%;
- width: 100%;
- }
- .login_box {
- width: 100%;
- height: 566rpx;
- background: #ffffff;
- box-shadow: 0rpx 0rpx 16rpx 4rpx rgba(1, 99, 235, 0.1);
- border-radius: 24rpx;
- margin-top: 30rpx;
- padding: 40rpx 35rpx;
- .password {
- /deep/.uicon-eye-fill {
- &::before {
- color: #007aff;
- content: "\e613";
- }
- }
- }
- }
- /deep/ .u-item-bg {
- border-radius: 32px !important;
- }
- /deep/ .u-subsection {
- border-radius: 32px !important;
- }
- .full_img {
- position: absolute;
- left: 0;
- display: block;
- width: 100%;
- z-index: -999;
- top: 0;
- }
- .head {
- height: 96rpx;
- width: 100%;
- line-height: 96rpx;
- margin-top: 40rpx;
- text-align: center;
- display: flex;
- position: relative;
- justify-content: center;
- }
- .icon {
- position: absolute;
- left: 30rpx;
- }
- .aa {
- padding: 10rpx;
- text-align: center;
- margin-top: 10rpx;
- }
- </style>
|