1
PC-20250623MANY\Administrator
2025-08-19 1a5a082a826ec7bb0ef86dcd13609125504ea99f
src/components/Dialog/index.vue
@@ -26,42 +26,42 @@
  props: {
    title: {
      type: String,
      default: "标题",
      default: "标题"
    },
    "confirm-button-text": {
      type: String,
      default: "hj161",
      default: "hj161"
    },
    "cancel-button-text": {
      type: String,
      default: "qx",
      default: "qx"
    },
    "show-cancel-button": {
      type: Boolean,
      default: true,
      default: true
    },
    "show-confirm-button": {
      type: Boolean,
      default: true,
      default: true
    },
    confirm: {
      type: Function,
      default: () => {},
    },
      default: () => {}
    }
  },
  components: {
    [Dialog.Component.name]: Dialog.Component,
    [Dialog.Component.name]: Dialog.Component
  },
  data() {
    return {
      show: false,
      show: false
    };
  },
  methods: {},
  methods: {}
};
</script>
<style  scoped lang="less">
<style scoped lang="less">
.zyd-dialog {
  padding: 24px;
  font-family: "PingFang SC";
@@ -77,7 +77,7 @@
    display: flex;
    justify-content: center;
    text-align: center;
    line-height: 65px;
    line-height: 55px;
    margin-top: 40px;
    .cancel-dialog {
      flex: 1;
@@ -91,11 +91,11 @@
      flex: 1;
      height: 100%;
      padding: 0 15px;
      background-color: #1989fa;
      border: 1px solid #1989fa;
      background-color: #c4d600;
      border: 1px solid #c4d600;
      color: #fff;
      margin-left: 20px;
    }
  }
}
</style>
</style>