田源
2023-11-21 004d3fdba7d6819aa2fcb32cd954d45bfaf111a4
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
<template>
  <el-dialog
    v-if="dialogVisible"
    v-dialogDrag
    title="批量修改"
    :visible.sync="dialogVisible"
    append-to-body
  ></el-dialog>
</template>
 
<script>
export default {
  name: "MasterEditBulk",
  props: {
    visible: {
      type: Boolean,
      default: false,
    },
  },
  data(){
    return{
 
    }
  },
  computed:{
    dialogVisible: {
      get() {
        return this.visible;
      },
      set(val) {
        this.$emit("update:visible", val);
      },
    },
  }
}
</script>
 
<style scoped>
 
</style>