首页接口对接

This commit is contained in:
仲么了
2023-04-07 08:50:21 +08:00
parent 06d06df88b
commit 99c1f1c0bc
4 changed files with 36 additions and 12 deletions

20
common/api/mine.js Normal file
View File

@@ -0,0 +1,20 @@
import request from '../js/request';
import config from '../js/config';
export function queryPersonSet() {
return request({
url: '/appinfo/queryPersonSet',
method: 'post',
data: {},
});
}
export function queryAppInfo(id) {
return request({
url: '/appinfo/queryAppInfo',
method: 'post',
data: {
id,
},
});
}