Commit c2780e09 authored by zhengke's avatar zhengke

s

parent defb3899
......@@ -133,7 +133,7 @@
<th>结束日期</th>
<th>抽奖次数(每人)</th>
<th>抽奖状态</th>
<th>备注</th>
<th width="400">备注</th>
<th>操作</th>
</tr>
<tr v-for="item in dataList">
......@@ -238,7 +238,7 @@
<tr>
<td colspan="2">
<el-form-item label="抽奖规则" prop="lotteryRules">
<quill-editor class="w595" v-model="addMsg.lotteryRules"></quill-editor>
<quill-editor class="w595" :options="editorOption" v-model="addMsg.lotteryRules"></quill-editor>
</el-form-item>
</td>
</tr>
......@@ -321,10 +321,23 @@ export default {
image:'',
},
toolbar: {
clean: false, //加粗
font: false, //字体
narrative: true, //叙述,
image: true
clean: true, //加粗
bold:true,
// italic:true,
fontColor:true,
align:true,
leftIndent:true,
rightIndent:true,
headSize:true,
narrative: false, //叙述,
},
editorOption:{
modules:{
toolbar:[
['bold', 'italic', 'underline', 'strike'], // toggled buttons
['blockquote', 'code-block','align']
]
}
},
rules:{
branchId: [{ required: true, message: "请选择公司", trigger: "change" }],
......@@ -365,7 +378,6 @@ export default {
},
filters: {
},
methods: {
//重置id
resSetInfo(){
......
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