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.

57 lines
1.2 KiB

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