dialog.vue 739 Bytes
Newer Older
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 42 43 44 45
<template>
  <DefaultDialog :app='app'>
    <div slot="form" style="display: flex;height: 70vh;">
     DialogTitle:'新增',
     showDialog:false,
    </div>
    <div slot="reFooter" class="refooter" >
      <span slot="footer" class="dialog-footer" >
        <el-button  @click="app.showDialog=false">取 消</el-button>
        <el-button  type="primary" @click="save()">保 存</el-button>
      </span>
     </div>
  </DefaultDialog>
</template>
<script>

   
  export default {

    props: {
      app: {
        type: Object,
        default: ()=>{
			return {}
		}
      }
    },
    async mounted() {
		
      
    },
    data() {
      return {
		  

      }
    },
    methods: {
	 
    }
  }
</script>

<style scoped>
</style>