Ben Lin
2024-06-18 ebbd788fbb2c0b45d4473798efc57eec8ba74a25
src/views/demo/comp/modal/Modal1.vue
@@ -5,13 +5,13 @@
    @register="register"
    title="Modal Title"
    :helpMessage="['提示1', '提示2']"
    @visible-change="handleShow"
    @open-change="handleShow"
  >
    <template #insertFooter>
      <a-button type="primary" danger @click="setLines" :disabled="loading">点我更新内容</a-button>
    </template>
    <template v-if="loading">
      <div class="empty-tips">加载中,稍等3秒……</div>
      <div class="h-full text-center line-height-100px">加载中,稍等3秒……</div>
    </template>
    <template v-if="!loading">
      <ul>
@@ -20,46 +20,34 @@
    </template>
  </BasicModal>
</template>
<script lang="ts">
  import { defineComponent, ref, watch } from 'vue';
  import { BasicModal, useModalInner } from '/@/components/Modal';
  export default defineComponent({
    components: { BasicModal },
    setup() {
      const loading = ref(true);
      const lines = ref(10);
      const [register, { setModalProps, redoModalHeight }] = useModalInner();
<script lang="ts" setup>
  import { ref, watch } from 'vue';
  import { BasicModal, useModalInner } from '@/components/Modal';
      watch(
        () => lines.value,
        () => {
          redoModalHeight();
        },
      );
  const loading = ref(true);
  const lines = ref(10);
  const [register, { setModalProps, redoModalHeight }] = useModalInner();
      function handleShow(visible: boolean) {
        if (visible) {
          loading.value = true;
          setModalProps({ loading: true, confirmLoading: true });
          setTimeout(() => {
            lines.value = Math.round(Math.random() * 30 + 5);
            loading.value = false;
            setModalProps({ loading: false, confirmLoading: false });
          }, 3000);
        }
      }
      function setLines() {
        lines.value = Math.round(Math.random() * 20 + 10);
      }
      return { register, loading, handleShow, lines, setLines };
  watch(
    () => lines.value,
    () => {
      redoModalHeight();
    },
  });
</script>
<style scoped>
  .empty-tips {
    height: 100px;
    line-height: 100px;
    text-align: center;
  );
  function handleShow(open: boolean) {
    if (open) {
      loading.value = true;
      setModalProps({ loading: true, confirmLoading: true });
      setTimeout(() => {
        lines.value = Math.round(Math.random() * 30 + 5);
        loading.value = false;
        setModalProps({ loading: false, confirmLoading: false });
      }, 3000);
    }
  }
</style>
  function setLines() {
    lines.value = Math.round(Math.random() * 20 + 10);
  }
</script>