|
@@ -16,11 +16,6 @@ import { Customer } from "/@/components/RemoteSelect";
|
|
// import { AmountInput } from "/@/components/Input";
|
|
// import { AmountInput } from "/@/components/Input";
|
|
import { useResponseHandle } from "/@/hooks/useAsync";
|
|
import { useResponseHandle } from "/@/hooks/useAsync";
|
|
|
|
|
|
-const config = {
|
|
|
|
- name: "project_name",
|
|
|
|
- platform: "platform_name"
|
|
|
|
-};
|
|
|
|
-
|
|
|
|
const emit = defineEmits(["create"]);
|
|
const emit = defineEmits(["create"]);
|
|
|
|
|
|
const props = defineProps<{
|
|
const props = defineProps<{
|
|
@@ -35,6 +30,7 @@ const { formItems } = projectFormConfig;
|
|
const responseHandle = useResponseHandle();
|
|
const responseHandle = useResponseHandle();
|
|
const basicFormRef = ref<InstanceType<typeof ElForm>>(null);
|
|
const basicFormRef = ref<InstanceType<typeof ElForm>>(null);
|
|
const formData = ref<Record<string, any>>(createDefaultData(formItems));
|
|
const formData = ref<Record<string, any>>(createDefaultData(formItems));
|
|
|
|
+
|
|
const ladderModalRef = ref<InstanceType<typeof LadderModal>>(null);
|
|
const ladderModalRef = ref<InstanceType<typeof LadderModal>>(null);
|
|
|
|
|
|
function requesetCategoryById(id: string) {
|
|
function requesetCategoryById(id: string) {
|
|
@@ -90,9 +86,9 @@ function handleDateChange(prop: string) {
|
|
}
|
|
}
|
|
|
|
|
|
function handleCreate() {
|
|
function handleCreate() {
|
|
|
|
+ console.log(formData.value);
|
|
basicFormRef.value.validate(isValid => {
|
|
basicFormRef.value.validate(isValid => {
|
|
if (!isValid) return;
|
|
if (!isValid) return;
|
|
- console.log("9897979");
|
|
|
|
// const { ladder, ...rest } = unref(formData);
|
|
// const { ladder, ...rest } = unref(formData);
|
|
// const transform = ladder => {
|
|
// const transform = ladder => {
|
|
// return {
|
|
// return {
|
|
@@ -120,8 +116,6 @@ watchEffect(() => {
|
|
if (readonly && !data) {
|
|
if (readonly && !data) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
-
|
|
|
|
- formData.value = transform(formItems, data, config);
|
|
|
|
});
|
|
});
|
|
</script>
|
|
</script>
|
|
|
|
|
|
@@ -139,24 +133,6 @@ watchEffect(() => {
|
|
<Unit v-model="formData.unit_id" placeholder="单位" />
|
|
<Unit v-model="formData.unit_id" placeholder="单位" />
|
|
</template>
|
|
</template>
|
|
|
|
|
|
- <template #good_cover_img>
|
|
|
|
- <ImageUpload v-model:url="formData.good_cover_img" />
|
|
|
|
- </template>
|
|
|
|
- <template #good_banner_img>
|
|
|
|
- <ImageUploadList
|
|
|
|
- v-model:urls="formData.good_banner_img"
|
|
|
|
- :descs="['小于1Mb']"
|
|
|
|
- :types="['png', 'jpg', 'jpeg']"
|
|
|
|
- />
|
|
|
|
- </template>
|
|
|
|
- <template #good_img>
|
|
|
|
- <ImageUploadList
|
|
|
|
- v-model:urls="formData.good_img"
|
|
|
|
- :descs="['小于1Mb']"
|
|
|
|
- :types="['png', 'jpg', 'jpeg']"
|
|
|
|
- />
|
|
|
|
- </template>
|
|
|
|
-
|
|
|
|
<template #good_param>
|
|
<template #good_param>
|
|
111 先展示
|
|
111 先展示
|
|
<!-- <LadderTable
|
|
<!-- <LadderTable
|