|
|
@@ -73,7 +73,15 @@
|
|
|
}"
|
|
|
>
|
|
|
<template v-if="resObj">
|
|
|
- <p v-if="curQue.notice" class="notice" style="padding-top: 24px">
|
|
|
+ <p
|
|
|
+ v-if="curQue.notice"
|
|
|
+ class="notice"
|
|
|
+ style="padding-top: 24px"
|
|
|
+ :style="{
|
|
|
+ fontSize: curQue.property.notice_size ? curQue.property.notice_size + 'px' : '',
|
|
|
+ color: curQue.property.notice_color ? curQue.property.notice_color : '',
|
|
|
+ }"
|
|
|
+ >
|
|
|
{{ convertText(curQue.notice) }}
|
|
|
</p>
|
|
|
<div class="NPC-sentences-list">
|
|
|
@@ -1098,6 +1106,8 @@ export default {
|
|
|
dhaspinyin,
|
|
|
type: dItem.type,
|
|
|
notice: dItem.notice,
|
|
|
+ notice_size: dItem.notice_size,
|
|
|
+ notice_color: dItem.notice_color,
|
|
|
file_url_open: dItem.file_url_open,
|
|
|
};
|
|
|
sentArrTotal.push(sentArr);
|