vue接口交互写死的
vue接口 写死的
RoleOfUserOrgRef: function ({ commit }, param) {
return new Promise((resolve) => {
$axios.post(`${process.env.API.stsURL}/iscAppOrgUserRelationT/list/page`, param).then((response) => {
// $axios.post(`http://10.124.50.60:8080/isc-rest/iscSysUserT/list/page`, param).then((response) => {
resolve(response.data.dataResult);
})
})
},