pref: footer 添加字体尺寸

This commit is contained in:
xingyu4j
2022-11-22 18:02:35 +08:00
parent 270b68bd7b
commit 9532570491
4 changed files with 2 additions and 3 deletions

View File

@ -182,7 +182,6 @@ const submitForm = async () => {
const data = unref(formRef)?.formModel as DeptApi.DeptVO
data.parentId = deptParentId.value
data.leaderUserId = leaderUserId.value
console.info(data)
if (actionType.value === 'create') {
await DeptApi.createDeptApi(data)
message.success(t('common.createSuccess'))

View File

@ -188,7 +188,6 @@ const handleDataUpdate = async (rowId: number) => {
const parentType = ref('')
const tableTypeSelect = ref(false)
const cellClickEvent: VxeTableEvents.CellClick = async ({ row }) => {
console.info(row['type'])
tableTypeSelect.value = true
queryParams.dictType = row['type']
await dataGetList(xDataGrid)