This commit is contained in:
2025-09-03 19:58:23 +08:00
parent 3c59cc6111
commit c3ac345c59
2 changed files with 20 additions and 25 deletions

View File

@ -33,6 +33,7 @@
</template>
<script setup>
import CheckBox from '@/components/checkBox/index.vue'
import YpModel from '@/components/ypModel/index.vue'
import HistoricalReport from './historicalReport.vue'
import * as MOSTY from "@/components/MyComponents/index";
@ -70,15 +71,16 @@ const list = ref([])
const loading = ref(false);
const formData = ref({})
const chageData=ref()
watch(() => [D_SG_SJLY.value, D_SG_TSYPGZ.value], val => {
checkData.yplxBtn.list = val[1].map(v => v.zdmc);
checkData.yplxBtn.hasChoose = val[1].map(v => v.zdmc);
watch(() => D_SG_TSYPGZ.value, val => {
checkData.yplxBtn.list = val.map(v => v.zdmc);
checkData.yplxBtn.hasChoose = val.map(v => v.zdmc);
}, { immediate: true, deep: true });
onMounted(() => {
show.value = true;
Time()
tabHeightFn();
getLits()
})