31 lines
		
	
	
		
			656 B
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			656 B
		
	
	
	
		
			Plaintext
		
	
	
<template>
 | 
						|
  <el-form>
 | 
						|
    <div class="base-dialog-body" style="position: relative">
 | 
						|
    </div>
 | 
						|
    <div class="base-dialog-footer" style="text-align:right;margin-top:10px;">
 | 
						|
      <!-- 取消 -->
 | 
						|
      <el-button
 | 
						|
        :disabled="btnLoading"
 | 
						|
        size="small"
 | 
						|
        type="primary"
 | 
						|
        @click="handleCancel"
 | 
						|
      >
 | 
						|
        {{ $t('common:button:cancel') }}
 | 
						|
      </el-button>
 | 
						|
      <!-- 保存 -->
 | 
						|
      <el-button size="small" type="primary" :loading="btnLoading" @click="handleSave">
 | 
						|
        {{ $t('common:button:save') }}
 | 
						|
      </el-button>
 | 
						|
    </div>
 | 
						|
  </el-form>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
}
 | 
						|
</script>
 | 
						|
 | 
						|
<style scoped>
 | 
						|
 | 
						|
</style>
 |