This commit is contained in:
@fawn-nine
2023-07-17 10:51:44 +08:00
parent 67134b3d29
commit b72360a171

View File

@@ -229,6 +229,9 @@
<!-- 复制word添加引用 --> <!-- 复制word添加引用 -->
<el-dialog title= "Add References'" :visible.sync="showEditor" width="800px" @close="showEditor= false"> <el-dialog title= "Add References'" :visible.sync="showEditor" width="800px" @close="showEditor= false">
<div> <div>
<div class="logtips">
<p >Paste the contents of the wold file here, delete the carriage return at the end and click "Submit".</p>
</div>
<vue-ueditor-wrap v-model="wordText" :config="editorConfig" editor-id="editor-demo-01"></vue-ueditor-wrap> <vue-ueditor-wrap v-model="wordText" :config="editorConfig" editor-id="editor-demo-01"></vue-ueditor-wrap>
</div> </div>
<span slot="footer"> <span slot="footer">
@@ -245,7 +248,7 @@ export default {
data(){ data(){
return{ return{
ue: null, ue: null,
wordText:'<p>Paste the contents of the wold file here, delete the carriage return at the end and click "Submit".</p>', wordText:'',
editorConfig: { editorConfig: {
// 访问 UEditor 静态资源的根路径,可参考 https://hc199421.gitee.io/vue-ueditor-wrap/#/faq // 访问 UEditor 静态资源的根路径,可参考 https://hc199421.gitee.io/vue-ueditor-wrap/#/faq
UEDITOR_HOME_URL: "/UEditor/", UEDITOR_HOME_URL: "/UEditor/",
@@ -911,6 +914,7 @@ export default {
/* 编辑器高度 */ /* 编辑器高度 */
/deep/ #edui1_iframeholder{ height: 260px;} /deep/ #edui1_iframeholder{ height: 260px;}
.logtips{margin-bottom: 15px; color: #666;}
/* .itemIndex{position: relative;} */ /* .itemIndex{position: relative;} */
.itemChanged{position: absolute; display: inline-block; background: #006699; color: #fff; padding: 7px; border-radius: 0 0 7px 7px; left: 0; top: 0;} .itemChanged{position: absolute; display: inline-block; background: #006699; color: #fff; padding: 7px; border-radius: 0 0 7px 7px; left: 0; top: 0;}
.status{ display: block; width: 40px; height: 40px; border-radius: 40px; font-size: 22px; line-height: 40px; color: #fff; text-align: center;} .status{ display: block; width: 40px; height: 40px; border-radius: 40px; font-size: 22px; line-height: 40px; color: #fff; text-align: center;}