bootstrap.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. if (Config.modulename == 'admin' && Config.controllername == 'index' && Config.actionname == 'index') {
  2. require.config({
  3. paths: {
  4. 'vue': "../addons/shopro/libs/vue",
  5. 'moment': "../addons/shopro/libs/moment",
  6. 'text': "../addons/shopro/libs/require-text",
  7. 'chat': '../addons/shopro/libs/chat',
  8. 'ELEMENT': '../addons/shopro/libs/element/element',
  9. },
  10. shim: {
  11. 'ELEMENT': {
  12. deps: ['css!../addons/shopro/libs/element/element.css']
  13. },
  14. },
  15. });
  16. require(['vue', 'jquery', 'chat', 'text!../addons/shopro/chat.html', 'ELEMENT', 'moment'], function (Vue, $, Chat, ChatTemp, ELEMENT, Moment) {
  17. Vue.use(ELEMENT);
  18. var wsUri;
  19. Fast.api.ajax({
  20. url: 'shopro/chat/index/init',
  21. loading: false,
  22. type: 'GET'
  23. }, function (ret, res) {
  24. if (res.data.config.type == 'shopro') {
  25. let wg = 'ws';
  26. if (res.data.config.system.is_ssl == 1) {
  27. wg = 'wss';
  28. }
  29. wsUri = wg + '://' + window.location.hostname + ':' + res.data.config.system.gateway_port;
  30. // 反向代理
  31. if (res.data.config.system.is_ssl == 1 && res.data.config.system.ssl_type == 'reverse_proxy') {
  32. wsUri = wg + '://' + window.location.hostname + '/websocket/';
  33. }
  34. $("body").append(`<div id="chatTemplateContainer" style="display:none"></div>
  35. <div id="chatService"><Chat :passvalue="obj"></Chat></div>`);
  36. $("#chatTemplateContainer").append(ChatTemp);
  37. new Vue({
  38. el: "#chatService",
  39. data() {
  40. return {
  41. obj: {
  42. commonWordsList: res.data.fast_reply,
  43. token: res.data.token,
  44. wsUri: wsUri,
  45. expire_time: res.data.expire_time,
  46. customer_service_id: res.data.customer_service.id,
  47. adminData: res.data,
  48. emoji_list: res.data.emoji
  49. }
  50. }
  51. }
  52. });
  53. }
  54. return false;
  55. }, function (ret, res) {
  56. if (res.msg == '') {
  57. return false;
  58. }
  59. })
  60. });
  61. }