Browse Source

企业模块提交

master
zy 1 month ago
parent
commit
686b5fc223
  1. 26
      src/views/enterprises/update.vue

26
src/views/enterprises/update.vue

@ -276,12 +276,12 @@ function init() {
if (query.id) { if (query.id) {
// id 'update' // id 'update'
formType.value = 'update' formType.value = 'update'
EnterprisesApi.getEnterprises(query.id).then((res) => { EnterprisesApi.getEnterprises(query.id).then((res) => {
selectedUser.value=res.inviterName; selectedUser.value=res.inviterName;
// formData.value.startUserSelectAssignees=res.userId; // formData.value.startUserSelectAssignees=res.userId;
formData.value = res formData.value = res
}) })
}else{ formType.value = 'create'} }else{formType.value = 'create'}
} }
// //
const showMap = ref(false) const showMap = ref(false)
@ -367,8 +367,13 @@ const handleSearch = () => {
onMounted(() => { onMounted(() => {
init() init()
getQualificationList() //
getInspectionslList() if(query.id){
getQualificationList()
getInspectionslList()
}
getEnterpriseUserList() getEnterpriseUserList()
//getInspectionsLogList() //getInspectionsLogList()
const openMapAndInit = async () => { const openMapAndInit = async () => {
@ -505,7 +510,12 @@ const getInspectionslList = async () => {
loading.value = true loading.value = true
try { try {
const data = await EnterpriseInspectionsApi.getEnterpriseInspectionsPage({"enterpriseId":query.id}) const data = await EnterpriseInspectionsApi.getEnterpriseInspectionsPage({"enterpriseId":query.id})
inspectionslist.value = data.list if(!data.list || data.list.length === 0){
console.log("No data or data is null");
} else {
inspectionslist.value = data.list;
}
} finally { } finally {
loading.value = false loading.value = false
} }
@ -517,7 +527,11 @@ const getInspectionsLogList = async (insprctionsId) => {
loading.value = true loading.value = true
try { try {
const data = await EnterpriseInspectionsApi.inspectionsLogList({"inspectionsId":insprctionsId}) const data = await EnterpriseInspectionsApi.inspectionsLogList({"inspectionsId":insprctionsId})
inspectionsLogList.value = data if(!data.list || data.list.length === 0){
console.log("No data or data is null");
} else {
inspectionsLogList.value = data.list;
}
} finally { } finally {
loading.value = false loading.value = false
} }

Loading…
Cancel
Save