123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <template>
- <view>
- <view class="content">
- <view class="input_box">
- <input type="text" v-model="mobile" placeholder="请输入手机号" placeholder-style="color:#999;"/>
- </view>
- <view class="send_box">
- <view class="send_code">
- <input type="text" v-model="vcode" placeholder="验证码" placeholder-style="color:#999;"/>
- </view>
-
- <view class="send_btn" @click="send_vcode()">
- 发送验证码
- </view>
- </view>
- <view class="input_box">
- <input type="text" v-model="password" placeholder="请输入新密码" placeholder-style="color:#999;"/>
- </view>
- <view class="input_box">
- <input type="text" v-model="copypassword" placeholder="请重复新密码" placeholder-style="color:#999;"/>
- </view>
-
- <view class="re_btn" @click="repassword()">
- 确认修改
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- mobile:'',
- vcode:'',
- password:'',
- copypassword:''
- };
- },
- methods:{
- async send_vcode(){
-
- if(this.mobile == ''){
- uni.showToast({
- icon:'none',
- title:'手机号不能为空'
- })
- return
- }
-
- const res = await this.$myRequest({
- method:"POST",
- url:'/sms/vcode',
- header:{
- "Content-Type":"application/json",
- Authorization : uni.getStorageSync('token_type') +' '+uni.getStorageSync('Authorization')
- },
- data:{
- mobile:this.mobile
- }
- })
- },
- async repassword(){
- if(this.password == '' || this.copypassword){
- uni.showToast({
- icon:'none',
- title:'请填写完整信息'
- })
- return
- }
-
- if(this.password !== this.copypassword){
- uni.showToast({
- icon:'none',
- title:'两次密码输入不一致'
- })
- return
- }
-
- console.log("发送请求")
-
- const res = await this.$myRequest({
- method:"POST",
- url:'/user/repassword',
- header:{
- "Content-Type":"application/json",
- Authorization : uni.getStorageSync('token_type') +' '+uni.getStorageSync('Authorization')
- },
- data:{
- mobile:this.mobile,
- vcode:this.vcode,
- password:this.password
- }
- })
- }
- }
- }
- </script>
- <style lang="scss">
- page{
- background-color: #f0f0f0;
- }
- .content{
- padding: 21rpx 30rpx 0;
- .input_box{
- margin-bottom: 20rpx;
- padding: 10rpx 25rpx;
- background-color: #fff;
- input{
- height: 60rpx;
- font-size: 28rpx;
- color: #333;
- }
-
- }
- .send_box{
- display: flex;
- justify-content: space-between;
- margin-bottom: 20rpx;
- .send_code{
- width: 400rpx;
- padding: 10rpx 25rpx;
- background-color: #fff;
- input{
- height: 60rpx;
- font-size: 28rpx;
- color: #333;
- }
-
- }
- .send_btn{
- width: 200rpx;
- background-color: #009FE8;
- text-align: center;
- color: #fff;
- font-size: 28rpx;
- line-height: 80rpx;
- }
- }
- .re_btn{
- background-color: #009FE8;
- text-align: center;
- color: #fff;
- font-size: 28rpx;
- line-height: 80rpx;
- }
- }
- </style>
|