|
|
@@ -79,7 +79,8 @@
|
|
|
:style="{
|
|
|
fontSize: sentType != 'option' ? pItem.fontSize : '',
|
|
|
color: pItem.fontColor,
|
|
|
- fontFamily: pItem.fontFamily
|
|
|
+ fontFamily: pItem.fontFamily,
|
|
|
+ textDecoration: pItem.underLine ? 'underline' : ''
|
|
|
}"
|
|
|
v-html="pItem.chs"
|
|
|
></span>
|
|
|
@@ -117,7 +118,8 @@
|
|
|
:style="{
|
|
|
fontSize: sentType != 'option' ? pItem.fontSize : '',
|
|
|
color: pItem.fontColor,
|
|
|
- fontFamily: pItem.fontFamily
|
|
|
+ fontFamily: pItem.fontFamily,
|
|
|
+ textDecoration: pItem.underLine ? 'underline' : ''
|
|
|
}"
|
|
|
:class="[
|
|
|
pItem.chs != '“' && pItem.padding ? 'padding' : '',
|
|
|
@@ -172,7 +174,10 @@
|
|
|
fontSize:
|
|
|
sentType != 'option' ? item[pIndex + 1].fontSize : '',
|
|
|
color: item[pIndex + 1].fontColor,
|
|
|
- fontFamily: item[pIndex + 1].fontFamily
|
|
|
+ fontFamily: item[pIndex + 1].fontFamily,
|
|
|
+ textDecoration: item[pIndex + 1].underLine
|
|
|
+ ? 'underline'
|
|
|
+ : ''
|
|
|
}"
|
|
|
v-html="item[pIndex + 1].chs"
|
|
|
></span>
|
|
|
@@ -227,7 +232,10 @@
|
|
|
fontSize:
|
|
|
sentType != 'option' ? item[pIndex + 2].fontSize : '',
|
|
|
color: item[pIndex + 2].fontColor,
|
|
|
- fontFamily: item[pIndex + 2].fontFamily
|
|
|
+ fontFamily: item[pIndex + 2].fontFamily,
|
|
|
+ textDecoration: item[pIndex + 2].underLine
|
|
|
+ ? 'underline'
|
|
|
+ : ''
|
|
|
}"
|
|
|
v-html="item[pIndex + 2].chs"
|
|
|
></span>
|
|
|
@@ -275,7 +283,8 @@
|
|
|
:style="{
|
|
|
fontSize: sentType != 'option' ? pItem.fontSize : '',
|
|
|
color: pItem.fontColor,
|
|
|
- fontFamily: pItem.fontFamily
|
|
|
+ fontFamily: pItem.fontFamily,
|
|
|
+ textDecoration: pItem.underLine ? 'underline' : ''
|
|
|
}"
|
|
|
:class="[
|
|
|
pItem.chs != '“' && pItem.padding ? 'padding' : '',
|
|
|
@@ -319,7 +328,8 @@
|
|
|
fontSize: sentType != 'option' ? pItem.fontSize : '',
|
|
|
color: pItem.fontColor,
|
|
|
textAlign: 'left',
|
|
|
- fontFamily: pItem.fontFamily
|
|
|
+ fontFamily: pItem.fontFamily,
|
|
|
+ textDecoration: pItem.underLine ? 'underline' : ''
|
|
|
}"
|
|
|
:class="[
|
|
|
pItem.chs != '“' && pItem.padding ? 'padding' : '',
|