1234567891011121314151617181920212223242526272829 |
- // /**
- // * 项目下拉列表
- // */
- // // 只渲染100条数据
- // export function getSelectOrg(data) {
- // return request({
- // url: `${getAPI()}/api/organisation/organization/getOperationCenterOrgSelect`,
- // method: 'post',
- // data,
- // }).then((res) => {
- // res.data = res.data.slice(0, 100);
- // return res;
- // });
- // }
- // /**
- // * 企业下拉列表
- // */
- // // 只渲染100条数据
- // export function getSelectEnterprise(data) {
- // return request({
- // url: `${getAPI()}/api/organisation/virtualarchitecture/getOperationCenterVirtSelect`,
- // method: 'post',
- // data,
- // }).then((res) => {
- // res.data = res.data.slice(0, 100);
- // return res;
- // });
- // }
|