You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

59 lines
1.2 KiB

<script lang="ts" setup>
2 years ago
import { computed } from 'vue'
import { Switch } from 'ant-design-vue'
import { baseHandler } from '../handler'
import type { HandlerEnum } from '../enum'
2 years ago
import { useDesign } from '@/hooks/web/useDesign'
import { useI18n } from '@/hooks/web/useI18n'
defineOptions({ name: 'SwitchItem' })
2 years ago
const props = defineProps({
event: {
type: Number as PropType<HandlerEnum>,
2 years ago
},
disabled: {
type: Boolean,
2 years ago
},
title: {
type: String,
2 years ago
},
def: {
type: Boolean,
},
2 years ago
})
const { prefixCls } = useDesign('setting-switch-item')
const { t } = useI18n()
const getBindValue = computed(() => {
return props.def ? { checked: props.def } : {}
})
function handleChange(e) {
2 years ago
props.event && baseHandler(props.event, e)
}
</script>
<template>
<div :class="prefixCls">
<span> {{ title }}</span>
<Switch
v-bind="getBindValue"
:disabled="disabled"
:checked-children="t('layout.setting.on')"
:un-checked-children="t('layout.setting.off')"
@change="handleChange"
/>
</div>
</template>
2 years ago
<style lang="less" scoped>
@prefix-cls: ~'@{namespace}-setting-switch-item';
.@{prefix-cls} {
display: flex;
justify-content: space-between;
margin: 16px 0;
}
</style>