123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- define([], function () {
- require([], function () {
- //绑定data-toggle=addresspicker属性点击事件
- $(document).on('click', "[data-toggle='addresspicker']", function () {
- var that = this;
- var callback = $(that).data('callback');
- var input_id = $(that).data("input-id") ? $(that).data("input-id") : "";
- var lat_id = $(that).data("lat-id") ? $(that).data("lat-id") : "";
- var lng_id = $(that).data("lng-id") ? $(that).data("lng-id") : "";
- var lat = lat_id ? $("#" + lat_id).val() : '';
- var lng = lng_id ? $("#" + lng_id).val() : '';
- var url = "/addons/address/index/select";
- url += (lat && lng) ? '?lat=' + lat + '&lng=' + lng : '';
- Fast.api.open(url, '位置选择', {
- callback: function (res) {
- input_id && $("#" + input_id).val(res.address).trigger("change");
- lat_id && $("#" + lat_id).val(res.lat).trigger("change");
- lng_id && $("#" + lng_id).val(res.lng).trigger("change");
- try {
- //执行回调函数
- if (typeof callback === 'function') {
- callback.call(that, res);
- }
- } catch (e) {
- }
- }
- });
- });
- });
- if (Config.modulename == 'admin' && Config.controllername == 'index' && Config.actionname == 'index') {
- require.config({
- paths: {
- 'vue': "../addons/shopro/libs/vue",
- 'moment': "../addons/shopro/libs/moment",
- 'text': "../addons/shopro/libs/require-text",
- 'chat': '../addons/shopro/libs/chat',
- 'ELEMENT': '../addons/shopro/libs/element/element',
- },
- shim: {
- 'ELEMENT': {
- deps: ['css!../addons/shopro/libs/element/element.css']
- },
- },
- });
- require(['vue', 'jquery', 'chat', 'text!../addons/shopro/chat.html', 'ELEMENT', 'moment'], function (Vue, $, Chat, ChatTemp, ELEMENT, Moment) {
- Vue.use(ELEMENT);
- var wsUri;
- Fast.api.ajax({
- url: 'shopro/chat/index/init',
- loading: false,
- type: 'GET'
- }, function (ret, res) {
- if (res.data.config.type == 'shopro') {
- let wg = 'ws';
- if (res.data.config.system.is_ssl == 1) {
- wg = 'wss';
- }
- wsUri = wg + '://' + window.location.hostname + ':' + res.data.config.system.gateway_port;
- // 反向代理
- if (res.data.config.system.is_ssl == 1 && res.data.config.system.ssl_type == 'reverse_proxy') {
- wsUri = wg + '://' + window.location.hostname + '/websocket/';
- }
- $("body").append(`<div id="chatTemplateContainer" style="display:none"></div>
- <div id="chatService"><Chat :passvalue="obj"></Chat></div>`);
- $("#chatTemplateContainer").append(ChatTemp);
- new Vue({
- el: "#chatService",
- data() {
- return {
- obj: {
- commonWordsList: res.data.fast_reply,
- token: res.data.token,
- wsUri: wsUri,
- expire_time: res.data.expire_time,
- customer_service_id: res.data.customer_service.id,
- adminData: res.data,
- emoji_list: res.data.emoji
- }
- }
- }
- });
- }
- return false;
- }, function (ret, res) {
- if (res.msg == '') {
- return false;
- }
- })
- });
- }
- require.config({
- paths: {
- 'simditor': '../addons/simditor/js/simditor.min',
- },
- shim: {
- 'simditor': [
- 'css!../addons/simditor/css/simditor.min.css',
- ]
- }
- });
- require(['form'], function (Form) {
- var _bindevent = Form.events.bindevent;
- Form.events.bindevent = function (form) {
- _bindevent.apply(this, [form]);
- if ($(Config.simditor.classname || '.editor', form).size() > 0) {
- //修改上传的接口调用
- require(['upload', 'simditor'], function (Upload, Simditor) {
- var editor, mobileToolbar, toolbar;
- Simditor.locale = 'zh-CN';
- Simditor.list = {};
- toolbar = ['title', 'bold', 'italic', 'underline', 'strikethrough', 'fontScale', 'color', '|', 'ol', 'ul', 'blockquote', 'code', 'table', '|', 'link', 'image', 'hr', '|', 'indent', 'outdent', 'alignment'];
- mobileToolbar = ["bold", "underline", "strikethrough", "color", "ul", "ol"];
- $(Config.simditor.classname || '.editor', form).each(function () {
- var id = $(this).attr("id");
- editor = new Simditor({
- textarea: this,
- toolbarFloat: false,
- toolbar: toolbar,
- pasteImage: true,
- defaultImage: Config.__CDN__ + '/assets/addons/simditor/images/image.png',
- upload: {url: '/'},
- allowedTags: ['div', 'br', 'span', 'a', 'img', 'b', 'strong', 'i', 'strike', 'u', 'font', 'p', 'ul', 'ol', 'li', 'blockquote', 'pre', 'code', 'h1', 'h2', 'h3', 'h4', 'hr'],
- allowedAttributes: {
- div: ['data-tpl', 'data-source', 'data-id'],
- span: ['data-id']
- },
- allowedStyles: {
- div: ['width', 'height', 'padding', 'background', 'color', 'display', 'justify-content', 'border', 'box-sizing', 'max-width', 'min-width', 'position', 'margin-left', 'bottom', 'left', 'margin', 'float'],
- p: ['margin', 'color', 'height', 'line-height', 'position', 'width', 'border', 'bottom', 'float'],
- span: ['text-decoration', 'color', 'margin-left', 'float', 'background', 'padding', 'margin-right', 'border-radius', 'font-size', 'border', 'float'],
- img: ['vertical-align', 'width', 'height', 'object-fit', 'float', 'margin', 'float'],
- a: ['text-decoration']
- }
- });
- editor.uploader.on('beforeupload', function (e, file) {
- Upload.api.send(file.obj, function (data) {
- var url = Fast.api.cdnurl(data.url);
- editor.uploader.trigger("uploadsuccess", [file, {success: true, file_path: url}]);
- });
- return false;
- });
- editor.on("blur", function () {
- this.textarea.trigger("blur");
- });
- Simditor.list[id] = editor;
- });
- });
- }
- }
- });
- });
|