Browse Source

修复ueditor demo关闭tab后再打开无法显示bug

daxiongYang 6 years ago
parent
commit
864e8928ee
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/views/demo/ueditor.vue

+ 3 - 2
src/views/demo/ueditor.vue

10
      </div>
10
      </div>
11
    </el-alert>
11
    </el-alert>
12
12
13
    <script id="J_ueditorBox" class="ueditor-box" type="text/plain" style="width: 100%; height: 260px;">hello world!</script>
13
    <script :id="ueId" class="ueditor-box" type="text/plain" style="width: 100%; height: 260px;">hello world!</script>
14
    
14
    
15
    <!-- 获取内容 -->
15
    <!-- 获取内容 -->
16
    <p><el-button @click="getContent()">获得内容</el-button></p>
16
    <p><el-button @click="getContent()">获得内容</el-button></p>
32
    data () {
32
    data () {
33
      return {
33
      return {
34
        ue: null,
34
        ue: null,
35
        ueId: `J_ueditorBox_${new Date().getTime()}`,
35
        ueContent: '',
36
        ueContent: '',
36
        dialogVisible: false
37
        dialogVisible: false
37
      }
38
      }
38
    },
39
    },
39
    mounted () {
40
    mounted () {
40
      this.ue = ueditor.getEditor('J_ueditorBox', {
41
      this.ue = ueditor.getEditor(this.ueId, {
41
        // serverUrl: '', // 服务器统一请求接口路径
42
        // serverUrl: '', // 服务器统一请求接口路径
42
        zIndex: 3000
43
        zIndex: 3000
43
      })
44
      })