export default [ // GetTableInfo { url: "/table/getTableList", type: "post", response: () => { return { code: 200, msg: "成功", data: { list: [ { key: "1", name: "John Brown", age: 32, address: "New York No. 1 Lake Park", tags: ["nice", "developer"], }, { key: "2", name: "Jim Green", age: 42, address: "London No. 1 Lake Park", tags: ["loser"], }, { key: "3", name: "Joe Black", age: 32, address: "Sidney No. 1 Lake Park", tags: ["cool", "teacher"], }, ], }, }; }, }, ];