uptownWidget.js 699 B

12345678910111213141516171819202122
  1. define(function (require) {
  2. return function (context) {
  3. return {
  4. xtype: 'widget',
  5. title: '人员信息搜索',
  6. width: 600,
  7. height: 600,
  8. grid: {
  9. url: api('/qrImg/getUptown'),
  10. mtype: 'POST',
  11. queryParams: {query: context.query, status: 1},
  12. idField: 'uptownId',
  13. columns: [[
  14. {title: '小区ID', field: 'uptownId', hidden: true},
  15. {title: '小区名称', field: 'uptownName'},
  16. {title: '更新时间', field: 'timeUpdate', formatter: 'ts'}
  17. ]]
  18. }
  19. };
  20. };
  21. });