소스 검색

bug处理

master
suyanyan 1 개월 전
부모
커밋
063e123bc9
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. +3
    -2
      SafeCampus.WEB/src/views/userManage/clothing/index.vue

+ 3
- 2
SafeCampus.WEB/src/views/userManage/clothing/index.vue 파일 보기

@@ -144,7 +144,7 @@ function onOpen(opt: FormOptEnum, record: {},treeAllData:any) {
async function addDelete(clothSetId: string[],msg: string) {
// 二次确认 => 请求api => 刷新表格
await useHandleData(userManageClothApi.deleteClothDataBaseD, { clothSetId }, msg);
RefreshTree(); //刷新表格
RefreshTree('delete'); //刷新表格
}

/**
@@ -162,7 +162,8 @@ const RefreshTable = () => {
getList(clothSetId.value)
}
// 刷新表格+树
const RefreshTree = async() => {
const RefreshTree = async(type='') => {
if(type == 'delete'){clothSetId.value = ''}
treeKey.value = Math.random();
await getTree(); //刷新树形筛选器
await getList(clothSetId.value)


불러오는 중...
취소
저장