Commit 0c6ea2de authored by liwei's avatar liwei

去掉了debugger

parent 0d9b6ba6
......@@ -39,7 +39,6 @@
},
hideDialog() {
this.show = false;
debugger
if (this.isConfirm != undefined&&this.isConfirm!=null && this.isConfirm == true) {
this.$emit('confirm')
}
......@@ -320,4 +319,4 @@
color: #666666;
line-height: 40rpx;
}
</style>
\ No newline at end of file
</style>
......@@ -237,7 +237,6 @@
console.log("请求失败")
}
}).catch(res => {
debugger
// 如果请求失败写this.$refs.paging.complete(false);
// 注意,每次都需要在catch中写这句话很麻烦,z-paging提供了方案可以全局统一处理
// 在底层的网络请求抛出异常时,写uni.$emit('z-paging-error-emit');即可
......
......@@ -115,7 +115,6 @@
});
},
updateImage(type) {
debugger
var that = this;
console.log(that.showList);
console.log(type);
......@@ -264,4 +263,4 @@
margin-top: 16rpx;
}
}
</style>
\ No newline at end of file
</style>
......@@ -624,31 +624,9 @@ export default {
}
return day
},
calendarConfirm(e) {
this.showCalendar = false
this.model1.hotel = `${e[0]} / ${e[e.length - 1]}`
this.$refs.form1.validateField('hotel')
},
codeChange(text) {
this.tips = text;
},
getCode() {
if (this.$refs.uCode.canGetCode) {
// 模拟向后端请求验证码
uni.showLoading({
title: '正在获取验证码'
})
setTimeout(() => {
uni.hideLoading();
// 这里此提示会被this.start()方法中的提示覆盖
uni.$u.toast('验证码已发送');
// 通知验证码组件内部开始倒计时
this.$refs.uCode.start();
}, 2000);
} else {
uni.$u.toast('倒计时结束后再发送');
}
},
calendarClose() {
this.showCalendar = false
this.$refs.form1.validateField('hotel')
......
......@@ -435,7 +435,6 @@
method: 'GET',
});
if (res.data.code == 200) {
debugger
this.userInfo = res.data.data;
this.waitApprovedImg = res.data.data.waitApprovedImg;
} else {
......
......@@ -53,7 +53,6 @@
},
methods: {
gotoPage(item) {
debugger
if (item.name == "注销账户") {
this.isShow = true;
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment