소스 검색

添加全部

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

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

@@ -10,7 +10,7 @@
label="clothSetName"
id="clothSetId"
width="300px"
:show-all="false"
:show-all="true"
:request-api="userManageClothApi.getList"
@change="changeTreeFilter"
>
@@ -171,13 +171,16 @@ function changeTreeFilter(val: number | string) {
}
// 获取列表
const getList = (clothSetId:any)=>{
if(!clothSetId) return false
// if(!clothSetId) return false
userManageClothApi.page({clothSetId:clothSetId}).then((resp:any)=>{
if(resp.code == 200){
tableData.value = resp.data
}
})
}
onMounted(() => {
getList(clothSetId.value)
})
</script>
<style scoped lang="scss">
.table-box {


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