Browse Source

feat: 修改弹窗层级

aXin-0810 2 years ago
parent
commit
464c727d72
1 changed files with 8 additions and 2 deletions
  1. 8 2
      src/views/dashboard.vue

+ 8 - 2
src/views/dashboard.vue

@@ -353,7 +353,14 @@
           <el-button type="primary" size="mini" @click="closeFn">关闭</el-button>
         </div>
       </el-dialog>
-      <el-dialog title="物流信息" :visible.sync="visible" width="60%" @close="onClose" :close-on-click-modal="false">
+      <el-dialog
+        title="物流信息"
+        :visible.sync="visible"
+        width="60%"
+        @close="onClose"
+        append-to-body
+        :close-on-click-modal="false"
+      >
         <el-timeline class="logistics" :reverse="false" v-if="logisticsDetail.length">
           <el-timeline-item
             placement="top"
@@ -712,7 +719,6 @@ export default {
     handleJump(id) {
       this.$router.push({ path: `/supply/pickup/sum_list?id=${id}` })
       this.$store.commit('user/showMessage', 'no')
-
     }
   }
 }