|
@@ -63,7 +63,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div class="table">
|
|
|
|
|
|
+ <div class="table" v-loading="enterprise.table.loading">
|
|
<div class="table-card">
|
|
<div class="table-card">
|
|
<template v-for="(item, index) in enterprise.table.data">
|
|
<template v-for="(item, index) in enterprise.table.data">
|
|
<div class="table-card-item __hover" :class="{active: item.id === $store.state.gis.activeQyId}" @click="handleClick(item)">
|
|
<div class="table-card-item __hover" :class="{active: item.id === $store.state.gis.activeQyId}" @click="handleClick(item)">
|
|
@@ -140,7 +140,8 @@ export default defineComponent({
|
|
data: <any>[],
|
|
data: <any>[],
|
|
pageNum: 1,
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
- total: 0
|
|
|
|
|
|
+ total: 0,
|
|
|
|
+ loading: false
|
|
}
|
|
}
|
|
},
|
|
},
|
|
statistic: {
|
|
statistic: {
|
|
@@ -184,11 +185,13 @@ export default defineComponent({
|
|
if (state.enterprise.form.type?.length > 0) {
|
|
if (state.enterprise.form.type?.length > 0) {
|
|
params.entType = state.enterprise.form.type.map(v => store.getters['dictionary/elementTypeMap'].get(v)).join(',')
|
|
params.entType = state.enterprise.form.type.map(v => store.getters['dictionary/elementTypeMap'].get(v)).join(',')
|
|
}
|
|
}
|
|
|
|
+ state.enterprise.table.loading = true
|
|
that.$api.enterpriseQuery(params).then((res: any) => {
|
|
that.$api.enterpriseQuery(params).then((res: any) => {
|
|
- if (res.resp_code === 0 && res.datas?.length > 0) {
|
|
|
|
- state.enterprise.table.data = res.datas
|
|
|
|
- state.enterprise.table.total = res.recordCount
|
|
|
|
- }
|
|
|
|
|
|
+ state.enterprise.table.data = res.datas || []
|
|
|
|
+ state.enterprise.table.total = res.recordCount || 0
|
|
|
|
+ state.enterprise.table.loading = false
|
|
|
|
+ }).catch(() => {
|
|
|
|
+ state.enterprise.table.loading = false
|
|
})
|
|
})
|
|
}
|
|
}
|
|
const initStatistic = () => {
|
|
const initStatistic = () => {
|