1234567891011121314151617181920212223 |
- // 查询类型
- define(function (require) {
- return function (context) {
- return {
- xtype: 'widget',
- title: '小区搜索',
- width: 550,
- height: 600,
- grid: {
- url: api('/getAllUptown'),
- mtype: 'post',
- pagination: true,
- autoSizeColumns: true,
- queryParams: {query: context.query},
- // idField: 'userId',
- columns: [[
- {title: 'ID', field: 'uptownId', hidden: true},
- {title: '名称', field: 'uptownName'},
- ]]
- }
- };
- };
- });
|