ANTVUE项目实战二
1 . .env文件变量获取 process.env.VUE_APP_ProjectName 2 . getDataList() { this .selectedRowKeys = [] this .loading = true this .$http .post( '/BaseWarehouse/T_Warehouse/GetDataList' , { PageIndex: this .pagination.current, PageRows: this .pagination.pageSize, SortField: this .sorter.field || 'Id' , SortType: this .sorter.order, ... this .queryParam, ... this .filters }) .then(resJson => { this .loading = false this .data = resJson.Data const pagination = { ... this .pagination } pagination.total = resJson.Total this .pagination = pagination }) }, 查询参数: { "PageIndex":1,"PageRows":10,"SortField":"Id",