部门管理增加省市区等
This commit is contained in:
parent
5399127ea9
commit
b8efa56a30
|
@ -122,7 +122,7 @@
|
||||||
//定义表格列
|
//定义表格列
|
||||||
const columns = [
|
const columns = [
|
||||||
{
|
{
|
||||||
title: '护理单元ID',
|
title: '护理单元编码',
|
||||||
dataIndex: 'nuId',
|
dataIndex: 'nuId',
|
||||||
width: 180,
|
width: 180,
|
||||||
align: 'left',
|
align: 'left',
|
||||||
|
|
|
@ -10,6 +10,11 @@ export const columns: BasicColumn[] = [
|
||||||
align: "center",
|
align: "center",
|
||||||
dataIndex: 'nuName'
|
dataIndex: 'nuName'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '护理单元编码',
|
||||||
|
align: "center",
|
||||||
|
dataIndex: 'code'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '区域标签',
|
title: '区域标签',
|
||||||
align: "center",
|
align: "center",
|
||||||
|
|
|
@ -2,16 +2,24 @@
|
||||||
<a-spin :spinning="confirmLoading">
|
<a-spin :spinning="confirmLoading">
|
||||||
<JFormContainer :disabled="disabled">
|
<JFormContainer :disabled="disabled">
|
||||||
<template #detail>
|
<template #detail>
|
||||||
<a-form ref="formRef" class="antd-modal-form" :labelCol="labelCol" :wrapperCol="wrapperCol" name="NuBaseInfoForm">
|
<a-form ref="formRef" class="antd-modal-form" :labelCol="labelCol" :wrapperCol="wrapperCol"
|
||||||
|
name="NuBaseInfoForm">
|
||||||
<a-row>
|
<a-row>
|
||||||
<a-col :span="24">
|
<a-col :span="24">
|
||||||
<a-form-item label="护理单元名称" v-bind="validateInfos.nuName" id="NuBaseInfoForm-nuName" name="nuName">
|
<a-form-item label="护理单元名称" v-bind="validateInfos.nuName" id="NuBaseInfoForm-nuName" name="nuName">
|
||||||
<a-input v-model:value="formData.nuName" placeholder="请输入护理单元名称" allow-clear ></a-input>
|
<a-input v-model:value="formData.nuName" placeholder="请输入护理单元名称" allow-clear></a-input>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="24">
|
||||||
|
<a-form-item label="护理单元编码" v-bind="validateInfos.code" id="NuBaseInfoForm-code" name="code">
|
||||||
|
<a-input v-model:value="formData.code" placeholder="编码自动生成" allow-clear :disabled="!formData.code"
|
||||||
|
:readonly="formData.code"></a-input>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="24">
|
<a-col :span="24">
|
||||||
<a-form-item label="区域标签" v-bind="validateInfos.areaFlag" id="NuBaseInfoForm-areaFlag" name="areaFlag">
|
<a-form-item label="区域标签" v-bind="validateInfos.areaFlag" id="NuBaseInfoForm-areaFlag" name="areaFlag">
|
||||||
<j-dict-select-tag v-model:value="formData.areaFlag" dictCode="nu_type" placeholder="请选择区域标签ID" allow-clear />
|
<j-dict-select-tag v-model:value="formData.areaFlag" dictCode="nu_type" placeholder="请选择区域标签ID"
|
||||||
|
allow-clear />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<!-- <a-col :span="24">
|
<!-- <a-col :span="24">
|
||||||
|
@ -27,78 +35,79 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { ref, reactive, defineExpose, nextTick, defineProps, computed, onMounted } from 'vue';
|
import { ref, reactive, defineExpose, nextTick, defineProps, computed, onMounted } from 'vue';
|
||||||
import { defHttp } from '/@/utils/http/axios';
|
import { defHttp } from '/@/utils/http/axios';
|
||||||
import { useMessage } from '/@/hooks/web/useMessage';
|
import { useMessage } from '/@/hooks/web/useMessage';
|
||||||
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
||||||
import { getValueType } from '/@/utils';
|
import { getValueType } from '/@/utils';
|
||||||
import { saveOrUpdate } from '../NuBaseInfo.api';
|
import { saveOrUpdate } from '../NuBaseInfo.api';
|
||||||
import { Form } from 'ant-design-vue';
|
import { Form } from 'ant-design-vue';
|
||||||
import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
|
import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
formDisabled: { type: Boolean, default: false },
|
formDisabled: { type: Boolean, default: false },
|
||||||
formData: { type: Object, default: () => ({})},
|
formData: { type: Object, default: () => ({}) },
|
||||||
formBpm: { type: Boolean, default: true }
|
formBpm: { type: Boolean, default: true }
|
||||||
});
|
});
|
||||||
const formRef = ref();
|
const formRef = ref();
|
||||||
const useForm = Form.useForm;
|
const useForm = Form.useForm;
|
||||||
const emit = defineEmits(['register', 'ok']);
|
const emit = defineEmits(['register', 'ok']);
|
||||||
const formData = reactive<Record<string, any>>({
|
const formData = reactive<Record<string, any>>({
|
||||||
id: '',
|
id: '',
|
||||||
nuName: '',
|
nuName: '',
|
||||||
|
code: '',
|
||||||
areaFlag: '',
|
areaFlag: '',
|
||||||
status: '',
|
status: '',
|
||||||
});
|
});
|
||||||
const { createMessage } = useMessage();
|
const { createMessage } = useMessage();
|
||||||
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } });
|
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } });
|
||||||
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 16 } });
|
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 16 } });
|
||||||
const confirmLoading = ref<boolean>(false);
|
const confirmLoading = ref<boolean>(false);
|
||||||
//表单验证
|
//表单验证
|
||||||
const validatorRules = reactive({
|
const validatorRules = reactive({
|
||||||
});
|
});
|
||||||
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: false });
|
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: false });
|
||||||
|
|
||||||
// 表单禁用
|
// 表单禁用
|
||||||
const disabled = computed(()=>{
|
const disabled = computed(() => {
|
||||||
if(props.formBpm === true){
|
if (props.formBpm === true) {
|
||||||
if(props.formData.disabled === false){
|
if (props.formData.disabled === false) {
|
||||||
return false;
|
return false;
|
||||||
}else{
|
} else {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return props.formDisabled;
|
return props.formDisabled;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增
|
* 新增
|
||||||
*/
|
*/
|
||||||
function add() {
|
function add() {
|
||||||
edit({});
|
edit({});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 编辑
|
* 编辑
|
||||||
*/
|
*/
|
||||||
function edit(record) {
|
function edit(record) {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
resetFields();
|
resetFields();
|
||||||
const tmpData = {};
|
const tmpData = {};
|
||||||
Object.keys(formData).forEach((key) => {
|
Object.keys(formData).forEach((key) => {
|
||||||
if(record.hasOwnProperty(key)){
|
if (record.hasOwnProperty(key)) {
|
||||||
tmpData[key] = record[key]
|
tmpData[key] = record[key]
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
//赋值
|
//赋值
|
||||||
Object.assign(formData, tmpData);
|
Object.assign(formData, tmpData);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 提交数据
|
* 提交数据
|
||||||
*/
|
*/
|
||||||
async function submitForm() {
|
async function submitForm() {
|
||||||
try {
|
try {
|
||||||
// 触发表单验证
|
// 触发表单验证
|
||||||
await validate();
|
await validate();
|
||||||
|
@ -144,18 +153,18 @@
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
confirmLoading.value = false;
|
confirmLoading.value = false;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
defineExpose({
|
defineExpose({
|
||||||
add,
|
add,
|
||||||
edit,
|
edit,
|
||||||
submitForm,
|
submitForm,
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.antd-modal-form {
|
.antd-modal-form {
|
||||||
padding: 14px;
|
padding: 14px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -65,7 +65,7 @@ export const saveOrUpdateDict = (params, isUpdate) => {
|
||||||
* 查询全部树形节点数据
|
* 查询全部树形节点数据
|
||||||
* @param params
|
* @param params
|
||||||
*/
|
*/
|
||||||
export const loadTreeData = (params) => defHttp.get({ url: Api.loadTreeData, params });
|
export const loadTreeData = (params) => defHttp.get({ url: Api.loadTreeData,timeout:100*1000, params });
|
||||||
/**
|
/**
|
||||||
* 查询子节点数据
|
* 查询子节点数据
|
||||||
* @param params
|
* @param params
|
||||||
|
|
|
@ -64,4 +64,10 @@ export const formSchema: FormSchema[] = [
|
||||||
required: true,
|
required: true,
|
||||||
component: 'Input',
|
component: 'Input',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: '编码(非必要无需填写)',
|
||||||
|
field: 'code',
|
||||||
|
required: false,
|
||||||
|
component: 'Input',
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose width="550px" :title="getTitle" @ok="handleSubmit">
|
<BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose width="50vw" :title="getTitle" @ok="handleSubmit">
|
||||||
<BasicForm @register="registerForm" />
|
<BasicForm @register="registerForm" />
|
||||||
</BasicModal>
|
</BasicModal>
|
||||||
</template>
|
</template>
|
||||||
|
@ -21,11 +21,11 @@
|
||||||
showActionButtonGroup: false,
|
showActionButtonGroup: false,
|
||||||
labelCol: {
|
labelCol: {
|
||||||
xs: { span: 24 },
|
xs: { span: 24 },
|
||||||
sm: { span: 4 },
|
sm: { span: 5 },
|
||||||
},
|
},
|
||||||
wrapperCol: {
|
wrapperCol: {
|
||||||
xs: { span: 24 },
|
xs: { span: 24 },
|
||||||
sm: { span: 18 },
|
sm: { span: 15 },
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
//表单赋值
|
//表单赋值
|
||||||
|
|
|
@ -147,6 +147,9 @@
|
||||||
* 成功回调
|
* 成功回调
|
||||||
*/
|
*/
|
||||||
async function handleSuccess({ isUpdate,isSubAdd, values, expandedArr }) {
|
async function handleSuccess({ isUpdate,isSubAdd, values, expandedArr }) {
|
||||||
|
reload();
|
||||||
|
return
|
||||||
|
//几百条数据:直接重新加载比框架写的代码要加载快得多 框架设计师不知道在寻思鸡毛🤡 新增一条数据几百个请求处理 处理半天处理不完
|
||||||
if (isUpdate) {
|
if (isUpdate) {
|
||||||
//编辑回调
|
//编辑回调
|
||||||
updateTableDataRecord(values.id, values);
|
updateTableDataRecord(values.id, values);
|
||||||
|
|
|
@ -1,37 +1,54 @@
|
||||||
<template>
|
<template>
|
||||||
<BasicModal :title="title" :width="800" v-bind="$attrs" @ok="handleOk" @register="registerModal">
|
<BasicModal :title="title" :width="800" v-bind="$attrs" @ok="handleOk" @register="registerModal">
|
||||||
<BasicForm @register="registerForm" />
|
<BasicForm @register="registerForm">
|
||||||
|
<!-- 省份 -->
|
||||||
|
<template #province="{ model, field }">
|
||||||
|
<j-dict-select-tag @change="provinceChanged(model)" v-model:value="model[field]"
|
||||||
|
:dictCode="getProvinceDictCode()" placeholder="请选择所在省份" />
|
||||||
|
</template>
|
||||||
|
<!-- 城市 -->
|
||||||
|
<template #city="{ model, field }">
|
||||||
|
<j-dict-select-tag @change="cityChanged(model)" v-model:value="model[field]" :dictCode="getCityDictCode(model)"
|
||||||
|
placeholder="请选择所在城市" :disabled="!model.province" />
|
||||||
|
</template>
|
||||||
|
<!-- 区县 -->
|
||||||
|
<template #district="{ model, field }">
|
||||||
|
<j-dict-select-tag v-model:value="model[field]" :dictCode="getDistrictDictCode(model)" placeholder="请选择所在区县"
|
||||||
|
:disabled="!model.province || !model.city" />
|
||||||
|
</template>
|
||||||
|
</BasicForm>
|
||||||
</BasicModal>
|
</BasicModal>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { watch, computed, inject, ref, unref, onMounted } from 'vue';
|
import { watch, computed, inject, ref, unref, onMounted } from 'vue';
|
||||||
|
|
||||||
import { BasicForm, useForm } from '/@/components/Form/index';
|
import { BasicForm, useForm } from '/@/components/Form/index';
|
||||||
import { BasicModal, useModalInner } from '/@/components/Modal';
|
import { BasicModal, useModalInner } from '/@/components/Modal';
|
||||||
|
|
||||||
import { saveOrUpdateDepart } from '../depart.api';
|
import { saveOrUpdateDepart } from '../depart.api';
|
||||||
import { useBasicFormSchema, orgCategoryOptions } from '../depart.data';
|
import { useBasicFormSchema, orgCategoryOptions } from '../depart.data';
|
||||||
|
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
||||||
|
|
||||||
const emit = defineEmits(['success', 'register']);
|
const emit = defineEmits(['success', 'register']);
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
rootTreeData: { type: Array, default: () => [] },
|
rootTreeData: { type: Array, default: () => [] },
|
||||||
});
|
});
|
||||||
const prefixCls = inject('prefixCls');
|
const prefixCls = inject('prefixCls');
|
||||||
// 当前是否是更新模式
|
// 当前是否是更新模式
|
||||||
const isUpdate = ref<boolean>(false);
|
const isUpdate = ref<boolean>(false);
|
||||||
// 当前的弹窗数据
|
// 当前的弹窗数据
|
||||||
const model = ref<object>({});
|
const model = ref<object>({});
|
||||||
const title = computed(() => (isUpdate.value ? '编辑' : '新增'));
|
const title = computed(() => (isUpdate.value ? '编辑' : '新增'));
|
||||||
|
|
||||||
//注册表单
|
//注册表单
|
||||||
const [registerForm, { resetFields, setFieldsValue, validate, updateSchema }] = useForm({
|
const [registerForm, { resetFields, setFieldsValue, validate, updateSchema }] = useForm({
|
||||||
schemas: useBasicFormSchema().basicFormSchema,
|
schemas: useBasicFormSchema().basicFormSchema,
|
||||||
showActionButtonGroup: false,
|
showActionButtonGroup: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
// 注册弹窗
|
// 注册弹窗
|
||||||
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
|
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
|
||||||
await resetFields();
|
await resetFields();
|
||||||
isUpdate.value = unref(data?.isUpdate);
|
isUpdate.value = unref(data?.isUpdate);
|
||||||
// 当前是否为添加子级
|
// 当前是否为添加子级
|
||||||
|
@ -60,6 +77,18 @@
|
||||||
field: 'url',
|
field: 'url',
|
||||||
show: !isChild,
|
show: !isChild,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
field: 'province',
|
||||||
|
show: !isChild,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'city',
|
||||||
|
show: !isChild,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'district',
|
||||||
|
show: !isChild,
|
||||||
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
let record = unref(data?.record);
|
let record = unref(data?.record);
|
||||||
|
@ -76,10 +105,10 @@
|
||||||
);
|
);
|
||||||
model.value = record;
|
model.value = record;
|
||||||
await setFieldsValue({ ...record });
|
await setFieldsValue({ ...record });
|
||||||
});
|
});
|
||||||
|
|
||||||
// 提交事件
|
// 提交事件
|
||||||
async function handleOk() {
|
async function handleOk() {
|
||||||
try {
|
try {
|
||||||
setModalProps({ confirmLoading: true });
|
setModalProps({ confirmLoading: true });
|
||||||
let values = await validate();
|
let values = await validate();
|
||||||
|
@ -92,5 +121,33 @@
|
||||||
} finally {
|
} finally {
|
||||||
setModalProps({ confirmLoading: false });
|
setModalProps({ confirmLoading: false });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 省份字典
|
||||||
|
*/
|
||||||
|
function getProvinceDictCode() {
|
||||||
|
return 'sys_category,name,id,pid = \'xzqhdm\' order by code asc'
|
||||||
|
}
|
||||||
|
function provinceChanged(model) {
|
||||||
|
model.city = null
|
||||||
|
model.district = null
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 城市字典
|
||||||
|
* @param v_
|
||||||
|
*/
|
||||||
|
function getCityDictCode(v_) {
|
||||||
|
return 'sys_category,name,id,pid = \'' + v_.province + '\' order by code asc'
|
||||||
|
}
|
||||||
|
function cityChanged(model) {
|
||||||
|
model.district = null
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 区县字典
|
||||||
|
* @param v_
|
||||||
|
*/
|
||||||
|
function getDistrictDictCode(v_) {
|
||||||
|
return 'sys_category,name,id,pid = \'' + v_.city + '\' order by code asc'
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,6 +1,22 @@
|
||||||
<template>
|
<template>
|
||||||
<a-spin :spinning="loading">
|
<a-spin :spinning="loading">
|
||||||
<BasicForm @register="registerForm" />
|
<BasicForm @register="registerForm">
|
||||||
|
<!-- 省份 -->
|
||||||
|
<template #province="{ model, field }">
|
||||||
|
<j-dict-select-tag @change="provinceChanged(model)" v-model:value="model[field]"
|
||||||
|
:dictCode="getProvinceDictCode()" placeholder="请选择所在省份" :disabled="model.orgCategory != '1'" />
|
||||||
|
</template>
|
||||||
|
<!-- 城市 -->
|
||||||
|
<template #city="{ model, field }">
|
||||||
|
<j-dict-select-tag @change="cityChanged(model)" v-model:value="model[field]" :dictCode="getCityDictCode(model)"
|
||||||
|
placeholder="请选择所在城市" :disabled="model.orgCategory != '1' && !model.province" />
|
||||||
|
</template>
|
||||||
|
<!-- 区县 -->
|
||||||
|
<template #district="{ model, field }">
|
||||||
|
<j-dict-select-tag v-model:value="model[field]" :dictCode="getDistrictDictCode(model)" placeholder="请选择所在区县"
|
||||||
|
:disabled="model.orgCategory != '1' && (!model.province || !model.city)" />
|
||||||
|
</template>
|
||||||
|
</BasicForm>
|
||||||
<div class="j-box-bottom-button offset-20" style="margin-top: 30px">
|
<div class="j-box-bottom-button offset-20" style="margin-top: 30px">
|
||||||
<div class="j-box-bottom-button-float" :class="[`${prefixCls}`]">
|
<div class="j-box-bottom-button-float" :class="[`${prefixCls}`]">
|
||||||
<a-button preIcon="ant-design:sync-outlined" @click="onReset">重置</a-button>
|
<a-button preIcon="ant-design:sync-outlined" @click="onReset">重置</a-button>
|
||||||
|
@ -11,40 +27,41 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { watch, computed, inject, ref, unref, onMounted } from 'vue';
|
import { watch, computed, inject, ref, unref, onMounted } from 'vue';
|
||||||
import { BasicForm, useForm } from '/@/components/Form/index';
|
import { BasicForm, useForm } from '/@/components/Form/index';
|
||||||
import { saveOrUpdateDepart } from '../depart.api';
|
import { saveOrUpdateDepart } from '../depart.api';
|
||||||
import { useBasicFormSchema, orgCategoryOptions } from '../depart.data';
|
import { useBasicFormSchema, orgCategoryOptions } from '../depart.data';
|
||||||
import { useDesign } from '/@/hooks/web/useDesign';
|
import { useDesign } from '/@/hooks/web/useDesign';
|
||||||
|
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
||||||
|
|
||||||
const { prefixCls } = useDesign('j-depart-form-content');
|
const { prefixCls } = useDesign('j-depart-form-content');
|
||||||
|
|
||||||
const emit = defineEmits(['success']);
|
const emit = defineEmits(['success']);
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
data: { type: Object, default: () => ({}) },
|
data: { type: Object, default: () => ({}) },
|
||||||
rootTreeData: { type: Array, default: () => [] },
|
rootTreeData: { type: Array, default: () => [] },
|
||||||
});
|
});
|
||||||
const loading = ref<boolean>(false);
|
const loading = ref<boolean>(false);
|
||||||
// 当前是否是更新模式
|
// 当前是否是更新模式
|
||||||
const isUpdate = ref<boolean>(true);
|
const isUpdate = ref<boolean>(true);
|
||||||
// 当前的弹窗数据
|
// 当前的弹窗数据
|
||||||
const model = ref<object>({});
|
const model = ref<object>({});
|
||||||
|
|
||||||
//注册表单
|
//注册表单
|
||||||
const [registerForm, { resetFields, setFieldsValue, validate, updateSchema }] = useForm({
|
const [registerForm, { resetFields, setFieldsValue, validate, updateSchema }] = useForm({
|
||||||
schemas: useBasicFormSchema().basicFormSchema,
|
schemas: useBasicFormSchema().basicFormSchema,
|
||||||
showActionButtonGroup: false,
|
showActionButtonGroup: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
const categoryOptions = computed(() => {
|
const categoryOptions = computed(() => {
|
||||||
if (!!props?.data?.parentId) {
|
if (!!props?.data?.parentId) {
|
||||||
return orgCategoryOptions.child;
|
return orgCategoryOptions.child;
|
||||||
} else {
|
} else {
|
||||||
return orgCategoryOptions.root;
|
return orgCategoryOptions.root;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
// 禁用字段
|
// 禁用字段
|
||||||
updateSchema([
|
updateSchema([
|
||||||
{ field: 'parentId', componentProps: { disabled: true } },
|
{ field: 'parentId', componentProps: { disabled: true } },
|
||||||
|
@ -90,16 +107,16 @@
|
||||||
},
|
},
|
||||||
{ immediate: true }
|
{ immediate: true }
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
// 重置表单
|
// 重置表单
|
||||||
async function onReset() {
|
async function onReset() {
|
||||||
await resetFields();
|
await resetFields();
|
||||||
await setFieldsValue({ ...model.value });
|
await setFieldsValue({ ...model.value });
|
||||||
}
|
}
|
||||||
|
|
||||||
// 提交事件
|
// 提交事件
|
||||||
async function onSubmit() {
|
async function onSubmit() {
|
||||||
try {
|
try {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
let values = await validate();
|
let values = await validate();
|
||||||
|
@ -112,17 +129,47 @@
|
||||||
} finally {
|
} finally {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 省份字典
|
||||||
|
*/
|
||||||
|
function getProvinceDictCode() {
|
||||||
|
return 'sys_category,name,id,pid = \'xzqhdm\' order by code asc'
|
||||||
|
}
|
||||||
|
function provinceChanged(model) {
|
||||||
|
model.city = null
|
||||||
|
model.district = null
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 城市字典
|
||||||
|
* @param v_
|
||||||
|
*/
|
||||||
|
function getCityDictCode(v_) {
|
||||||
|
return 'sys_category,name,id,pid = \'' + v_.province + '\' order by code asc'
|
||||||
|
}
|
||||||
|
function cityChanged(model) {
|
||||||
|
model.district = null
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 区县字典
|
||||||
|
* @param v_
|
||||||
|
*/
|
||||||
|
function getDistrictDictCode(v_) {
|
||||||
|
return 'sys_category,name,id,pid = \'' + v_.city + '\' order by code asc'
|
||||||
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less">
|
<style lang="less">
|
||||||
// update-begin-author:liusq date:20230625 for: [issues/563]暗色主题部分失效
|
// update-begin-author:liusq date:20230625 for: [issues/563]暗色主题部分失效
|
||||||
|
|
||||||
@prefix-cls: ~'@{namespace}-j-depart-form-content';
|
@prefix-cls: ~'@{namespace}-j-depart-form-content';
|
||||||
/*begin 兼容暗夜模式*/
|
|
||||||
.@{prefix-cls} {
|
/*begin 兼容暗夜模式*/
|
||||||
|
.@{prefix-cls} {
|
||||||
background: @component-background;
|
background: @component-background;
|
||||||
border-top: 1px solid @border-color-base;
|
border-top: 1px solid @border-color-base;
|
||||||
}
|
}
|
||||||
/*end 兼容暗夜模式*/
|
|
||||||
// update-end-author:liusq date:20230625 for: [issues/563]暗色主题部分失效
|
/*end 兼容暗夜模式*/
|
||||||
</style>
|
// update-end-author:liusq date:20230625 for: [issues/563]暗色主题部分失效</style>
|
||||||
|
|
|
@ -36,23 +36,35 @@ export function useBasicFormSchema() {
|
||||||
component: 'RadioButtonGroup',
|
component: 'RadioButtonGroup',
|
||||||
componentProps: { options: [] },
|
componentProps: { options: [] },
|
||||||
},
|
},
|
||||||
{
|
|
||||||
field: 'departOrder',
|
|
||||||
label: '排序',
|
|
||||||
component: 'InputNumber',
|
|
||||||
componentProps: {},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
field: 'url',
|
field: 'url',
|
||||||
label: '协议域名',
|
label: '协议域名',
|
||||||
component: 'Input',
|
component: 'Input',
|
||||||
dynamicDisabled: ({ values }) => {
|
dynamicDisabled: ({ values }) => {
|
||||||
return values.orgCategory != '1'
|
return values.orgCategory != '1';
|
||||||
},
|
},
|
||||||
componentProps: {
|
componentProps: {
|
||||||
placeholder: '请输入协议域名',
|
placeholder: '请输入协议域名',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
field: 'province',
|
||||||
|
label: '省份',
|
||||||
|
component: 'Input',
|
||||||
|
slot: 'province',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'city',
|
||||||
|
label: '城市',
|
||||||
|
component: 'Input',
|
||||||
|
slot: 'city',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'district',
|
||||||
|
label: '区县',
|
||||||
|
component: 'Input',
|
||||||
|
slot: 'district',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
field: 'mobile',
|
field: 'mobile',
|
||||||
label: '电话',
|
label: '电话',
|
||||||
|
@ -85,6 +97,12 @@ export function useBasicFormSchema() {
|
||||||
placeholder: '请输入备注',
|
placeholder: '请输入备注',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
field: 'departOrder',
|
||||||
|
label: '排序',
|
||||||
|
component: 'InputNumber',
|
||||||
|
componentProps: {},
|
||||||
|
},
|
||||||
];
|
];
|
||||||
return { basicFormSchema };
|
return { basicFormSchema };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue