|
@@ -19,7 +19,7 @@
|
|
|
<!-- 右方数据展示区开始 -->
|
|
|
<div class="right">
|
|
|
<!-- 标题 -->
|
|
|
- <div class="pAHeader">
|
|
|
+ <div class="pA1Header">
|
|
|
<div class="pAHeader1">活动申请</div>
|
|
|
<div style="margin-top: 10px;cursor: pointer;" @click="back()">返回</div>
|
|
|
</div>
|
|
@@ -28,27 +28,27 @@
|
|
|
<div>
|
|
|
<p class="pTit">活动计划</p>
|
|
|
<div class="editor">
|
|
|
- <vue-editor v-model="content"></vue-editor>
|
|
|
+ <vue-editor :editorToolbar="customToolbar" v-model="content"></vue-editor>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
<p class="pTit">预期目标</p>
|
|
|
<div class="editor">
|
|
|
- <vue-editor v-model="content"></vue-editor>
|
|
|
+ <vue-editor :editorToolbar="customToolbar" v-model="content"></vue-editor>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
<p class="pTit">活动受面</p>
|
|
|
<div class="editor">
|
|
|
- <vue-editor v-model="content"></vue-editor>
|
|
|
+ <vue-editor :editorToolbar="customToolbar" v-model="content"></vue-editor>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div>
|
|
|
<p class="pTit">经费支出计划</p>
|
|
|
<div class="editor">
|
|
|
- <vue-editor v-model="content"></vue-editor>
|
|
|
+ <vue-editor :editorToolbar="customToolbar" v-model="content"></vue-editor>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -94,7 +94,11 @@
|
|
|
return {
|
|
|
content:'',
|
|
|
dialogVisible1:false,
|
|
|
-
|
|
|
+ customToolbar: [
|
|
|
+ ["bold", "italic", "underline"], [{ list: "ordered" }, { list: "bullet" }],
|
|
|
+ [{ align: "" }, { align: "center" }, { align: "right"}, { align: "justify"}],
|
|
|
+ [{header:[false,1,2,3,4]}]
|
|
|
+ ],
|
|
|
}
|
|
|
},
|
|
|
methods:{
|