Merge branch 'master' of https://github.com/metersphere/server
This commit is contained in:
commit
b055fac758
|
@ -228,7 +228,7 @@
|
||||||
width="400"
|
width="400"
|
||||||
trigger="hover"
|
trigger="hover"
|
||||||
>
|
>
|
||||||
<ckeditor :editor="editor" disabled
|
<ckeditor :editor="editor" disabled :config="readConfig"
|
||||||
v-model="scope.row.description"/>
|
v-model="scope.row.description"/>
|
||||||
<el-button slot="reference" type="text">{{$t('test_track.issue.preview')}}</el-button>
|
<el-button slot="reference" type="text">{{$t('test_track.issue.preview')}}</el-button>
|
||||||
</el-popover>
|
</el-popover>
|
||||||
|
@ -312,6 +312,7 @@
|
||||||
// 'increaseIndent','decreaseIndent'
|
// 'increaseIndent','decreaseIndent'
|
||||||
toolbar: ['heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'insertTable', '|', 'undo', 'redo'],
|
toolbar: ['heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'insertTable', '|', 'undo', 'redo'],
|
||||||
},
|
},
|
||||||
|
readConfig: {toolbar: []},
|
||||||
test: {},
|
test: {},
|
||||||
activeTab: 'detail',
|
activeTab: 'detail',
|
||||||
isFailure: true,
|
isFailure: true,
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
width="400"
|
width="400"
|
||||||
trigger="hover"
|
trigger="hover"
|
||||||
>
|
>
|
||||||
<ckeditor :editor="editor" disabled
|
<ckeditor :editor="editor" disabled :config="editorConfig"
|
||||||
v-model="scope.row.description"/>
|
v-model="scope.row.description"/>
|
||||||
<el-button slot="reference" type="text">{{$t('test_track.issue.preview')}}</el-button>
|
<el-button slot="reference" type="text">{{$t('test_track.issue.preview')}}</el-button>
|
||||||
</el-popover>
|
</el-popover>
|
||||||
|
@ -313,6 +313,10 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
editor: ClassicEditor,
|
editor: ClassicEditor,
|
||||||
|
editorConfig: {
|
||||||
|
// 'increaseIndent','decreaseIndent'
|
||||||
|
toolbar: [],
|
||||||
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
|
|
Loading…
Reference in New Issue