Commit c2780e09 authored by zhengke's avatar zhengke

s

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