form.ts 308 B

123456789101112131415161718
  1. import { useI18n } from '@/hooks/web/useI18n';
  2. /**
  3. * 获取启用停用下拉列
  4. */
  5. export const getUseYnSelectOptions = () => {
  6. const { t } = useI18n();
  7. return [
  8. {
  9. label: t('common.form.use'),
  10. value: 1,
  11. },
  12. {
  13. label: t('common.form.noUse'),
  14. value: 0,
  15. },
  16. ];
  17. };