@@ -45,7 +45,14 @@ async function handleExchange() {
message: "兑换成功",
showCancel: false,
callback(action) {
- console.log("用户已确认:", action);
+ if (userInfo.value == null) {
+ return
+ }
+ fetchSubjectFeeRecord({
+ createdUserId: userInfo.value.userInfo.userId
+ }).then(res => {
+ recordList.value = res
+ })
},
});
loading.value = false