148 lines
3.5 KiB
Vue
148 lines
3.5 KiB
Vue
![]() |
<template>
|
||
|
<div class="edit-popup">
|
||
|
|
||
|
<popup ref="popupRef" :title="popupTitle" :async="true" width="80%" @confirm="handleSubmit" @close="handleClose">
|
||
|
|
||
|
|
||
|
<el-form ref="formRef" :model="formData" label-width="auto" :rules="formRules">
|
||
|
<el-row :gutter="10">
|
||
|
<el-col :span="8">
|
||
|
<el-form-item label="父级分类" prop="pid">
|
||
|
<el-select class="w-[280px]" v-model="formData.pid" clearable placeholder="请选择父级分类">
|
||
|
<el-option label="全部" :value="0"></el-option>
|
||
|
<el-option v-for="(item, index) in imaterialList" :key="index" :label="item.name" :value="item.id" />
|
||
|
</el-select>
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
|
||
|
|
||
|
<el-col :span="8">
|
||
|
<el-form-item label="分类名称" prop="name" :rules="[{ required: true, message: '不可为空', trigger: 'blur' }]">
|
||
|
<el-input v-model="formData.name" clearable placeholder="分类名称" />
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</el-row>
|
||
|
|
||
|
|
||
|
</el-form>
|
||
|
</popup>
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup name="projectEdit">
|
||
|
import type { FormInstance } from 'element-plus'
|
||
|
import Popup from '@/components/popup/index.vue'
|
||
|
import { apimaterialLists, apimaterialAdd, apimaterialEdit, apimaterialDetail } from '@/api/material_classify'
|
||
|
import { timeFormat } from '@/utils/util'
|
||
|
import { isEmail, isIdCard, isPhone } from '@/utils/validate'
|
||
|
import type { PropType } from 'vue'
|
||
|
import configs from "@/config"
|
||
|
import useUserStore from "@/stores/modules/user";
|
||
|
const base_url = configs.baseUrl + configs.urlPrefix
|
||
|
const userStore = useUserStore();
|
||
|
const imaterialList = ref([])
|
||
|
defineProps({
|
||
|
dictData: {
|
||
|
type: Object as PropType<Record<string, any[]>>,
|
||
|
default: () => ({})
|
||
|
}
|
||
|
})
|
||
|
const emit = defineEmits(['success', 'close'])
|
||
|
const formRef = shallowRef<FormInstance>()
|
||
|
const popupRef = shallowRef<InstanceType<typeof Popup>>()
|
||
|
const mode = ref('add')
|
||
|
|
||
|
// 弹窗标题
|
||
|
const popupTitle = computed(() => {
|
||
|
return mode.value == 'edit' ? '编辑材料分类表' : '新增材料分类表'
|
||
|
})
|
||
|
|
||
|
// 表单数据
|
||
|
const formData = reactive({
|
||
|
id: '',
|
||
|
pid: '',
|
||
|
name: ''
|
||
|
})
|
||
|
|
||
|
|
||
|
// 表单验证
|
||
|
const formRules = reactive<any>({
|
||
|
|
||
|
})
|
||
|
|
||
|
//获取分类列表
|
||
|
const imateriallist = () => {
|
||
|
apimaterialLists({ page_no: 1, page_size: 9999 }).then((res) => {
|
||
|
console.log(res)
|
||
|
imaterialList.value = res.lists
|
||
|
})
|
||
|
}
|
||
|
|
||
|
|
||
|
// 获取详情
|
||
|
const setFormData = async (data: Record<any, any>) => {
|
||
|
|
||
|
for (const key in formData) {
|
||
|
if (data[key] != null && data[key] != undefined) {
|
||
|
//@ts-ignore
|
||
|
formData[key] = data[key]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
const getDetail = async (row: Record<string, any>) => {
|
||
|
const data = await apimaterialDetail({
|
||
|
id: row.id
|
||
|
})
|
||
|
setFormData(data)
|
||
|
}
|
||
|
|
||
|
|
||
|
// 提交按钮
|
||
|
const handleSubmit = async () => {
|
||
|
|
||
|
|
||
|
|
||
|
await formRef.value?.validate()
|
||
|
|
||
|
|
||
|
const data = { ...formData }
|
||
|
mode.value == 'edit'
|
||
|
? await apimaterialEdit(data)
|
||
|
: await apimaterialAdd(data)
|
||
|
popupRef.value?.close()
|
||
|
emit('success')
|
||
|
}
|
||
|
|
||
|
//打开弹窗
|
||
|
const open = (type = 'add') => {
|
||
|
imateriallist()
|
||
|
mode.value = type
|
||
|
popupRef.value?.open()
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
// 关闭回调
|
||
|
const handleClose = () => {
|
||
|
emit('close')
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
defineExpose({
|
||
|
open,
|
||
|
setFormData,
|
||
|
getDetail
|
||
|
})
|
||
|
</script>
|