contacts.js
5.0 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
var index=1;
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'facrm/workweixin/contacts/index',
add_url: '',
edit_url: '',
del_url: '',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
columns: [
[
{field: 'id', title: 'ID'},
{field: 'customer.owner_user', title: __('归属'),
formatter: function (value, row, index) {
if (!value) return '-';
return '<a href="javascript:;" class="btn-addtab">'+value.nickname+"("+value.id+")"+'</a>';
},
events: {
'click .btn-addtab': function (e, value, row, index) {
Backend.api.open('auth/admin/edit/ids/'+value.id,value.nickname+"-编辑");
},
},operate: false},
{field: 'customer_id', title: __('客户'),
formatter: function (value, row, index) {
if (!value||!row.customer) return '-';
return '<a href="javascript:;" class="btn-addtab">'+row.customer.name+"("+value+")"+'</a>';
},
events: {
'click .btn-addtab': function (e, value, row, index) {
Backend.api.open('facrm/customer/index/edit/ids/'+row.customer_id,__("客户详情"));
},
}},
{field: 'name', title: __('姓名'), operate: "LIKE"},
{field: 'avatar', title: __('头像'), events: Table.api.events.image, formatter: Table.api.formatter.image, operate: false},
{field: 'corp_full_name', title: __('公司'), operate: "LIKE"},
{field: 'external_userid', title: __('userid'), operate: "LIKE"},
{
field: 'operate',
title: __('Operate'),
table: table,
events: Table.api.events.operate,
formatter: Table.api.formatter.operate,
}
]
]
});
// 为表格绑定事件
Table.api.bindevent(table);
// 同步微信客户,先同步员工,再同步客户,
$("#toolbar").on('click', '.btn-cloud', function () {
var that = this;
var ids = Table.api.selectedids(table);
if (ids.length > 10) {
return;
}
var title = $(that).data('title') || $(that).attr("title") || __('Edit');
var url = $(that).data('url');
var data = $(that).data() || {};
delete data.title;
Fast.api.ajax({
url:url,
success:function (res) {
Controller.api.syncontacts(1);
}
})
});
},
add: function () {
Controller.api.bindevent();
},
edit: function () {
Controller.api.bindevent();
},
api: {
bindevent: function () {
Form.api.bindevent($("form[role=form]"));
},
syncontacts:function (page) {
//再同步客户
Fast.api.ajax({
url:'facrm/workweixin/contacts/syn',
data:{page:page},
success:function (res) {
$("#table").bootstrapTable("refresh");
Layer.closeAll();
if (res.code==1){
if (res.data.count>0){
Toastr.success(res.msg+",正在同步下一页。。。");
var page=parseInt(res.data.page)+1;
Controller.api.syncontacts(page);//分页同步
}else{
Toastr.success(res.msg);
}
}else {
Toastr.error("同步失败:"+res.msg);
}
}
});
}
}
};
return Controller;
});