297 lines
9.2 KiB
Vue
297 lines
9.2 KiB
Vue
|
|
<template>
|
||
|
|
<a-spin :spinning="confirmLoading">
|
||
|
|
<JFormContainer :disabled="disabled">
|
||
|
|
<template #detail>
|
||
|
|
<a-form ref="formRef" class="antd-modal-form" :labelCol="labelCol" :wrapperCol="wrapperCol"
|
||
|
|
name="OrgApplyInfoForm">
|
||
|
|
<a-row>
|
||
|
|
<a-col :span="24">
|
||
|
|
<SectionDivider :title="'机构信息'" />
|
||
|
|
</a-col>
|
||
|
|
<a-col :span="12">
|
||
|
|
<a-form-item label="机构名称" v-bind="validateInfos.comName" id="OrgApplyInfoForm-comName" name="comName">
|
||
|
|
<a-input v-model:value="formData.comName" :readOnly="true"></a-input>
|
||
|
|
</a-form-item>
|
||
|
|
</a-col>
|
||
|
|
<a-col :span="12">
|
||
|
|
<a-form-item label="机构所在地">
|
||
|
|
<a-input v-model:value="cityViewValue" placeholder="请输入机构所在地" :readOnly="true"></a-input>
|
||
|
|
</a-form-item>
|
||
|
|
</a-col>
|
||
|
|
<a-col :span="12">
|
||
|
|
<a-form-item label="机构地址" v-bind="validateInfos.orgAddress" id="OrgApplyInfoForm-orgAddress"
|
||
|
|
name="orgAddress">
|
||
|
|
<a-textarea v-model:value="formData.orgAddress" :readOnly="true"></a-textarea>
|
||
|
|
</a-form-item>
|
||
|
|
</a-col>
|
||
|
|
<a-col :span="12">
|
||
|
|
<a-form-item label="机构负责人" v-bind="validateInfos.orgLeader" id="OrgApplyInfoForm-orgLeader"
|
||
|
|
name="orgLeader">
|
||
|
|
<a-input v-model:value="formData.orgLeader" :readOnly="true"></a-input>
|
||
|
|
</a-form-item>
|
||
|
|
</a-col>
|
||
|
|
<a-col :span="12">
|
||
|
|
<a-form-item label="机构负责人电话" v-bind="validateInfos.orgLeaderPhone" id="OrgApplyInfoForm-orgLeaderPhone"
|
||
|
|
name="orgLeaderPhone">
|
||
|
|
<a-input v-model:value="formData.orgLeaderPhone" :readOnly="true"></a-input>
|
||
|
|
</a-form-item>
|
||
|
|
</a-col>
|
||
|
|
<a-col :span="12">
|
||
|
|
<a-form-item label="机构房屋性质" v-bind="validateInfos.orgPropertyType" id="OrgApplyInfoForm-orgPropertyType"
|
||
|
|
name="orgPropertyType">
|
||
|
|
<a-input v-model:value="formData.orgPropertyType" :readOnly="true"></a-input>
|
||
|
|
</a-form-item>
|
||
|
|
</a-col>
|
||
|
|
<a-col :span="12">
|
||
|
|
<a-form-item label="机构建筑面积" v-bind="validateInfos.orgBuildingArea" id="OrgApplyInfoForm-orgBuildingArea"
|
||
|
|
name="orgBuildingArea">
|
||
|
|
<a-input v-model:value="formData.orgBuildingArea" addon-after="平方米" style="width: 100%" readOnly />
|
||
|
|
</a-form-item>
|
||
|
|
</a-col>
|
||
|
|
</a-row>
|
||
|
|
<a-row v-if="formData.buildStatus == '3'">
|
||
|
|
<a-col :span="24">
|
||
|
|
<SectionDivider :title="'加盟合同'" />
|
||
|
|
</a-col>
|
||
|
|
</a-row>
|
||
|
|
<a-row v-if="formData.buildStatus == '3'">
|
||
|
|
<a-col :span="12">
|
||
|
|
<a-form-item label="加盟合同" v-bind="validateInfos.contract" id="OrgApplyInfoForm-contract">
|
||
|
|
<JUpload v-model:value="formData.contract" :maxCount="1"></JUpload>
|
||
|
|
</a-form-item>
|
||
|
|
</a-col>
|
||
|
|
<a-col :span="12">
|
||
|
|
<a-form-item label="备注信息" v-bind="validateInfos.contractNote" id="OrgApplyInfoForm-contractNote"
|
||
|
|
name="contractNote">
|
||
|
|
<a-textarea :autosize="{ minRows: 3 }" maxlength="100" show-count v-model:value="formData.contractNote"
|
||
|
|
allow-clear placeholder="请填写备注信息"></a-textarea>
|
||
|
|
</a-form-item>
|
||
|
|
</a-col>
|
||
|
|
</a-row>
|
||
|
|
</a-form>
|
||
|
|
</template>
|
||
|
|
</JFormContainer>
|
||
|
|
</a-spin>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" setup>
|
||
|
|
import { ref, reactive, defineExpose, nextTick, defineProps, computed, onMounted } from 'vue';
|
||
|
|
import { defHttp } from '/@/utils/http/axios';
|
||
|
|
import { useMessage } from '/@/hooks/web/useMessage';
|
||
|
|
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
||
|
|
import { getValueType } from '/@/utils';
|
||
|
|
import { saveOrUpdate, submitContract } from '../OrgApplyInfo.api';
|
||
|
|
import { Form } from 'ant-design-vue';
|
||
|
|
import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
|
||
|
|
import TencentMap from '/@/components/TencentMap/TencentMap.vue';
|
||
|
|
import JImageUpload from '/@/components/Form/src/jeecg/components/JImageUpload.vue';
|
||
|
|
import JUpload from '/@/components/Form/src/jeecg/components/JUpload/JUpload.vue';
|
||
|
|
|
||
|
|
const cityViewValue = ref('')
|
||
|
|
const props = defineProps({
|
||
|
|
formDisabled: { type: Boolean, default: false },
|
||
|
|
formData: { type: Object, default: () => ({}) },
|
||
|
|
formBpm: { type: Boolean, default: true }
|
||
|
|
});
|
||
|
|
const formRef = ref();
|
||
|
|
const useForm = Form.useForm;
|
||
|
|
const emit = defineEmits(['register', 'ok']);
|
||
|
|
const formData = reactive<Record<string, any>>({
|
||
|
|
id: '',
|
||
|
|
openId: '',
|
||
|
|
wechatName: '',
|
||
|
|
tel: '',
|
||
|
|
status: '',
|
||
|
|
buildStatus: '',
|
||
|
|
content: '',
|
||
|
|
createTime: '',
|
||
|
|
updateTime: '',
|
||
|
|
izEntry: '',
|
||
|
|
name: '',
|
||
|
|
sex: '',
|
||
|
|
national: '',
|
||
|
|
birthDate: '',
|
||
|
|
idCardAddress: '',
|
||
|
|
idCard: '',
|
||
|
|
issuingAuthority: '',
|
||
|
|
startTime: '',
|
||
|
|
endTime: '',
|
||
|
|
cardZmPath: '',
|
||
|
|
cardFmPath: '',
|
||
|
|
comBusinessLicense: '',
|
||
|
|
comName: '',
|
||
|
|
comRegisterAddress: '',
|
||
|
|
comCreditCode: '',
|
||
|
|
comLegalPerson: '',
|
||
|
|
orgAddress: '',
|
||
|
|
orgCoordinateLo: '',
|
||
|
|
orgCoordinateLa: '',
|
||
|
|
orgLeader: '',
|
||
|
|
orgLeaderPhone: '',
|
||
|
|
orgBuildingNumber: '',
|
||
|
|
orgPropertyType: '',
|
||
|
|
orgBuildingArea: undefined,
|
||
|
|
orgProvince: '',
|
||
|
|
orgCity: '',
|
||
|
|
orgDistrict: '',
|
||
|
|
orgProvince_dictText: '',
|
||
|
|
orgCity_dictText: '',
|
||
|
|
orgDistrict_dictText: '',
|
||
|
|
franchiseTime: null,
|
||
|
|
contract: null,
|
||
|
|
contractNote: null,
|
||
|
|
});
|
||
|
|
const tempNullVal = ref('')
|
||
|
|
const { createMessage } = useMessage();
|
||
|
|
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } });
|
||
|
|
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 17 } });
|
||
|
|
const confirmLoading = ref<boolean>(false);
|
||
|
|
//表单验证
|
||
|
|
const validatorRules = reactive({
|
||
|
|
status: [{ required: true, message: '请选择审批结果!' },],
|
||
|
|
contract: [{ required: true, message: '请上传加盟合同!' },],
|
||
|
|
contractNote: [{ required: true, message: '请填写备注信息!' },],
|
||
|
|
});
|
||
|
|
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: false });
|
||
|
|
|
||
|
|
// 表单禁用
|
||
|
|
const disabled = computed(() => {
|
||
|
|
if (props.formBpm === true) {
|
||
|
|
if (props.formData.disabled === false) {
|
||
|
|
return false;
|
||
|
|
} else {
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return props.formDisabled;
|
||
|
|
});
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 新增
|
||
|
|
*/
|
||
|
|
function add() {
|
||
|
|
edit({});
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 编辑
|
||
|
|
*/
|
||
|
|
function edit(record) {
|
||
|
|
nextTick(() => {
|
||
|
|
resetFields();
|
||
|
|
let tmpData = {};
|
||
|
|
Object.keys(formData).forEach((key) => {
|
||
|
|
if (record.hasOwnProperty(key)) {
|
||
|
|
tmpData[key] = record[key]
|
||
|
|
}
|
||
|
|
})
|
||
|
|
if (tmpData.status != '2' && tmpData.status != '3') {
|
||
|
|
tmpData.status = null
|
||
|
|
}
|
||
|
|
cityViewValue.value = record.orgProvince_dictText
|
||
|
|
+ (!!record.orgCity_dictText ? record.orgCity_dictText : '')
|
||
|
|
+ (!!record.orgDistrict_dictText ? record.orgDistrict_dictText : '')
|
||
|
|
//赋值
|
||
|
|
Object.assign(formData, tmpData);
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 保存为草稿
|
||
|
|
*/
|
||
|
|
async function saveForm() {
|
||
|
|
console.log('保存为草稿')
|
||
|
|
try {
|
||
|
|
// 触发表单验证
|
||
|
|
await validate();
|
||
|
|
} catch ({ errorFields }) {
|
||
|
|
if (errorFields) {
|
||
|
|
const firstField = errorFields[0];
|
||
|
|
if (firstField) {
|
||
|
|
formRef.value.scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return Promise.reject(errorFields);
|
||
|
|
}
|
||
|
|
confirmLoading.value = true;
|
||
|
|
//时间格式化
|
||
|
|
let model = formData;
|
||
|
|
//循环数据
|
||
|
|
for (let data in model) {
|
||
|
|
//如果该数据是数组并且是字符串类型
|
||
|
|
if (model[data] instanceof Array) {
|
||
|
|
let valueType = getValueType(formRef.value.getProps, data);
|
||
|
|
//如果是字符串类型的需要变成以逗号分割的字符串
|
||
|
|
if (valueType === 'string') {
|
||
|
|
model[data] = model[data].join(',');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
await saveOrUpdate(model, true)
|
||
|
|
.then((res) => {
|
||
|
|
if (res.success) {
|
||
|
|
createMessage.success(res.message);
|
||
|
|
emit('ok');
|
||
|
|
} else {
|
||
|
|
createMessage.warning(res.message);
|
||
|
|
}
|
||
|
|
})
|
||
|
|
.finally(() => {
|
||
|
|
confirmLoading.value = false;
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 保存并提交
|
||
|
|
*/
|
||
|
|
async function submitForm() {
|
||
|
|
try {
|
||
|
|
// 触发表单验证
|
||
|
|
await validate();
|
||
|
|
} catch ({ errorFields }) {
|
||
|
|
if (errorFields) {
|
||
|
|
const firstField = errorFields[0];
|
||
|
|
if (firstField) {
|
||
|
|
formRef.value.scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return Promise.reject(errorFields);
|
||
|
|
}
|
||
|
|
confirmLoading.value = true;
|
||
|
|
//时间格式化
|
||
|
|
let model = formData;
|
||
|
|
//循环数据
|
||
|
|
for (let data in model) {
|
||
|
|
//如果该数据是数组并且是字符串类型
|
||
|
|
if (model[data] instanceof Array) {
|
||
|
|
let valueType = getValueType(formRef.value.getProps, data);
|
||
|
|
//如果是字符串类型的需要变成以逗号分割的字符串
|
||
|
|
if (valueType === 'string') {
|
||
|
|
model[data] = model[data].join(',');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
await submitContract(model)
|
||
|
|
.then((res) => {
|
||
|
|
emit('ok');
|
||
|
|
})
|
||
|
|
.finally(() => {
|
||
|
|
confirmLoading.value = false;
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
defineExpose({
|
||
|
|
add,
|
||
|
|
edit,
|
||
|
|
saveForm,
|
||
|
|
submitForm,
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="less" scoped>
|
||
|
|
.antd-modal-form {
|
||
|
|
padding: 14px;
|
||
|
|
}
|
||
|
|
</style>
|