|
@@ -27,13 +27,14 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|
|
{checkbox: true},
|
|
|
{field: 'id', title: __('Id')},
|
|
|
{field: 'company_id', title: __('Company_id')},
|
|
|
- {field: 'title', title: __('Title'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
|
|
|
+ {field: 'company.companyname', title: __('Company.companyname'), operate: 'LIKE'},
|
|
|
{field: 'type_id', title: __('Type_id')},
|
|
|
+ {field: 'type.name', title: __('Type.name'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
|
|
|
+ {field: 'title', title: __('Title'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
|
|
|
{field: 'image', title: __('Image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
|
|
|
+ {field: 'videofile', title: __('Videofile'), operate: false, formatter: Table.api.formatter.video},
|
|
|
{field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
|
{field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
|
- {field: 'company.companyname', title: __('Company.companyname'), operate: 'LIKE'},
|
|
|
- {field: 'type.name', title: __('Type.name'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
|
|
|
{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
|
|
|
]
|
|
|
]
|
|
@@ -56,12 +57,3 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|
|
};
|
|
|
return Controller;
|
|
|
});
|
|
|
-
|
|
|
-$("#c-type_id").data("params", function (obj) {
|
|
|
- return {
|
|
|
- custom: {company_id: $("#c-company_id").val()}
|
|
|
- };
|
|
|
-});
|
|
|
-$(document).on("change","#c-company_id",function(){
|
|
|
- $("#c-type_id").selectPageClear();
|
|
|
-})
|