124 lines
3.5 KiB
Vue
124 lines
3.5 KiB
Vue
|
|
<template>
|
|
<div>
|
|
<div class="gva-form-box">
|
|
<el-form :model="formData" ref="elFormRef" label-position="right" :rules="rule" label-width="80px">
|
|
<el-form-item label="名称:" prop="name">
|
|
<el-input v-model="formData.name" :clearable="false" placeholder="请输入名称" />
|
|
</el-form-item>
|
|
<el-form-item label="排序:" prop="order">
|
|
<el-input v-model.number="formData.order" :clearable="false" placeholder="请输入" />
|
|
</el-form-item>
|
|
<el-form-item label="状态:" prop="active">
|
|
<el-switch v-model="formData.active" active-color="#13ce66" inactive-color="#ff4949" active-text="是" inactive-text="否" clearable ></el-switch>
|
|
</el-form-item>
|
|
<el-form-item label="是否首页展示:" prop="index">
|
|
<el-switch v-model="formData.index" active-color="#13ce66" inactive-color="#ff4949" active-text="是" inactive-text="否" clearable ></el-switch>
|
|
</el-form-item>
|
|
<el-form-item label="父ID:" prop="parentId">
|
|
<el-input v-model.number="formData.parentId" :clearable="false" placeholder="请输入" />
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button :loading="btnLoading" type="primary" @click="save">保存</el-button>
|
|
<el-button type="primary" @click="back">返回</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
createCategory,
|
|
updateCategory,
|
|
findCategory
|
|
} from '@/api/category/category'
|
|
|
|
defineOptions({
|
|
name: 'CategoryForm'
|
|
})
|
|
|
|
// 自动获取字典
|
|
import { getDictFunc } from '@/utils/format'
|
|
import { useRoute, useRouter } from "vue-router"
|
|
import { ElMessage } from 'element-plus'
|
|
import { ref, reactive } from 'vue'
|
|
|
|
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
|
|
// 提交按钮loading
|
|
const btnLoading = ref(false)
|
|
|
|
const type = ref('')
|
|
const formData = ref({
|
|
name: '',
|
|
order: 0,
|
|
active: false,
|
|
parentId: 0,
|
|
index:0,
|
|
})
|
|
// 验证规则
|
|
const rule = reactive({
|
|
name : [{
|
|
required: true,
|
|
message: '',
|
|
trigger: ['input','blur'],
|
|
}],
|
|
})
|
|
|
|
const elFormRef = ref()
|
|
|
|
// 初始化方法
|
|
const init = async () => {
|
|
// 建议通过url传参获取目标数据ID 调用 find方法进行查询数据操作 从而决定本页面是create还是update 以下为id作为url参数示例
|
|
if (route.query.id) {
|
|
const res = await findCategory({ ID: route.query.id })
|
|
if (res.code === 0) {
|
|
formData.value = res.data
|
|
type.value = 'update'
|
|
}
|
|
} else {
|
|
type.value = 'create'
|
|
}
|
|
}
|
|
|
|
init()
|
|
// 保存按钮
|
|
const save = async() => {
|
|
btnLoading.value = true
|
|
elFormRef.value?.validate( async (valid) => {
|
|
if (!valid) return btnLoading.value = false
|
|
let res
|
|
switch (type.value) {
|
|
case 'create':
|
|
res = await createCategory(formData.value)
|
|
break
|
|
case 'update':
|
|
res = await updateCategory(formData.value)
|
|
break
|
|
default:
|
|
res = await createCategory(formData.value)
|
|
break
|
|
}
|
|
btnLoading.value = false
|
|
if (res.code === 0) {
|
|
ElMessage({
|
|
type: 'success',
|
|
message: '创建/更改成功'
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
// 返回按钮
|
|
const back = () => {
|
|
router.go(-1)
|
|
}
|
|
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|