Commit c350fc46 by dhb52 Committed by Gitee

fix: id=0导致sqlserver新增菜单失败

Signed-off-by: dhb52 <dhb52@126.com>
parent 66c6463f
...@@ -130,7 +130,7 @@ const dialogTitle = ref('') // 弹窗的标题 ...@@ -130,7 +130,7 @@ const dialogTitle = ref('') // 弹窗的标题
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用 const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
const formType = ref('') // 表单的类型:create - 新增;update - 修改 const formType = ref('') // 表单的类型:create - 新增;update - 修改
const formData = ref({ const formData = ref({
id: 0, id: undefined,
name: '', name: '',
permission: '', permission: '',
type: SystemMenuTypeEnum.DIR, type: SystemMenuTypeEnum.DIR,
...@@ -231,7 +231,7 @@ const getTree = async () => { ...@@ -231,7 +231,7 @@ const getTree = async () => {
/** 重置表单 */ /** 重置表单 */
const resetForm = () => { const resetForm = () => {
formData.value = { formData.value = {
id: 0, id: undefined,
name: '', name: '',
permission: '', permission: '',
type: SystemMenuTypeEnum.DIR, type: SystemMenuTypeEnum.DIR,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment