''
liukangdong
2024-05-20 3c403cfa2a03e3ec6d3b0e4ccb9a38c552e16d0d
admin/src/components/common/GlobalWindow.vue
@@ -21,7 +21,8 @@
    <div v-if="withFooter" class="window__footer">
      <slot name="footer">
        <el-button @click="confirm" :loading="confirmWorking" type="primary">{{text}}</el-button>
        <el-button @click="close">返回</el-button>
        <slot name="btns" />
        <el-button @click="close">{{ backText }}</el-button>
      </slot>
    </div>
  </el-drawer>
@@ -45,6 +46,10 @@
      type: String,
      default: '确定'
    },
    backText: {
      type: String,
      default: '返回'
    },
    // 确认按钮loading状态
    confirmWorking: {
      type: Boolean,
@@ -66,6 +71,7 @@
      this.$emit('confirm')
    },
    close () {
      this.$emit('close')
      this.$emit('update:visible', false)
    }
  }