feat: 添加用户活动记录

This commit is contained in:
eric
2022-11-27 09:07:38 +08:00
parent f5032ceb90
commit 94b3337ab1
13 changed files with 362 additions and 249 deletions

View File

@@ -36,6 +36,9 @@ export const addTable: any = ({ env, tableName, objData, okFun }: Typeint) => {
success: (res: any) => {
okFun(res);
},
fail:(err:any)=>{
console.log('err',err)
}
});
};
@@ -86,6 +89,9 @@ export const getTableid: any = ({
success: (res: any) => {
okFun(res);
},
fail:(err:any)=>{
console.log('err',err)
}
});
}else{
nowtable
@@ -93,6 +99,9 @@ export const getTableid: any = ({
success: (res: any) => {
okFun(res);
},
fail:(err:any)=>{
console.log('err',err)
}
});
}
@@ -118,6 +127,9 @@ export const updateTableid: any = ({
success: (res: any) => {
okFun(res);
},
fail:(err:any)=>{
console.log('err',err)
}
});
};