140 lines
3.7 KiB
Vue
140 lines
3.7 KiB
Vue
<script setup lang="ts">
|
|
import { computed, ref } from 'vue';
|
|
|
|
import { useVbenModal } from '@vben/common-ui';
|
|
import { $t } from '@vben/locales';
|
|
import { cloneDeep,handleNode,getPopupContainer } from '@vben/utils';
|
|
import { useVbenForm } from '#/adapter/form';
|
|
import { carChargeAdd, carChargeInfo, carChargeUpdate } from '#/api/property/carCharge';
|
|
import { defaultFormValueGetter, useBeforeCloseDiff } from '#/utils/popup';
|
|
import { addModalSchema } from './data';
|
|
import { communityTree } from '#/api/property/community';
|
|
|
|
const emit = defineEmits<{ reload: [] }>();
|
|
|
|
|
|
const [BasicForm, formApi] = useVbenForm({
|
|
commonConfig: {
|
|
// 默认占满两列
|
|
formItemClass: 'col-span-1',
|
|
// 默认label宽度 px
|
|
labelWidth: 140,
|
|
// 通用配置项 会影响到所有表单项
|
|
componentProps: {
|
|
class: 'w-full',
|
|
}
|
|
},
|
|
schema: addModalSchema(),
|
|
showDefaultActions: false,
|
|
wrapperClass: 'grid-cols-2',
|
|
});
|
|
|
|
const { onBeforeClose, markInitialized, resetInitialized } = useBeforeCloseDiff(
|
|
{
|
|
initializedGetter: defaultFormValueGetter(formApi),
|
|
currentGetter: defaultFormValueGetter(formApi),
|
|
},
|
|
);
|
|
|
|
const [BasicModal, modalApi] = useVbenModal({
|
|
// 在这里更改宽度
|
|
class: 'w-[75%]',
|
|
fullscreenButton: false,
|
|
onBeforeClose,
|
|
onClosed: handleClosed,
|
|
onConfirm: handleConfirm,
|
|
onOpenChange: async (isOpen) => {
|
|
if (!isOpen) {
|
|
return null;
|
|
}
|
|
setupCommunitySelect()
|
|
modalApi.modalLoading(true);
|
|
|
|
const { id } = modalApi.getData() as { id?: number | string };
|
|
await formApi.setValues({costType:'2'});//固定费用类型为停车费,在字典中值为2
|
|
await markInitialized();
|
|
|
|
modalApi.modalLoading(false);
|
|
},
|
|
});
|
|
|
|
async function handleConfirm() {
|
|
try {
|
|
modalApi.lock(true);
|
|
const { valid } = await formApi.validate();
|
|
if (!valid) {
|
|
return;
|
|
}
|
|
// getValues获取为一个readonly的对象 需要修改必须先深拷贝一次
|
|
const data = cloneDeep(await formApi.getValues());
|
|
await carChargeAdd(data);
|
|
resetInitialized();
|
|
emit('reload');
|
|
modalApi.close();
|
|
} catch (error) {
|
|
console.error(error);
|
|
} finally {
|
|
modalApi.lock(false);
|
|
}
|
|
}
|
|
|
|
async function handleClosed() {
|
|
await formApi.resetForm();
|
|
resetInitialized();
|
|
}
|
|
// 获取服务地址
|
|
async function setupCommunitySelect() {
|
|
const areaList = await communityTree(4);
|
|
// 选中后显示在输入框的值 即父节点 / 子节点
|
|
// addFullName(areaList, 'areaName', ' / ');
|
|
const splitStr = '/';
|
|
handleNode(areaList, 'label', splitStr, function (node: any) {
|
|
if (node.level != 4) {
|
|
node.disabled = true;
|
|
}
|
|
});
|
|
formApi.updateSchema([
|
|
{
|
|
componentProps: () => ({
|
|
class: 'w-full',
|
|
fieldNames: {
|
|
key: 'id',
|
|
label: 'label',
|
|
value: 'code',
|
|
children: 'children',
|
|
},
|
|
getPopupContainer,
|
|
placeholder: '请选择楼层',
|
|
showSearch: true,
|
|
treeData: areaList,
|
|
treeDefaultExpandAll: true,
|
|
treeLine: { showLeafIcon: false },
|
|
// 筛选的字段
|
|
treeNodeFilterProp: 'label',
|
|
// 选中后显示在输入框的值
|
|
treeNodeLabelProp: 'fullName',
|
|
}),
|
|
fieldName: 'floorId',
|
|
},
|
|
]);
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<BasicModal title="创建收费">
|
|
<BasicForm />
|
|
</BasicModal>
|
|
</template>
|
|
<style scoped>
|
|
/* 使用 :deep() 穿透 scoped 样式,影响子组件 */
|
|
:deep(.ant-input[disabled]),
|
|
:deep(.ant-input-number-disabled .ant-input-number-input),
|
|
:deep(.ant-select-disabled .ant-select-selection-item) {
|
|
/* 设置一个更深的颜色,可以自己调整 */
|
|
color: rgba(0, 0, 0, 0.65) !important;
|
|
/* 有些浏览器需要这个来覆盖默认颜色 */
|
|
-webkit-text-fill-color: rgba(0, 0, 0, 0.65) !important;
|
|
}
|
|
</style>
|
|
|