43 lines
696 B
Vue
43 lines
696 B
Vue
<template>
|
|
<div class="reex_box">
|
|
<!-- 结果复查 -->
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, watch, toRefs, onMounted, computed } from 'vue'
|
|
import { redoResult } from "@/api/liswork/work/LisWork";
|
|
|
|
|
|
const props = defineProps({
|
|
// 主键
|
|
queryParams: {
|
|
type: Object,
|
|
default: {}
|
|
},
|
|
|
|
|
|
})
|
|
|
|
// 解构 props
|
|
const { queryParams } = toRefs(props);
|
|
|
|
const getReexamination = () => {
|
|
redoResult(queryParams.value).then((res: any) => {
|
|
if (res.code == 0) {
|
|
|
|
}
|
|
})
|
|
};
|
|
|
|
watch(() => queryParams.value, () => {
|
|
getReexamination();
|
|
}, { immediate: true })
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.reex_box {
|
|
height: 82vh;
|
|
overflow-y: auto;
|
|
}
|
|
</style> |