mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2025-12-16 16:42:50 +00:00
87 lines
1.6 KiB
TypeScript
87 lines
1.6 KiB
TypeScript
import { useCrud } from "@cool-vue/crud";
|
|
import { ElMessage } from "element-plus";
|
|
import { defineComponent, ref, watch } from "vue";
|
|
import { isBoolean } from "lodash-es";
|
|
|
|
export default defineComponent({
|
|
name: "cl-switch",
|
|
|
|
props: {
|
|
scope: null,
|
|
column: null,
|
|
modelValue: [Number, String, Boolean],
|
|
activeValue: {
|
|
type: [Number, String, Boolean],
|
|
default: true
|
|
},
|
|
inactiveValue: {
|
|
type: [Number, String, Boolean],
|
|
default: false
|
|
}
|
|
},
|
|
|
|
emits: ["update:modelValue", "change"],
|
|
|
|
setup(props, { emit }) {
|
|
// cl-crud
|
|
const Crud = useCrud();
|
|
|
|
// 状态
|
|
const status = ref<boolean | number | string>();
|
|
|
|
watch(
|
|
() => props.modelValue,
|
|
(val: any) => {
|
|
if (isBoolean(props.activeValue)) {
|
|
status.value = Boolean(val);
|
|
} else {
|
|
status.value = val;
|
|
}
|
|
},
|
|
{
|
|
immediate: true
|
|
}
|
|
);
|
|
|
|
// 监听改变
|
|
function onChange(val: boolean | string | number) {
|
|
if (props.column && props.scope) {
|
|
if (Crud.value?.service.update) {
|
|
Crud.value?.service
|
|
?.update({
|
|
...props.scope,
|
|
[props.column.property]: val
|
|
})
|
|
.then(() => {
|
|
ElMessage.success("更新成功");
|
|
emit("update:modelValue", val);
|
|
emit("change", val);
|
|
})
|
|
.catch((err) => {
|
|
ElMessage.error(err.message);
|
|
});
|
|
}
|
|
} else {
|
|
emit("update:modelValue", val);
|
|
emit("change", val);
|
|
}
|
|
}
|
|
|
|
return {
|
|
status,
|
|
onChange
|
|
};
|
|
},
|
|
|
|
render(ctx: any) {
|
|
return (
|
|
<el-switch
|
|
v-model={ctx.status}
|
|
active-value={ctx.activeValue}
|
|
inactive-value={ctx.inactiveValue}
|
|
onChange={ctx.onChange}
|
|
/>
|
|
);
|
|
}
|
|
});
|