|
@@ -3,12 +3,14 @@ import { Image } from "@queenjs/ui";
|
|
|
import { Button, Form, Input, TreeSelect } from "ant-design-vue";
|
|
|
import { useModal } from "queenjs";
|
|
|
import { defineComponent, nextTick, onMounted, reactive, ref } from "vue";
|
|
|
-import { any, string } from "vue-types";
|
|
|
+import { any, bool, string } from "vue-types";
|
|
|
import { useResource } from "..";
|
|
|
+import { SelectOneImage } from "@/pages/website/Material2/modal";
|
|
|
export default defineComponent({
|
|
|
props: {
|
|
|
item: any(),
|
|
|
sourceType: string().isRequired,
|
|
|
+ editCategory: bool(),
|
|
|
},
|
|
|
setup(props) {
|
|
|
const { controls } = useResource();
|
|
@@ -22,7 +24,7 @@ export default defineComponent({
|
|
|
data.categories = [];
|
|
|
}
|
|
|
const formState: { [name: string]: any } = reactive({ ...data });
|
|
|
- const sourceTitle = ["comp", "shape", "text"];
|
|
|
+ const sourceTitle = ["comp", "shape", "text", "template", "v"];
|
|
|
const state = reactive({
|
|
|
categoriesVal: {} as any,
|
|
|
categoryList: [] as any,
|
|
@@ -78,10 +80,16 @@ export default defineComponent({
|
|
|
const rules = ref({
|
|
|
title: [
|
|
|
{
|
|
|
- required: sourceTitle.includes(props.sourceType) ? true : false,
|
|
|
+ required: props.sourceType != "image" ? true : false,
|
|
|
message: "名称不能为空!",
|
|
|
},
|
|
|
],
|
|
|
+ thumbnail: [
|
|
|
+ {
|
|
|
+ required: props.sourceType != "image" ? true : false,
|
|
|
+ message: "封面图不能为空",
|
|
|
+ },
|
|
|
+ ],
|
|
|
});
|
|
|
|
|
|
const { validate, validateInfos } = Form.useForm(formState, rules);
|
|
@@ -98,6 +106,14 @@ export default defineComponent({
|
|
|
modal.submit(formState);
|
|
|
});
|
|
|
};
|
|
|
+ const changeThumbnail = async () => {
|
|
|
+ if (props.sourceType == "image") {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ const url = await SelectOneImage();
|
|
|
+ if (!url) return;
|
|
|
+ formState.thumbnail = url;
|
|
|
+ };
|
|
|
|
|
|
return () => {
|
|
|
const thumbnail =
|
|
@@ -106,8 +122,8 @@ export default defineComponent({
|
|
|
<div class={configFormStyle}>
|
|
|
<div class="modal_form">
|
|
|
<Form name="basic">
|
|
|
- <Form.Item name="thumbnail">
|
|
|
- <div class={"h-180px bg-light-50"}>
|
|
|
+ <Form.Item name="thumbnail" {...validateInfos.thumbnail}>
|
|
|
+ <div class={"h-180px bg-light-50"} onClick={changeThumbnail}>
|
|
|
<Image
|
|
|
class="w-1/1 h-1/1 !object-contain"
|
|
|
src={thumbnail}
|
|
@@ -121,28 +137,29 @@ export default defineComponent({
|
|
|
<Input v-model={[formState.title, "value"]} />
|
|
|
</Form.Item>
|
|
|
)}
|
|
|
- {state.categoryList.map((item: any, index: number) => {
|
|
|
- return (
|
|
|
- <Form.Item key={index} name={`categories.${index}`}>
|
|
|
- <TreeSelect
|
|
|
- value={state.categoriesVal[item.id]}
|
|
|
- allowClear
|
|
|
- treeCheckable
|
|
|
- dropdownStyle={{ maxHeight: "500px", overflow: "auto" }}
|
|
|
- placeholder={`请选择${item.name}`}
|
|
|
- treeData={item?.children}
|
|
|
- replaceFields={{
|
|
|
- children: "children",
|
|
|
- label: "name",
|
|
|
- value: "id",
|
|
|
- }}
|
|
|
- onChange={(v) => {
|
|
|
- state.categoriesVal[item.id] = v;
|
|
|
- }}
|
|
|
- />
|
|
|
- </Form.Item>
|
|
|
- );
|
|
|
- })}
|
|
|
+ {props.editCategory &&
|
|
|
+ state.categoryList.map((item: any, index: number) => {
|
|
|
+ return (
|
|
|
+ <Form.Item key={index} name={`categories.${index}`}>
|
|
|
+ <TreeSelect
|
|
|
+ value={state.categoriesVal[item.id]}
|
|
|
+ allowClear
|
|
|
+ treeCheckable
|
|
|
+ dropdownStyle={{ maxHeight: "500px", overflow: "auto" }}
|
|
|
+ placeholder={`请选择${item.name}`}
|
|
|
+ treeData={item?.children}
|
|
|
+ replaceFields={{
|
|
|
+ children: "children",
|
|
|
+ label: "name",
|
|
|
+ value: "id",
|
|
|
+ }}
|
|
|
+ onChange={(v) => {
|
|
|
+ state.categoriesVal[item.id] = v;
|
|
|
+ }}
|
|
|
+ />
|
|
|
+ </Form.Item>
|
|
|
+ );
|
|
|
+ })}
|
|
|
</Form>
|
|
|
</div>
|
|
|
<div class="modal_footer">
|