addons.js 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. define([], function () {
  2. require([], function () {
  3. //绑定data-toggle=addresspicker属性点击事件
  4. $(document).on('click', "[data-toggle='addresspicker']", function () {
  5. var that = this;
  6. var callback = $(that).data('callback');
  7. var input_id = $(that).data("input-id") ? $(that).data("input-id") : "";
  8. var lat_id = $(that).data("lat-id") ? $(that).data("lat-id") : "";
  9. var lng_id = $(that).data("lng-id") ? $(that).data("lng-id") : "";
  10. var lat = lat_id ? $("#" + lat_id).val() : '';
  11. var lng = lng_id ? $("#" + lng_id).val() : '';
  12. var url = "/addons/address/index/select";
  13. url += (lat && lng) ? '?lat=' + lat + '&lng=' + lng : '';
  14. Fast.api.open(url, '位置选择', {
  15. callback: function (res) {
  16. input_id && $("#" + input_id).val(res.address).trigger("change");
  17. lat_id && $("#" + lat_id).val(res.lat).trigger("change");
  18. lng_id && $("#" + lng_id).val(res.lng).trigger("change");
  19. try {
  20. //执行回调函数
  21. if (typeof callback === 'function') {
  22. callback.call(that, res);
  23. }
  24. } catch (e) {
  25. }
  26. }
  27. });
  28. });
  29. });
  30. if (Config.modulename == 'admin' && Config.controllername == 'index' && Config.actionname == 'index') {
  31. require.config({
  32. paths: {
  33. 'vue': "../addons/shopro/libs/vue",
  34. 'moment': "../addons/shopro/libs/moment",
  35. 'text': "../addons/shopro/libs/require-text",
  36. 'chat': '../addons/shopro/libs/chat',
  37. 'ELEMENT': '../addons/shopro/libs/element/element',
  38. },
  39. shim: {
  40. 'ELEMENT': {
  41. deps: ['css!../addons/shopro/libs/element/element.css']
  42. },
  43. },
  44. });
  45. require(['vue', 'jquery', 'chat', 'text!../addons/shopro/chat.html', 'ELEMENT', 'moment'], function (Vue, $, Chat, ChatTemp, ELEMENT, Moment) {
  46. Vue.use(ELEMENT);
  47. var wsUri;
  48. Fast.api.ajax({
  49. url: 'shopro/chat/index/init',
  50. loading: false,
  51. type: 'GET'
  52. }, function (ret, res) {
  53. if (res.data.config.type == 'shopro') {
  54. let wg = 'ws';
  55. if (res.data.config.system.is_ssl == 1) {
  56. wg = 'wss';
  57. }
  58. wsUri = wg + '://' + window.location.hostname + ':' + res.data.config.system.gateway_port;
  59. // 反向代理
  60. if (res.data.config.system.is_ssl == 1 && res.data.config.system.ssl_type == 'reverse_proxy') {
  61. wsUri = wg + '://' + window.location.hostname + '/websocket/';
  62. }
  63. $("body").append(`<div id="chatTemplateContainer" style="display:none"></div>
  64. <div id="chatService"><Chat :passvalue="obj"></Chat></div>`);
  65. $("#chatTemplateContainer").append(ChatTemp);
  66. new Vue({
  67. el: "#chatService",
  68. data() {
  69. return {
  70. obj: {
  71. commonWordsList: res.data.fast_reply,
  72. token: res.data.token,
  73. wsUri: wsUri,
  74. expire_time: res.data.expire_time,
  75. customer_service_id: res.data.customer_service.id,
  76. adminData: res.data,
  77. emoji_list: res.data.emoji
  78. }
  79. }
  80. }
  81. });
  82. }
  83. return false;
  84. }, function (ret, res) {
  85. if (res.msg == '') {
  86. return false;
  87. }
  88. })
  89. });
  90. }
  91. require.config({
  92. paths: {
  93. 'simditor': '../addons/simditor/js/simditor.min',
  94. },
  95. shim: {
  96. 'simditor': [
  97. 'css!../addons/simditor/css/simditor.min.css',
  98. ]
  99. }
  100. });
  101. require(['form'], function (Form) {
  102. var _bindevent = Form.events.bindevent;
  103. Form.events.bindevent = function (form) {
  104. _bindevent.apply(this, [form]);
  105. if ($(Config.simditor.classname || '.editor', form).size() > 0) {
  106. //修改上传的接口调用
  107. require(['upload', 'simditor'], function (Upload, Simditor) {
  108. var editor, mobileToolbar, toolbar;
  109. Simditor.locale = 'zh-CN';
  110. Simditor.list = {};
  111. toolbar = ['title', 'bold', 'italic', 'underline', 'strikethrough', 'fontScale', 'color', '|', 'ol', 'ul', 'blockquote', 'code', 'table', '|', 'link', 'image', 'hr', '|', 'indent', 'outdent', 'alignment'];
  112. mobileToolbar = ["bold", "underline", "strikethrough", "color", "ul", "ol"];
  113. $(Config.simditor.classname || '.editor', form).each(function () {
  114. var id = $(this).attr("id");
  115. editor = new Simditor({
  116. textarea: this,
  117. toolbarFloat: false,
  118. toolbar: toolbar,
  119. pasteImage: true,
  120. defaultImage: Config.__CDN__ + '/assets/addons/simditor/images/image.png',
  121. upload: {url: '/'},
  122. allowedTags: ['div', 'br', 'span', 'a', 'img', 'b', 'strong', 'i', 'strike', 'u', 'font', 'p', 'ul', 'ol', 'li', 'blockquote', 'pre', 'code', 'h1', 'h2', 'h3', 'h4', 'hr'],
  123. allowedAttributes: {
  124. div: ['data-tpl', 'data-source', 'data-id'],
  125. span: ['data-id']
  126. },
  127. allowedStyles: {
  128. div: ['width', 'height', 'padding', 'background', 'color', 'display', 'justify-content', 'border', 'box-sizing', 'max-width', 'min-width', 'position', 'margin-left', 'bottom', 'left', 'margin', 'float'],
  129. p: ['margin', 'color', 'height', 'line-height', 'position', 'width', 'border', 'bottom', 'float'],
  130. span: ['text-decoration', 'color', 'margin-left', 'float', 'background', 'padding', 'margin-right', 'border-radius', 'font-size', 'border', 'float'],
  131. img: ['vertical-align', 'width', 'height', 'object-fit', 'float', 'margin', 'float'],
  132. a: ['text-decoration']
  133. }
  134. });
  135. editor.uploader.on('beforeupload', function (e, file) {
  136. Upload.api.send(file.obj, function (data) {
  137. var url = Fast.api.cdnurl(data.url);
  138. editor.uploader.trigger("uploadsuccess", [file, {success: true, file_path: url}]);
  139. });
  140. return false;
  141. });
  142. editor.on("blur", function () {
  143. this.textarea.trigger("blur");
  144. });
  145. Simditor.list[id] = editor;
  146. });
  147. });
  148. }
  149. }
  150. });
  151. });