临时解决方案
修改dilaog/dialog.js中sheetFontStyle方法
- var sheetFontStyle = function (contentStyle) {
- if(contentStyle.font && contentStyle.font.indexOf('pt') === -1){
- return contentStyle.font;
- }
- var style;
- var font = "";
- if (contentStyle.font) {
- style = contentStyle.font.split(" ");
- var fontSiz = style[style.length - 2];
- var siz = Math.round((+(fontSiz.split("pt")[0])) * 4 / 3) + "px";
- for (var m = 0; m < style.length; m++) {
- if (m === style.length - 2) {
- font = font + siz + " ";
- } else if (m === style.length - 1) {
- font = font + style[m];
- } else {
- font = font + style[m] + " ";
- }
- }
- }
- return font;
- };
复制代码 |