mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-11 03:46:45 +08:00
组织列表查看
This commit is contained in:
@@ -61,6 +61,8 @@ export const getUnSelectOrg = (isParent) => http.get(`/admin/affiliation/getUnSe
|
|||||||
export const getAffiliationCode = () => http.get('/admin/affiliation/getAffiliationCode')
|
export const getAffiliationCode = () => http.get('/admin/affiliation/getAffiliationCode')
|
||||||
//查看或编辑回显培训发生组织
|
//查看或编辑回显培训发生组织
|
||||||
export const getAffiliationById = (id) => http.get(`/admin/affiliation/queryById?id=${id}`)
|
export const getAffiliationById = (id) => http.get(`/admin/affiliation/queryById?id=${id}`)
|
||||||
|
|
||||||
|
export const getAffiliationModuleTypeById = (id,moduleType) => http.get(`/admin/affiliation/queryModelTypeById?id=${id}&moduleType=${moduleType}`)
|
||||||
//审核记录
|
//审核记录
|
||||||
export const getByBusinessIdList = (obj) => http.post(`/admin/approval/getByBusinessIdListPage?businessId=${obj.businessId}&businessType=${obj.businessType}&pageNo=${obj.pageNo}&pageSize=${obj.pageSize}`)
|
export const getByBusinessIdList = (obj) => http.post(`/admin/approval/getByBusinessIdListPage?businessId=${obj.businessId}&businessType=${obj.businessType}&pageNo=${obj.pageNo}&pageSize=${obj.pageSize}`)
|
||||||
//审批中心查看详情
|
//审批中心查看详情
|
||||||
|
|||||||
@@ -106,6 +106,10 @@ const props = defineProps({
|
|||||||
type: String,
|
type: String,
|
||||||
default: ""
|
default: ""
|
||||||
},
|
},
|
||||||
|
moduleType:{
|
||||||
|
type: Number,
|
||||||
|
default: null
|
||||||
|
},
|
||||||
parentName: String,
|
parentName: String,
|
||||||
});
|
});
|
||||||
const emit = defineEmits({});
|
const emit = defineEmits({});
|
||||||
@@ -287,20 +291,40 @@ watch(visible, (val)=>{
|
|||||||
if(val){
|
if(val){
|
||||||
threeList.value = false
|
threeList.value = false
|
||||||
activeKey.value = '1'
|
activeKey.value = '1'
|
||||||
api.getAffiliationById(props.id).then(res=>{
|
if(!props.moduleType){
|
||||||
if(res.data.code == 200){
|
console.log("getAffiliationModuleTypeById props.moduleType",props.moduleType)
|
||||||
formData.value = res.data.data
|
api.getAffiliationModuleTypeById(props.id,props.moduleType).then(res=>{
|
||||||
formData.value.parentName = props.parentName
|
if(res.data.code == 200){
|
||||||
formData.value.act = filterList(formData.value.affiliationUserList,0)
|
formData.value = res.data.data
|
||||||
formData.value.one = filterList(formData.value.affiliationUserList,1)
|
formData.value.parentName = props.parentName
|
||||||
formData.value.two = filterList(formData.value.affiliationUserList,2)
|
formData.value.act = filterList(formData.value.affiliationUserList,0)
|
||||||
formData.value.three = filterList(formData.value.affiliationUserList,3)
|
formData.value.one = filterList(formData.value.affiliationUserList,1)
|
||||||
formData.value.tableData = res.data.data.affiliationOrgList
|
formData.value.two = filterList(formData.value.affiliationUserList,2)
|
||||||
}
|
formData.value.three = filterList(formData.value.affiliationUserList,3)
|
||||||
}).catch(err=>{
|
formData.value.tableData = res.data.data.affiliationOrgList
|
||||||
message.destroy()
|
}
|
||||||
message.error(err.data.msg)
|
}).catch(err=>{
|
||||||
})
|
message.destroy()
|
||||||
|
message.error(err.data.msg)
|
||||||
|
})
|
||||||
|
}else{
|
||||||
|
console.log("getAffiliationById props.moduleType")
|
||||||
|
api.getAffiliationById(props.id).then(res=>{
|
||||||
|
if(res.data.code == 200){
|
||||||
|
formData.value = res.data.data
|
||||||
|
formData.value.parentName = props.parentName
|
||||||
|
formData.value.act = filterList(formData.value.affiliationUserList,0)
|
||||||
|
formData.value.one = filterList(formData.value.affiliationUserList,1)
|
||||||
|
formData.value.two = filterList(formData.value.affiliationUserList,2)
|
||||||
|
formData.value.three = filterList(formData.value.affiliationUserList,3)
|
||||||
|
formData.value.tableData = res.data.data.affiliationOrgList
|
||||||
|
}
|
||||||
|
}).catch(err=>{
|
||||||
|
message.destroy()
|
||||||
|
message.error(err.data.msg)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// getTwoData()
|
// getTwoData()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -102,6 +102,7 @@
|
|||||||
:parentName="record.parentName"
|
:parentName="record.parentName"
|
||||||
:id="record.id"
|
:id="record.id"
|
||||||
:title="'培训发生组织详情'"
|
:title="'培训发生组织详情'"
|
||||||
|
:moduleType="1"
|
||||||
@searchList="searchList"
|
@searchList="searchList"
|
||||||
>
|
>
|
||||||
<div style="color: #1890ff; cursor: pointer">查看</div>
|
<div style="color: #1890ff; cursor: pointer">查看</div>
|
||||||
|
|||||||
@@ -82,6 +82,7 @@
|
|||||||
:parentName="record.parentName"
|
:parentName="record.parentName"
|
||||||
:id="record.id"
|
:id="record.id"
|
||||||
:title="'培训发生组织详情'"
|
:title="'培训发生组织详情'"
|
||||||
|
:moduleType="0"
|
||||||
@searchList="searchList"
|
@searchList="searchList"
|
||||||
>
|
>
|
||||||
<div style="color: #1890ff; cursor: pointer">查看</div>
|
<div style="color: #1890ff; cursor: pointer">查看</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user