forked from wangjiadong/comp
parent
279a63c586
commit
4059e72702
4 changed files with 265 additions and 1 deletions
@ -0,0 +1,159 @@ |
|||||||
|
<template> |
||||||
|
<a-spin :spinning="confirmLoading"> |
||||||
|
<a-form ref="formRef" class="antd-modal-form" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
||||||
|
<a-row> |
||||||
|
<a-col :span="24"> |
||||||
|
<a-form-item label="比赛权重" v-bind="validateInfos.compweight"> |
||||||
|
<a-input-number v-model:value="formData.compweight" placeholder="请输入比赛权重" style="width: 100%" :disabled="isDisable" /> |
||||||
|
</a-form-item> |
||||||
|
</a-col> |
||||||
|
</a-row> |
||||||
|
</a-form> |
||||||
|
</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 JPopup from '/@/components/Form/src/jeecg/components/JPopup.vue'; |
||||||
|
import JSelectDept from '/@/components/Form/src/jeecg/components/JSelectDept.vue'; |
||||||
|
import JSelectUserByDept from '/@/components/Form/src/jeecg/components/JSelectUserByDept.vue'; |
||||||
|
import JUpload from '/@/components/Form/src/jeecg/components/JUpload/JUpload.vue'; |
||||||
|
import JImageUpload from '/@/components/Form/src/jeecg/components/JImageUpload.vue'; |
||||||
|
import JEditor from '/@/components/Form/src/jeecg/components/JEditor.vue'; |
||||||
|
import { getValueType } from '/@/utils'; |
||||||
|
import { getCompType, saveOrUpdate } from '../Comp.api'; |
||||||
|
import { Form } from 'ant-design-vue'; |
||||||
|
import {useUserStore} from "/@/store/modules/user"; |
||||||
|
const props = defineProps({ |
||||||
|
formDisabled: { type: Boolean, default: false }, |
||||||
|
formData: { type: Object, default: () => {} }, |
||||||
|
formBpm: { type: Boolean, default: true }, |
||||||
|
compTypes: { type: Array, default: () => [] }, |
||||||
|
}); |
||||||
|
const formRef = ref(); |
||||||
|
const useForm = Form.useForm; |
||||||
|
const emit = defineEmits(['register', 'ok']); |
||||||
|
const userinfo=useUserStore() |
||||||
|
const isDisable=ref(false) |
||||||
|
console.log(userinfo) |
||||||
|
if (userinfo.getUserInfo.realname==='组委会'){ |
||||||
|
isDisable.value=true |
||||||
|
}else { |
||||||
|
isDisable.value=false |
||||||
|
} |
||||||
|
|
||||||
|
let formData = reactive<Record<string, any>>({ |
||||||
|
id: '', |
||||||
|
compweight:'', |
||||||
|
}); |
||||||
|
const { createMessage } = useMessage(); |
||||||
|
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } }); |
||||||
|
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 16 } }); |
||||||
|
const confirmLoading = ref<boolean>(false); |
||||||
|
//表单验证 |
||||||
|
const validatorRules = { |
||||||
|
compweight: [{ required: true, message: '请输入比赛权重!' }], |
||||||
|
}; |
||||||
|
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: true }); |
||||||
|
|
||||||
|
// 表单禁用 |
||||||
|
const disabled = computed(() => { |
||||||
|
if (props.formBpm === true) { |
||||||
|
if (props.formData.disabled === false) { |
||||||
|
return false; |
||||||
|
} else { |
||||||
|
return true; |
||||||
|
} |
||||||
|
} |
||||||
|
return props.formDisabled; |
||||||
|
}); |
||||||
|
function change(record) { |
||||||
|
console.log(222, record); |
||||||
|
console.log(222, formData); |
||||||
|
} |
||||||
|
/** |
||||||
|
* 新增 |
||||||
|
*/ |
||||||
|
function add() { |
||||||
|
resetFields(); |
||||||
|
if (props.compTypes.length !== 0) { |
||||||
|
formData.compTypeId = props.compTypes[0].id; |
||||||
|
} |
||||||
|
edit({ ...formData }); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 编辑 |
||||||
|
*/ |
||||||
|
function edit(record) { |
||||||
|
nextTick(() => { |
||||||
|
resetFields(); |
||||||
|
//赋值 |
||||||
|
Object.assign(formData, record); |
||||||
|
}); |
||||||
|
console.log(9000,formData) |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 提交数据 |
||||||
|
*/ |
||||||
|
async function submitForm() { |
||||||
|
// 触发表单验证 |
||||||
|
await validate(); |
||||||
|
confirmLoading.value = true; |
||||||
|
const isUpdate = ref<boolean>(false); |
||||||
|
//时间格式化 |
||||||
|
let model = formData; |
||||||
|
if (model.id) { |
||||||
|
isUpdate.value = true; |
||||||
|
} |
||||||
|
//循环数据 |
||||||
|
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, isUpdate.value) |
||||||
|
.then((res) => { |
||||||
|
if (res.success) { |
||||||
|
createMessage.success(res.message); |
||||||
|
emit('ok'); |
||||||
|
} else { |
||||||
|
createMessage.warning(res.message); |
||||||
|
} |
||||||
|
}) |
||||||
|
.finally(() => { |
||||||
|
confirmLoading.value = false; |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* popup组件值改变事件 |
||||||
|
*/ |
||||||
|
function setFieldsValue(map) { |
||||||
|
Object.keys(map).map((key) => { |
||||||
|
formData[key] = map[key]; |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
defineExpose({ |
||||||
|
add, |
||||||
|
edit, |
||||||
|
submitForm, |
||||||
|
}); |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="less" scoped> |
||||||
|
.antd-modal-form { |
||||||
|
min-height: 500px !important; |
||||||
|
overflow-y: auto; |
||||||
|
padding: 24px 24px 24px 24px; |
||||||
|
} |
||||||
|
</style> |
@ -0,0 +1,86 @@ |
|||||||
|
<template> |
||||||
|
<a-modal |
||||||
|
:title="title" |
||||||
|
:width="width" |
||||||
|
:visible="visible" |
||||||
|
@ok="handleOk" |
||||||
|
:okButtonProps="{ class: { 'jee-hidden': disableSubmit } }" |
||||||
|
@cancel="handleCancel" |
||||||
|
cancelText="关闭" |
||||||
|
> |
||||||
|
<CompFormqz ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false" :comp-types="compTypes" /> |
||||||
|
</a-modal> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script lang="ts" setup> |
||||||
|
import { ref, nextTick, defineExpose, defineProps } from 'vue'; |
||||||
|
import CompFormqz from './CompFormqz.vue'; |
||||||
|
|
||||||
|
const title = ref<string>(''); |
||||||
|
const width = ref<number>(800); |
||||||
|
const visible = ref<boolean>(false); |
||||||
|
const disableSubmit = ref<boolean>(false); |
||||||
|
const registerForm = ref(); |
||||||
|
const emit = defineEmits(['register', 'success']); |
||||||
|
defineProps({ |
||||||
|
compTypes: { type: Array, default: () => [] }, |
||||||
|
}); |
||||||
|
|
||||||
|
/** |
||||||
|
* 新增 |
||||||
|
*/ |
||||||
|
function add() { |
||||||
|
title.value = '新增'; |
||||||
|
visible.value = true; |
||||||
|
nextTick(() => { |
||||||
|
registerForm.value.add(); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 编辑 |
||||||
|
* @param record |
||||||
|
*/ |
||||||
|
function edit(record) { |
||||||
|
title.value = disableSubmit.value ? '详情' : '修改权重'; |
||||||
|
visible.value = true; |
||||||
|
nextTick(() => { |
||||||
|
registerForm.value.edit(record); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 确定按钮点击事件 |
||||||
|
*/ |
||||||
|
function handleOk() { |
||||||
|
registerForm.value.submitForm(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* form保存回调事件 |
||||||
|
*/ |
||||||
|
function submitCallback() { |
||||||
|
handleCancel(); |
||||||
|
emit('success'); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 取消按钮回调事件 |
||||||
|
*/ |
||||||
|
function handleCancel() { |
||||||
|
visible.value = false; |
||||||
|
} |
||||||
|
|
||||||
|
defineExpose({ |
||||||
|
add, |
||||||
|
edit, |
||||||
|
disableSubmit, |
||||||
|
}); |
||||||
|
</script> |
||||||
|
|
||||||
|
<style> |
||||||
|
/**隐藏样式-modal确定按钮 */ |
||||||
|
.jee-hidden { |
||||||
|
display: none !important; |
||||||
|
} |
||||||
|
</style> |
Loading…
Reference in new issue