修改接口报错

This commit is contained in:
duan
2024-12-31 16:14:19 +08:00
parent 75a0fa06bd
commit 8775b23f6a
9 changed files with 12 additions and 12 deletions

View File

@@ -85,7 +85,7 @@ export default {
* 获取当前钱包信息
*/
getAmount() {
this.$Request.getT('app/moneyDetails/selectUserMoney').then((res) => {
this.$Request.getT('/app/moneyDetails/selectUserMoney').then((res) => {
uni.stopPullDownRefresh();
if (res.code === 0) {
this.amount = res.data.amount || 0;
@@ -119,7 +119,7 @@ export default {
page: this.page,
limit: this.limit
};
this.$Request.getT('app/moneyDetails/queryUserMoneyDetails', data).then((res) => {
this.$Request.getT('/app/moneyDetails/queryUserMoneyDetails', data).then((res) => {
setTimeout(() => {
this.refresherTriggered = false;
}, 1500);