tenanManagement.js 588 B

1234567891011121314151617181920
  1. // 尝试租客管理中的常量存放
  2. // import * as tenantManagementApi from '@/api/tenantManagement/index'
  3. // exports.install = function (Vue) {
  4. // Vue.prototype.constantList = function () {
  5. // // 常量全局存放
  6. // tenantManagementApi.constantAll().then((res) => {
  7. // console.log(res)
  8. // })
  9. // };
  10. // Vue.prototype.productList = function () {
  11. // //云服务下拉框全局存放
  12. // tenantManagementApi.productAll().then((res) => {
  13. // this.productList = res.data.data.list
  14. // console.log('云云服务', res)
  15. // })
  16. // };
  17. // };