xiejun
2023-07-13 2871cb99e018f6bf9e2ef76a424a1429a7c818f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<template>
  <div>
  <el-dialog :title="options.title|| '附件列表'"
             :visible.sync="visible"
             append-to-body
             class="avue-dialog avue-dialog--top"
             @close="close"
             top="0"
             :width="options.width|| '80%'">
    <fileContent
      :options="options"
      :ownbizOid="options.ownbizOid"
    ></fileContent>
  </el-dialog>
  </div>
</template>
 
<script>
import fileContent from './main.vue';
export default {
  name: "inDialog",
  components: { fileContent },
  props: ["options","visible"],
  data(){
    return{
 
    }
  },
  computed: {
  },
  methods:{
    close(){
      this.$emit("close", false);
    }
  }
}
</script>
 
<style scoped>
 
</style>