| 1234567891011121314151617181920212223242526 |
- var clients = [];
- $(function () {
- clients = $.clientsInit();
- })
- $.clientsInit = function () {
- var dataJson = {
- authorizeMenu: [],
- authorizeButton: []
- };
- var init = function () {
- $.ajax({
- url: huayi.config.callcenter_url + "configurationapi/api/menu/getcurrentmsg",
- type: "get",
- dataType: "json",
- async: false,
- data: {
- },
- success: function (data) {
- dataJson.authorizeMenu = eval(data.authorizeMenu);
- dataJson.authorizeButton = data.authorizeButton.Result;
- }
- });
- }
- init();
- return dataJson;
- }
|