var styleHtml = '
'; styleHtml += ''; styleHtml += '
'; styleHtml += '
{{data.styleName}}
'; styleHtml += '
'; styleHtml += '
'; Vue.component("text-style", { template: styleHtml, data: function () { return { data: this.$parent.data, styleList: { "style-0": { "text": "标题栏", "subTitle": {"isElementShow": false}, "more": {"isElementShow": false} }, "style-1": { "text": "标题栏", "subTitle": {"isElementShow": false}, "more": {"isElementShow": false} }, "style-2": { "text": "标题栏", "subTitle": {"isElementShow": false}, "more": {"isElementShow": false} }, "style-3": { "text": "标题栏", "subTitle": {"isElementShow": false}, "more": {"isElementShow": false} }, "style-4": { "text": "标题栏", "subTitle": {"isElementShow": false}, "more": {"isElementShow": false} }, "style-5": { "text": "标题栏", "subTitle": {"isElementShow": false}, "more": {"isElementShow": false} }, "style-6": { "text": "标题栏", "subTitle": {"isElementShow": false}, "more": {"isElementShow": false} }, "style-7": { "text": "标题栏", "subTitle": {"isElementShow": false}, "more": {"isElementShow": false} }, "style-8": { "text": "标题栏", "subTitle": {"isElementShow": false}, "more": {"isElementShow": false} }, "style-9": { "text": "为您推荐", "textColor": "#3b2ce7", "fontSize": 16, "fontWeight": 'bold', "subTitle": { "fontSize": 14, "text": "夏日清爽出行必备", "isElementShow": true, "color": "#b7bcd2" }, "more": {"isElementShow": false} }, "style-10": { "text": "为您推荐", "textColor": "#FF95AC", "fontSize": 16, "fontWeight": 'bold', "subTitle": { "fontSize": 14, "text": "夏日清爽出行必备", "isElementShow": true, "color": "#B7BCD2" }, "more": {"isElementShow": false} }, "style-11": { "text": "为您推荐", "textColor": "#FF3B3B", "fontSize": 16, "fontWeight": 'bold', "subTitle": { "fontSize": 14, "text": "夏日清爽出行必备", "isElementShow": true, "color": "#FFB2B2" }, "more": { "text": "查看更多", "link": {"name": ""}, "isShow": true, "isElementShow": true, "color": "#999999" } }, "style-12": { "text": "标题栏", "textColor": "#303133", "fontSize": 16, "fontWeight": 'bold', "subTitle": { "fontSize": 14, "text": "副标题", "isElementShow": true, "color": "#999999" }, "more": { "text": "更多", "link": {"name": ""}, "isShow": true, "isElementShow": true, "color": "#999999" } }, "style-13": { "text": "夏日纳凉精选", "textColor": "#FFC425", "fontSize": 16, "fontWeight": 'bold', "subTitle": {"isElementShow": false}, "more": {"isElementShow": false} }, "style-14": { "text": "标题", "textColor": "#9849FF", "fontSize": 16, "fontWeight": 'bold', "subTitle": { "fontSize": 14, "text": "TITLE ZONE", "isElementShow": true, "color": "#9849FF" }, "more": { "text": "更多", "link": {"name": ""}, "isShow": true, "isElementShow": true, "color": "#999999" } }, "style-15": { "text": "标题专区", "textColor": "#9849FF", "fontSize": 16, "fontWeight": 'bold', "subTitle": { "fontSize": 14, "text": "TITLE ZONE", "isElementShow": true, "color": "#9849FF" }, "more": {"isElementShow": false} }, "style-16": { "text": "标题专区", "textColor": "#303133", "fontSize": 16, "fontWeight": 'bold', "subTitle": { "fontSize": 14, "text": "副标题", "isElementShow": true, "color": "#FFFFFF", "bgColor": "#FC0F85", "icon": "icondiy icon-system-bargain-one", "fontWeight": 'bold', }, "more": { "text": "更多", "link": {"name": ""}, "isShow": true, "isElementShow": true, "color": "#999999" } } }, list: {}, } }, created: function () { if (!this.$parent.data.verify) this.$parent.data.verify = []; this.$parent.data.verify.push(this.verify);//加载验证方法 this.$parent.data.ignore = ['elementAngle', 'elementBgColor']; //加载忽略内容 -- 其他设置中的属性设置 this.$parent.data.ignoreLoad = true; // 等待忽略数组赋值后加载 // this.$parent.data.hidden = ['textColor'];// 隐藏公共属性编辑 // 组件所需的临时数据 this.$parent.data.tempData = { styleList: this.styleList }; }, methods: { verify: function (index) { var res = {code: true, message: ""}; return res; }, selectStyle: function () { var self = this; layer.open({ type: 1, title: '风格选择', area: ['930px', '630px'], btn: ['确定', '返回'], content: $(".draggable-element[data-index='" + self.data.index + "'] .edit-attribute .style-list-box-text").html(), success: function (layero, index) { $(".layui-layer-content input[name='style']").val(self.data.style); $(".layui-layer-content input[name='style_name']").val(self.data.styleName); $("body").on("click", ".layui-layer-content .style-list-con-text .style-li-text", function () { $(this).addClass("selected border-color").siblings().removeClass("selected border-color bg-color-after"); $(".layui-layer-content input[name='style']").val($(this).attr("data_key")); $(".layui-layer-content input[name='style_name']").val($(this).find("span").text()); }); }, yes: function (index, layero) { self.data.style = $(".layui-layer-content input[name='style']").val(); self.data.styleName = $(".layui-layer-content input[name='style_name']").val(); var data = self.styleList[self.data.style]; self.data.text = data.text; if (data.fontSize) self.data.fontSize = data.fontSize; else self.data.fontSize = 16; if (data.fontWeight) self.data.fontWeight = data.fontWeight; else self.data.fontWeight = 'normal'; if (data.subTitle.text) self.data.subTitle.text = data.subTitle.text; else self.data.subTitle.text = '副标题'; if (data.subTitle.color) self.data.subTitle.color = data.subTitle.color; else self.data.subTitle.color = '#999999'; if (data.subTitle.fontSize) self.data.subTitle.fontSize = data.subTitle.fontSize; else self.data.subTitle.fontSize = 14; if (data.subTitle.isElementShow) self.data.subTitle.isElementShow = data.subTitle.isElementShow; else self.data.subTitle.isElementShow = false; if (data.subTitle.bgColor) self.data.subTitle.bgColor = data.subTitle.bgColor; else self.data.subTitle.bgColor = ''; if (data.subTitle.icon) self.data.subTitle.icon = data.subTitle.icon; else self.data.subTitle.icon = ''; if (data.subTitle.fontWeight) self.data.subTitle.fontWeight = data.subTitle.fontWeight; else self.data.subTitle.fontWeight = 'normal'; if (data.more.text) self.data.more.text = data.more.text; else self.data.more.text = '查看更多'; if (data.more.isElementShow) self.data.more.isElementShow = data.more.isElementShow; else self.data.more.isElementShow = false; if (data.more.isShow) self.data.more.isShow = data.more.isShow; else self.data.more.isShow = false; if (data.more.color) self.data.more.color = data.more.color; else self.data.more.color = '#999999'; layer.closeAll() } }); } } }); // 主标题文字粗细 var fontWeightHtml = '
'; fontWeightHtml += ''; fontWeightHtml += '
'; fontWeightHtml += ''; fontWeightHtml += ''; fontWeightHtml += '
'; fontWeightHtml += '
'; Vue.component("text-font-weight", { props: { weightData: { type: Object, default: function () { return {}; } } }, template: fontWeightHtml, data: function () { return { data: this.$parent.data, thicknessList: [ {name: "加粗", src: "iconbold", value: "bold"}, {name: "常规", src: "iconbold-copy", value: "normal"} ] }; }, created: function () { if (this.weightData.parent !== undefined) this.data = this.$parent.data[this.weightData.parent]; }, methods: { change: function (item) { this.data.fontWeight = item.value; } }, });