1234567891011121314151617181920 |
- // 尝试租客管理中的常量存放
- // import * as tenantManagementApi from '@/api/tenantManagement/index'
- // exports.install = function (Vue) {
- // Vue.prototype.constantList = function () {
- // // 常量全局存放
- // tenantManagementApi.constantAll().then((res) => {
- // console.log(res)
- // })
- // };
- // Vue.prototype.productList = function () {
- // //云服务下拉框全局存放
- // tenantManagementApi.productAll().then((res) => {
- // this.productList = res.data.data.list
- // console.log('云云服务', res)
- // })
- // };
- // };
|