remonstrance.js
5.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'remonstrance/index' + location.search,
add_url: 'remonstrance/add',
edit_url: 'remonstrance/edit',
del_url: 'remonstrance/del',
multi_url: 'remonstrance/multi',
import_url: 'remonstrance/import',
table: 'remonstrance',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
{field: 'title', title: __('Title'), operate: 'LIKE'},
// {field: 'price', title: __('Price'), operate:'BETWEEN'},
// {field: 'type', title: __('Type'), searchList: {"1":__('Type 1'),"2":__('Type 2'),"3":__('Type 3'),"4":__('Type 4'),"5":__('Type 5'),"6":__('Type 6'),"7":__('Type 7'),"8":__('Type 8'),"9":__('Type 9'),"10":__('Type 10')}, formatter: Table.api.formatter.normal},
// {field: 'qzone_type', title: __('Qzone_type'), searchList: {"1":__('Qzone_type 1'),"2":__('Qzone_type 2')}, formatter: Table.api.formatter.normal},
{field: 'enum', title: __('Enum'), searchList: {"1":__('Enum 1'),"2":__('Enum 2'),"3":__('Enum 3'),"4":__('Enum 4'),"5":__('Enum 5'),"6":__('Enum 6')}, formatter: Table.api.formatter.normal},
// {field: 'Goods_ids', title: __('Goods_ids'), operate: 'LIKE'},
{field: 'goods.title', title: __('Goods.title'), operate: 'LIKE'},
// {field: 'one_talk', title: __('One_talk'), operate: 'LIKE'},
{field: 'icon_image', title: __('Icon_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
{field: 'questionlabel.title', title: __('Questionlabel.title'), operate: 'LIKE'},
// {field: 'QuestionLabel_ids', title: __('Questionlabel_ids'), operate: 'LIKE'},
{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: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
]
]
});
// 为表格绑定事件
Table.api.bindevent(table);
},
add: function () {
var Enum = document.getElementById("c-enum");
var Box = document.getElementById("box");
var Box2 = document.getElementById("box2");
Enum.onchange = function () {
if (Enum.value == 2) {
console.log('显示');
Box.style.display = 'block';
} else {
console.log('隐藏');
Box.style.display = 'none';
}
if (Enum.value == 3) {
console.log('显示');
Box2.style.display = 'block';
} else {
console.log('隐藏');
Box2.style.display = 'none';
}
};
Controller.api.bindevent();
},
edit: function () {
var Enum = Config.type;
var Box = document.getElementById("box");
var Box2 = document.getElementById("box2");
console.log(Enum);
if (Enum == 2) {
console.log('显示');
Box.style.display = 'block';
// Box2.style.display = 'none';
}
if (Enum == 3) {
console.log('显示');
Box2.style.display = 'block';
// Box.style.display = 'none';
}
var Enum2 = document.getElementById("c-enum");
Enum2.onchange = function () {
if (Enum2.value == 2) {
console.log('显示');
Box.style.display = 'block';
} else {
console.log('隐藏');
Box.style.display = 'none';
}
if (Enum2.value == 3) {
console.log('显示');
Box2.style.display = 'block';
} else {
console.log('隐藏');
Box2.style.display = 'none';
}
};
Controller.api.bindevent();
},
api: {
bindevent: function () {
Form.api.bindevent($("form[role=form]"));
}
}
};
return Controller;
});