This commit is contained in:
2020-06-15 10:00:14 +08:00
parent ee16ae96e0
commit 71cd101d97
7 changed files with 114 additions and 0 deletions

10
common/api/shop.js Normal file
View File

@@ -0,0 +1,10 @@
export default {
init(vm){
return {
postlogn({id,name}){
return vm.$u.get('url',{id,name});
}
}
}
}

10
common/api/user.js Normal file
View File

@@ -0,0 +1,10 @@
export default {
init(vm){
return {
getlogn({id,name}){
return vm.$u.get('popArticles');
}
}
}
}