Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
super_liu
2021-12-15 21:46:35 +08:00
193 changed files with 2321 additions and 1395 deletions
+9
View File
@@ -0,0 +1,9 @@
import axios from "@/common/axiosV2";
export function phoneUser(params) {
return axios({
url: "api/sys/user/getUserByPhone",
method: "get",
params
});
}
+8
View File
@@ -689,3 +689,11 @@ export function getStandInfoById (data) {
params: data
})
}
// 标准法规工作组接口
export function workGroup(data) {
return axios({
url: 'api/wg_work_group/researchData',
method: 'get',
params: data
})
}