Browse Source

修复echarts ueditor demo弹窗zIndex层级

daxiongYang 6 years ago
parent
commit
9a591abfe0
3 changed files with 18 additions and 7 deletions
  1. 0 2
      src/assets/scss/_base.scss
  2. 7 3
      src/views/demo/echarts.vue
  3. 11 2
      src/views/demo/ueditor.vue

+ 0 - 2
src/assets/scss/_base.scss

@ -337,8 +337,6 @@ img {
337 337
      }
338 338
    }
339 339
    > .el-tabs__content {
340
      position: relative;
341
      z-index: 920;
342 340
      padding: 0 15px 15px;
343 341
      > .site-tabs__tools {
344 342
        position: fixed;

+ 7 - 3
src/views/demo/echarts.vue

@ -3,9 +3,10 @@
3 3
    <el-alert
4 4
      title="提示:"
5 5
      type="warning"
6
      description="1. 此Demo只提供ECharts官方使用文档,入门部署和体验功能。具体使用请参考:http://echarts.baidu.com/index.html"
7
      :closable="false"
8
      style="margin-bottom: 10px;">
6
      :closable="false">
7
      <div slot-scope="description">
8
        <p class="el-alert__description">1. 此Demo只提供ECharts官方使用文档,入门部署和体验功能。具体使用请参考:http://echarts.baidu.com/index.html</p>
9
      </div>
9 10
    </el-alert>
10 11
11 12
    <el-row :gutter="20">
@ -453,6 +454,9 @@
453 454
454 455
<style lang="scss">
455 456
  .mod-demo-echarts {
457
    > .el-alert {
458
      margin-bottom: 10px;
459
    }
456 460
    > .el-row {
457 461
      margin-top: -10px;
458 462
      margin-bottom: -10px;

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

@ -3,8 +3,7 @@
3 3
    <el-alert
4 4
      title="提示:"
5 5
      type="warning"
6
      :closable="false"
7
      style="margin-bottom: 10px;">
6
      :closable="false">
8 7
      <div slot-scope="description">
9 8
        <p class="el-alert__description">1. 此Demo只提供UEditor官方使用文档,入门部署和体验功能。具体使用请参考:http://fex.baidu.com/ueditor/</p>
10 9
        <p class="el-alert__description">2. 浏览器控制台报错“请求后台配置项http错误,上传功能将不能正常使用!”,此错需要后台提供上传接口方法(赋值给serverUrl属性)</p>
@ -53,3 +52,13 @@
53 52
    }
54 53
  }
55 54
</script>
55
56
<style lang="scss">
57
  .mod-demo-ueditor {
58
    position: relative;
59
    z-index: 510;
60
    > .el-alert {
61
      margin-bottom: 10px;
62
    }
63
  }
64
</style>