12345678910111213141516171819202122 |
- define(function (require) {
- return function (context) {
- return {
- xtype: 'widget',
- title: '人员信息搜索',
- width: 600,
- height: 600,
- grid: {
- url: api('/qrImg/getUptown'),
- mtype: 'POST',
- queryParams: {query: context.query, status: 1},
- idField: 'uptownId',
- columns: [[
- {title: '小区ID', field: 'uptownId', hidden: true},
- {title: '小区名称', field: 'uptownName'},
- {title: '更新时间', field: 'timeUpdate', formatter: 'ts'}
- ]]
- }
- };
- };
- });
|