parent
0589458b2d
commit
83f16da2d3
|
|
@ -20,7 +20,7 @@
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { type Recordable } from '@vben/types';
|
import { type Recordable } from '@vben/types';
|
||||||
import { PropType, ref, unref, watch, watchEffect } from 'vue';
|
import { PropType, ref, unref, watch } from 'vue';
|
||||||
import { Cascader } from 'ant-design-vue';
|
import { Cascader } from 'ant-design-vue';
|
||||||
import type { CascaderProps } from 'ant-design-vue';
|
import type { CascaderProps } from 'ant-design-vue';
|
||||||
import { propTypes } from '@/utils/propTypes';
|
import { propTypes } from '@/utils/propTypes';
|
||||||
|
|
@ -159,9 +159,15 @@
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
watchEffect(() => {
|
watch(
|
||||||
|
() => props.immediate,
|
||||||
|
() => {
|
||||||
props.immediate && initialFetch();
|
props.immediate && initialFetch();
|
||||||
});
|
},
|
||||||
|
{
|
||||||
|
immediate: true,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => props.initFetchParams,
|
() => props.initFetchParams,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue