123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'unishop/school/index' + location.search,
- add_url: 'unishop/school/add',
- edit_url: 'unishop/school/edit',
- del_url: 'unishop/school/del',
- multi_url: 'unishop/school/multi',
- table: 'school',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id')},
- {field: 'area.name', title: __('所属区县')},
- {field: 'name', title: __('Name')},
- {field: 'operate', title: __('Operate'),
- buttons: [{
- name: '',
- title:'配送详情',
- text: '配送详情',
- icon: '',
- classname: 'btn btn-xs btn-info btn-dialog',
- url: 'unishop/school/data',
- }],
- table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- add: function () {
- Controller.api.bindevent();
- $("#c-area_id").on("cp:updated", function() {
- var citypicker = $(this).data("citypicker");
- var code = citypicker.getCode("district");
- $("#c-area_id").val(code);
- $("#c-name").val("");
- });
- },
- edit: function () {
- Controller.api.bindevent();
- $("#c-area_id").on("cp:updated", function() {
- var citypicker = $(this).data("citypicker");
- var code = citypicker.getCode("district");
- $("#c-area_id").val(code);
- $("#c-name").val("");
- });
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- return Controller;
- });
|