|
@@ -265,7 +265,7 @@ export default {
|
|
|
/** 查看通知公告详情*/
|
|
|
clickDatail(val) {
|
|
|
// this.rowDetail = [];
|
|
|
- this.$http.get('/sc-community-web/notice/find/' + val).then((res) => {
|
|
|
+ this.$http.get('/sc-community/notice/find/' + val).then((res) => {
|
|
|
if (res.status === 0) {
|
|
|
this.rowDetail = res.data;
|
|
|
let treeData = JSON.parse(res.data.treeData);
|
|
@@ -453,7 +453,7 @@ export default {
|
|
|
|
|
|
// 获取待处理事项
|
|
|
getPendData() {
|
|
|
- this.$http.get('/sc-community-web/Workbench/pendingMatters').then((res) => {
|
|
|
+ this.$http.get('/sc-community/Workbench/pendingMatters').then((res) => {
|
|
|
if (res.status == 0) {
|
|
|
this.pendData = res.data;
|
|
|
} else {
|
|
@@ -463,7 +463,7 @@ export default {
|
|
|
},
|
|
|
// 获取房屋信息
|
|
|
getHouseData() {
|
|
|
- this.$http.get('/sc-community-web/Workbench/totalHouseInfo').then((res) => {
|
|
|
+ this.$http.get('/sc-community/Workbench/totalHouseInfo').then((res) => {
|
|
|
if (res.status == 0) {
|
|
|
this.houseData = res.data;
|
|
|
} else {
|
|
@@ -473,7 +473,7 @@ export default {
|
|
|
},
|
|
|
// 获取告警信息
|
|
|
getWarnData() {
|
|
|
- this.$http.get('/sc-community-web/Workbench/getWaringInfo').then((res) => {
|
|
|
+ this.$http.get('/sc-community/Workbench/getWaringInfo').then((res) => {
|
|
|
if (res.status == 0) {
|
|
|
this.warnData = res.data;
|
|
|
} else {
|
|
@@ -484,7 +484,7 @@ export default {
|
|
|
|
|
|
// 获取通知信息
|
|
|
getInformData() {
|
|
|
- this.$http.get('/sc-community-web/Workbench/getNoticeInfo').then((res) => {
|
|
|
+ this.$http.get('/sc-community/Workbench/getNoticeInfo').then((res) => {
|
|
|
if (res.status == 0) {
|
|
|
let data = res.data;
|
|
|
this.informData = data;
|