|
@@ -625,6 +625,7 @@
|
|
|
:currentTreeID="currentTreeID"
|
|
|
:FatherTreeData="FatherTreeData"
|
|
|
:change-id="changeId"
|
|
|
+ :themeColor="themeColor"
|
|
|
/>
|
|
|
</div>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
@@ -826,6 +827,7 @@ export default {
|
|
|
module_type: "",
|
|
|
tmInde: "",
|
|
|
FatherTreeData: null,
|
|
|
+ themeColor:'', // 主题颜色
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -1008,6 +1010,7 @@ export default {
|
|
|
console.log(this.question_list);
|
|
|
getContent(MethodName, data)
|
|
|
.then((res) => {
|
|
|
+ this.themeColor = res.book_theme_color ? res.book_theme_color : ''
|
|
|
this.question_list = res.content
|
|
|
? JSON.parse(res.content)
|
|
|
: JSON.parse(JSON.stringify(this.org_question_list));
|