Parcourir la source

添加全部

master
suyanyan il y a 2 mois
Parent
révision
cbd91fcc86
1 fichiers modifiés avec 5 ajouts et 2 suppressions
  1. +5
    -2
      SafeCampus.WEB/src/views/userManage/clothing/index.vue

+ 5
- 2
SafeCampus.WEB/src/views/userManage/clothing/index.vue Voir le fichier

@@ -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 {


Chargement…
Annuler
Enregistrer