123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <script setup lang="ts">
- import { ref , watch} from "vue";
- import searchConfig from "./config/search.config";
- import contentConfig from "./config/content.config";
- import { PageContentInstance } from "/@/components/PageContent";
- import { useRenderIcon } from "/@/components/ReIcon/src/hooks";
- import { usePageSearch, type PageHooks } from "/@/hooks/page";
- import { useUserStore } from "/@/store/modules/user";
- import { isBeyondTime } from "/@/views/time/_utils";
- import { frontEndExport } from "/@/utils/export";
- import { usePermission } from "/@/hooks/core";
- import dayjs from "dayjs"
- const pageName = "receivableMain";
- const { hasPermissionWithCode } = usePermission(pageName);
- const pageContentRef = ref<PageContentInstance | null>(null);
- const userStore = useUserStore();
- const hooks: PageHooks = {
- pageSearchHook: () => usePageSearch((params) => {
- const { date, ...rest } = params;
- const start = dayjs(date).format('YYYY-MM-DD');
- const daysInMonth = dayjs(date).daysInMonth();
- const end = dayjs(start).subtract(-(daysInMonth - 1), 'days').format('YYYY-MM-DD');
-
- return {
- result: {
- start: start + " 00:00:00",
- end: end + " 23:59:59",
- plat_type: "1",
- dz_type:"2",
- ...rest
- },
- deleteProps:['date']
- }
- },
- (params) => {
- const { date , depart_id} = params;
- const start = dayjs(date).format('YYYY-MM-DD');
- const daysInMonth = dayjs(date).daysInMonth();
- const end = dayjs(start).subtract(-(daysInMonth - 1), 'days').format('YYYY-MM-DD');
- return {
- result: {
- start: start + " 00:00:00",
- end: end + " 23:59:59",
- plat_type: "1",
- dz_type: "2",
- depart_id,
- },
- deleteProps:['date']
- }
- }, searchConfig)
- };
- const searchConfigRef = ref(searchConfig);
- watch(
- () => userStore.level,
- level => {
- const { formItems } = searchConfigRef.value;
- const index = formItems.findIndex(({ field }) => field === "depart_id");
- const { itemid = "" } = userStore.info || {};
- if (Number(level) === 2) {
- searchConfigRef.value.formItems[index].disabled = Number(level) === 2;
- searchConfigRef.value.formItems[index].defaultValue = itemid;
- }
- },
- {
- immediate: true
- }
- );
- </script>
- <template>
- <page-auth :page-name="pageName">
- <page-container
- :hooks="hooks"
- :page-name="pageName"
- :get-content-ref="ref => (pageContentRef = ref)"
- :content-config="contentConfig"
- />
- </page-auth>
- </template>
|