8/25 dev 权限,sse,账单
This commit is contained in:
@@ -100,12 +100,12 @@ const list = ref([
|
||||
function getVillageInfo() {
|
||||
const id = localStorage.getItem('villageid');
|
||||
workSpaceTotalListApi(id).then((res) => {
|
||||
list.value[0].value = res.totalResident;
|
||||
list.value[1].value = res.totalHouse;
|
||||
list.value[2].value = res.totalParking;
|
||||
list.value[3].value = res.totalDevice;
|
||||
list.value[4].value = res.totalComplaint;
|
||||
list.value[5].value = res.totalMaterial;
|
||||
list.value[0].value = res.totalResident ?? 0;
|
||||
list.value[1].value = res.totalHouse ?? 0;
|
||||
list.value[2].value = res.totalParking ?? 0;
|
||||
list.value[3].value = res.totalDevice ?? 0;
|
||||
list.value[4].value = res.totalComplaint ?? 0;
|
||||
list.value[5].value = res.totalMaterial ?? 0;
|
||||
});
|
||||
getVillageByIdAPI(id).then((res) => {
|
||||
villageinfo.value = {
|
||||
|
||||
Reference in New Issue
Block a user