只渲染100条.js 715 B

1234567891011121314151617181920212223242526272829
  1. // /**
  2. // * 项目下拉列表
  3. // */
  4. // // 只渲染100条数据
  5. // export function getSelectOrg(data) {
  6. // return request({
  7. // url: `${getAPI()}/api/organisation/organization/getOperationCenterOrgSelect`,
  8. // method: 'post',
  9. // data,
  10. // }).then((res) => {
  11. // res.data = res.data.slice(0, 100);
  12. // return res;
  13. // });
  14. // }
  15. // /**
  16. // * 企业下拉列表
  17. // */
  18. // // 只渲染100条数据
  19. // export function getSelectEnterprise(data) {
  20. // return request({
  21. // url: `${getAPI()}/api/organisation/virtualarchitecture/getOperationCenterVirtSelect`,
  22. // method: 'post',
  23. // data,
  24. // }).then((res) => {
  25. // res.data = res.data.slice(0, 100);
  26. // return res;
  27. // });
  28. // }