Commit 5695065b authored by 罗超's avatar 罗超

Merge branch 'master' into router

parents b85c6796 ca2518f6
VUE_APP_API_URL = 'http://192.168.5.46/api/common/post' # VUE_APP_API_URL = 'http://192.168.5.46/api/common/post'
VUE_APP_UPLOADURLAPI_URL = 'http://192.168.5.46:8120' # VUE_APP_UPLOADURLAPI_URL = 'http://192.168.5.46:8120'
VUE_APP_VIITTOFILE_URL = 'http://192.168.5.46:8130' VUE_APP_VIITTOFILE_URL = 'http://192.168.5.46:8130'
VUE_APP_NOTIFICATION_URL = 'http://localhost:8081' VUE_APP_NOTIFICATION_URL = 'http://localhost:8081'
VUE_APP_DOWNLOAD_URL = 'http://192.168.5.46' VUE_APP_DOWNLOAD_URL = 'http://192.168.5.46'
VUE_APP_SHARE_URL = 'http://127.0.0.1:8080' VUE_APP_SHARE_URL = 'http://127.0.0.1:8080'
VUE_APP_PDF_URL = 'http://127.0.0.1:5164' VUE_APP_PDF_URL = 'http://127.0.0.1:5164'
# VUE_APP_API_URL = 'https://reborn.oytour.com/api/common/post' VUE_APP_API_URL = 'https://reborn.oytour.com/api/common/post'
# VUE_APP_UPLOADURLAPI_URL = 'https://upload.oytour.com' VUE_APP_UPLOADURLAPI_URL = 'https://upload.oytour.com'
# VUE_APP_SHARE_URL = 'http://vitto.com' VUE_APP_SHARE_URL = 'http://vitto.com'
\ No newline at end of file \ No newline at end of file
...@@ -92,7 +92,7 @@ export const ResolveText = (item: any, index: number,offsetLeft:number,offsetTop ...@@ -92,7 +92,7 @@ export const ResolveText = (item: any, index: number,offsetLeft:number,offsetTop
let content = '' let content = ''
valuesStr.forEach((x: any,si:number) => { valuesStr.forEach((x: any,si:number) => {
if(x!='') if(x!='')
content += `<p style="${styleArray[si]}"><span style="${styleArray[si]}">${HtmlUtil.htmlEncodeByRegExp(x)}</span></p>` content += `<p style="${styleArray[si]}"><span style="${styleArray[si]}">${HtmlUtil.htmlEncodeByRegExp(x).replaceAll(" ","&nbsp;")}</span></p>`
}) })
const isVertical = item.layer.adjustments.typeTool.obj.textData.Ornt.value != 'Hrzn' const isVertical = item.layer.adjustments.typeTool.obj.textData.Ornt.value != 'Hrzn'
...@@ -139,7 +139,7 @@ export const ResolveText = (item: any, index: number,offsetLeft:number,offsetTop ...@@ -139,7 +139,7 @@ export const ResolveText = (item: any, index: number,offsetLeft:number,offsetTop
defaultFontName: fontName && fontName.length>0 ? fontName[0]:'', defaultFontName: fontName && fontName.length>0 ? fontName[0]:'',
defaultColor: color, defaultColor: color,
fill: background, fill: background,
lineHeight: leading<1?1:leading, lineHeight: leading<1?1:Number(leading.toFixed(1)),
wordSpace: tracking, wordSpace: tracking,
vertical: isVertical, vertical: isVertical,
contentStr: value, contentStr: value,
......
<template> <template>
<div class="q-mt-xs bg-white q-pa-xs rounded ElementTemplateData"> <div class="bg-white rounded ElementTemplateData">
<div class="column text-mdall"> <div class="column text-mdall">
<div class="column"> <div class="column">
<template v-if="CoverImg&&!isCoverImg"> <template v-if="CoverImg&&!isCoverImg">
...@@ -501,6 +501,9 @@ ...@@ -501,6 +501,9 @@
}) })
return return
} }
let color = datas.addColor.Name.slice(0,1)
let colorList = ColorList.value.filter(x=>{ return x.Name.toLowerCase().includes(color.toLowerCase())})
if(colorList.length>0&&!datas.addColor.Code) datas.addColor.Code = colorList[0].ID
if(datas.addColor.Content.indexOf('#')==-1){ if(datas.addColor.Content.indexOf('#')==-1){
ElMessage({ ElMessage({
showClose: true, showClose: true,
......
...@@ -365,22 +365,25 @@ ...@@ -365,22 +365,25 @@
message: '请完善颜色名称', message: '请完善颜色名称',
type: 'warning', type: 'warning',
}) })
if(!datas.params.Content){ let color = datas.params.Name.slice(0,1)
ElMessage({ let colorList = ColorList.value.filter(x=>{ return x.Name.toLowerCase().includes(color.toLowerCase())})
showClose: true, if(colorList.length>0&&!datas.params.Code) datas.addColor.Code = colorList[0].ID
message: '请完善颜色的16进制', if(!datas.params.Content){
type: 'warning', ElMessage({
}) showClose: true,
return message: '请完善颜色的16进制',
} type: 'warning',
if(datas.params.Content.indexOf('#')==-1){ })
ElMessage({ return
showClose: true, }
message: "色号需要在最前面加 # 号", if(datas.params.Content.indexOf('#')==-1){
type: 'warning', ElMessage({
}) showClose: true,
return message: "色号需要在最前面加 # 号",
} type: 'warning',
})
return
}
datas.requestLoading = true datas.requestLoading = true
if(datas.type==2) datas.params.Code = '' if(datas.type==2) datas.params.Code = ''
const result = await ConfigService.SetTemplateConfigData(datas.params) const result = await ConfigService.SetTemplateConfigData(datas.params)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment