123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'jianceproject/index' + location.search,
- add_url: 'jianceproject/add',
- edit_url: 'jianceproject/edit',
- del_url: 'jianceproject/del',
- multi_url: 'jianceproject/multi',
- import_url: 'jianceproject/import',
- table: 'jiance_project',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- search: false,
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id'),operate:false},
- // {field: 'company_id', title: __('Company_id')},
- {field: 'company.companyname', title: __('Company.companyname'), operate: 'LIKE'},
- // {field: 'pid', title: __('Pid')},
- {field: 'pj.title', title: '上级',operate:'LIKE'},
- {field: 'title', title: __('Title'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'type', title: __('Type'), searchList: {"0":__('Type 0'),"1":__('Type 1'),"2":__('Type 2')}, formatter: Table.api.formatter.normal},
- {field: 'info', title: __('Info'), operate: false, table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'weigh', title: __('Weigh'), operate: false},
- {field: 'createtime', title: __('Createtime'), operate:false, addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
- {field: 'operate', title: __('Operate'), table: table,
- buttons:[
- {
- name:'addchild',
- text:'添加',
- title:'添加',
- icon:'fa fa-exclamation-circle',
- classname:'btn btn-xs btn-info btn-dialog btn-addchild',
- url:function(row){
- return 'jianceproject/addchild/company_id/'+ row.company_id +'/pid/'+ row.id +'?dialog=1'
- },
- target:'_self',
- hidden:function(row){
- if(row.pid == 0){
- return false;
- }
- return true;
- },
- refresh:true,
- },
- ],
- events: Table.api.events.operate, formatter: Table.api.formatter.operate}
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- recyclebin: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- 'dragsort_url': ''
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: 'jianceproject/recyclebin' + location.search,
- pk: 'id',
- sortName: 'id',
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id')},
- {field: 'title', title: __('Title'), align: 'left'},
- {
- field: 'deletetime',
- title: __('Deletetime'),
- operate: 'RANGE',
- addclass: 'datetimerange',
- formatter: Table.api.formatter.datetime
- },
- {
- field: 'operate',
- width: '140px',
- title: __('Operate'),
- table: table,
- events: Table.api.events.operate,
- buttons: [
- {
- name: 'Restore',
- text: __('Restore'),
- classname: 'btn btn-xs btn-info btn-ajax btn-restoreit',
- icon: 'fa fa-rotate-left',
- url: 'jianceproject/restore',
- refresh: true
- },
- {
- name: 'Destroy',
- text: __('Destroy'),
- classname: 'btn btn-xs btn-danger btn-ajax btn-destroyit',
- icon: 'fa fa-times',
- url: 'jianceproject/destroy',
- refresh: true
- }
- ],
- formatter: Table.api.formatter.operate
- }
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- addchild: function () {
- Controller.api.bindevent();
- },
- add: function () {
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.bindevent();
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- return Controller;
- });
|