mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-24 19:50:19 +08:00
35 lines
1.0 KiB
Go
35 lines
1.0 KiB
Go
import { h, ref } from 'vue';
|
|
import { NAvatar, NImage, NTag, NSwitch, NRate } from 'naive-ui';
|
|
import { cloneDeep } from 'lodash-es';
|
|
import { FormSchema } from '@/components/Form';
|
|
import { Dicts } from '@/api/dict/dict';
|
|
@{ if eq .options.Step.HasSwitch true }import { Switch } from '@/api/@{.varName | LcFirst}';@{end}
|
|
import { isArray, isNullObject } from '@/utils/is';
|
|
import { getFileExt } from '@/utils/urlUtils';
|
|
import { defRangeShortcuts, defShortcuts, formatToDate } from '@/utils/dateUtil';
|
|
import { validate } from '@/utils/validateUtil';
|
|
import { getOptionLabel, getOptionTag, Options } from '@/utils/hotgo';
|
|
@{ if eq .options.Step.HasSwitch true }
|
|
import { usePermission } from '@/hooks/web/usePermission';
|
|
const { hasPermission } = usePermission();
|
|
const $message = window['$message'];
|
|
@{end}
|
|
|
|
@{.state}
|
|
|
|
@{.defaultState}
|
|
|
|
export function newState(state: State | null): State {
|
|
if (state !== null) {
|
|
return cloneDeep(state);
|
|
}
|
|
return cloneDeep(defaultState);
|
|
}
|
|
|
|
@{.dictOptions.const}
|
|
@{.rules}
|
|
@{.formSchema}
|
|
@{.columns}
|
|
@{.dictOptions.load}
|
|
|