cxc-szcx-uniapp/pages/views/shengchan/shishishuju/index.vue

44 lines
641 B
Vue

<template>
<view :class="{ gray: store.isgray == 1 }">
<trqSssjVue></trqSssjVue>
</view>
</template>
<script setup>
import {
ref,
onMounted,
computed,
nextTick,
watchEffect
} from 'vue';
import {
onLoad
} from '@dcloudio/uni-app';
import {
queryJinriShengchansj,
queryYearShengchansj,
queryJinriTrqShengchansj
} from '@/api/shengchan.js';
import {
formatDate,
getDateAfterDays
} from '@/utils/dateTime.js';
import {
beforeJump
} from '@/utils/index.js';
import {
useStore
} from '@/store';
import trqSssjVue from './trqSssj.vue';
const store = useStore();
</script>
<style scoped>
</style>