guoshilong
2022-09-23 223750e3a57f895e07c9c311947456664ced50c3
src/views/taskinfo/taskinfoDetail.vue
@@ -1,5 +1,7 @@
<template>
  <div>
    <el-button class="backBtn" size="small" type="success" icon="el-icon-back" plain @click="handleBack">返 回
    </el-button>
    <el-row>
     <el-col :span="12">
      <div>
@@ -132,6 +134,7 @@
export default {
  name: "taskinfoDetail",
  components: {OpenLayersMap},
  props:["detailInfo"],
  data(){
    return{
      taskinfo:{},
@@ -140,7 +143,7 @@
    }
  },
  created() {
    this.form = this.$route.query;
    this.form = this.detailInfo;
    this.getUser()
  },
  methods:{
@@ -152,6 +155,9 @@
        }
      })
    },
    handleBack(){
      this.$emit('isDetail');
    }
  },
}
</script>
@@ -185,4 +191,11 @@
#old_video::-webkit-media-controls-timeline {
  display: block;
}
.backBtn{
  position: fixed;
  top: 20%;
  right: 3%;
  z-index: 99999;
}
</style>