view-list-list-model.ts 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/**
 * ViewList 部件模型
 *
 * @export
 * @class ViewListModel
 */
export default class ViewListModel {

	/**
	 * 获取数据项集合
	 *
	 * @returns {any[]}
	 * @memberof ViewListListMode
	 */
	public getDataItems(): any[] {
		return [
17 18 19 20 21
			{
				name: 'instanceaddress',
				prop: 'instanceaddress',
				dataType: 'TEXT',
			},
22 23 24 25 26 27 28 29 30 31
			{
				name: 'srfmajortext',
				prop: 'ibizappviewname',
				dataType: 'TEXT',
			},
			{
				name: 'srfdescription',
				prop: 'viewdescription',
				dataType: 'TEXT',
			},
32 33 34 35 36
			{
				name: 'documentaddress',
				prop: 'documentaddress',
				dataType: 'TEXT',
			},
37 38 39 40
			{
				name: 'ibizappviewtype',
				prop: 'ibizappviewtype',
				dataType: 'TEXT',
41
        codelist:{tag:'AppViewType',codelistType:'STATIC'},
42
			},
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
			{
				name: 'srfkey',
				prop: 'ibizappviewid',
				dataType: 'GUID',
			},
			{
				name: 'ibizappview',
				prop: 'ibizappviewid',
				dataType: 'FONTKEY',
			},

      {
        name:'size',
        prop:'size'
      },
      {
        name:'query',
        prop:'query'
      },
      {
        name:'sort',
        prop:'sort'
      },
      {
        name:'page',
        prop:'page'
      },
      // 前端新增修改标识,新增为"0",修改为"1"或未设值
      {
        name: 'srffrontuf',
        prop: 'srffrontuf',
        dataType: 'TEXT',
      },
		]
	}

}