mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-23 21:36:38 +08:00
304 lines
5.7 KiB
JavaScript
304 lines
5.7 KiB
JavaScript
import {
|
|
requestNoAuth,
|
|
request
|
|
} from '../../lib/java110/java110Request.js';
|
|
import
|
|
url
|
|
from '../../constant/url.js'
|
|
|
|
|
|
import {
|
|
hasLogin
|
|
} from '../../lib/java110/page/Page.js'
|
|
|
|
import mapping from '../../constant/MappingConstant.js'
|
|
|
|
import {
|
|
getCurOwner
|
|
} from '../owner/ownerApi.js'
|
|
|
|
import conf from '../../conf/config.js'
|
|
|
|
|
|
/**
|
|
* @param {Object} dataObj
|
|
* page: 1,
|
|
row: 15,
|
|
cityCode: this.areaCode,
|
|
state: '1100',
|
|
name: this.searchValue
|
|
*/
|
|
export function getCommunitys(dataObj) {
|
|
return new Promise(
|
|
(resolve, reject) => {
|
|
requestNoAuth({
|
|
url: url.listCommunitys,
|
|
method: "GET",
|
|
data: dataObj,
|
|
//动态数据
|
|
success: function(res) {
|
|
if (res.statusCode == 200) {
|
|
let _communtiys = res.data.communitys;
|
|
resolve(_communtiys);
|
|
return;
|
|
}
|
|
|
|
},
|
|
fail: function(e) {
|
|
wx.showToast({
|
|
title: "服务器异常了",
|
|
icon: 'none',
|
|
duration: 2000
|
|
});
|
|
}
|
|
});
|
|
})
|
|
}
|
|
|
|
|
|
export function getMallCommunityId() {
|
|
let _currentCommunity = uni.getStorageSync(mapping.CURRENT_MALL_COMMUNITY_INFO)
|
|
if (_currentCommunity) {
|
|
return _currentCommunity.communityId;
|
|
}
|
|
return getCommunityId();
|
|
}
|
|
|
|
export function getMallCommunityName() {
|
|
let _currentCommunity = uni.getStorageSync(mapping.CURRENT_MALL_COMMUNITY_INFO)
|
|
if (_currentCommunity) {
|
|
return _currentCommunity.name;
|
|
}
|
|
return getCommunityName();
|
|
}
|
|
|
|
export function getCommunityId() {
|
|
|
|
let _currentCommunity = uni.getStorageSync("currentCommunityInfo")
|
|
if (_currentCommunity) {
|
|
return _currentCommunity.communityId;
|
|
}
|
|
|
|
return conf.DEFAULT_COMMUNITY_ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getCommunityName() {
|
|
let _currentCommunity = uni.getStorageSync("currentCommunityInfo")
|
|
if (_currentCommunity) {
|
|
return _currentCommunity.communityName;
|
|
}
|
|
return conf.DEFAULT_COMMUNITY_NAME;
|
|
}
|
|
|
|
|
|
export function getCommunityTel() {
|
|
let _currentCommunity = uni.getStorageSync("currentCommunityInfo")
|
|
if (_currentCommunity) {
|
|
return _currentCommunity.sCommunityTel;
|
|
}
|
|
return '';
|
|
}
|
|
|
|
|
|
export function getCommunityQrCode() {
|
|
let _currentCommunity = uni.getStorageSync("currentCommunityInfo")
|
|
if (_currentCommunity) {
|
|
return _currentCommunity.communityQrCode;
|
|
}
|
|
return '';
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* 查询当前小区
|
|
*
|
|
* 当还没有小区时返回 演示小区
|
|
*/
|
|
export function getCurCommunity() {
|
|
return new Promise((resolve, reject) => {
|
|
let _currentCommunityInfo = uni.getStorageSync("currentCommunityInfo");
|
|
if (!_currentCommunityInfo) {
|
|
_currentCommunityInfo = {
|
|
communityId: conf.DEFAULT_COMMUNITY_ID,
|
|
communityName: conf.DEFAULT_COMMUNITY_NAME,
|
|
}
|
|
}
|
|
resolve(_currentCommunityInfo);
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 将小区信息 刷入 _obj对象
|
|
* @param {Object} _obj 刷入 小区信息对象
|
|
*/
|
|
export function recoveryCommunityInfo(_obj) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
getCurCommunity()
|
|
.then((_communityInfo) => {
|
|
if (_obj.hasOwnProperty("communityId")) {
|
|
_obj.communityId = _communityInfo.communityId;
|
|
}
|
|
|
|
if (_obj.hasOwnProperty("communityName")) {
|
|
_obj.communityName = _communityInfo.communityName;
|
|
}
|
|
resolve(_communityInfo);
|
|
})
|
|
})
|
|
|
|
}
|
|
|
|
/**
|
|
* 查询业主小区
|
|
* @param {Object} dataObj 对象
|
|
*/
|
|
export function getOwnerCommunitys(dataObj) {
|
|
return new Promise(
|
|
(resolve, reject) => {
|
|
request({
|
|
url: url.ownerCommunity,
|
|
method: "GET",
|
|
data: dataObj,
|
|
//动态数据
|
|
success: function(res) {
|
|
if (res.statusCode == 200) {
|
|
let _communitys = res.data.data;
|
|
resolve(_communitys);
|
|
}
|
|
},
|
|
fail: function(e) {
|
|
reject(e);
|
|
}
|
|
});
|
|
})
|
|
|
|
}
|
|
|
|
/**
|
|
* 查询停车场
|
|
* @param {Object} dataObj 对象
|
|
*/
|
|
export function listParkingAreas(dataObj) {
|
|
return new Promise(
|
|
(resolve, reject) => {
|
|
request({
|
|
url: url.listParkingAreas,
|
|
method: "GET",
|
|
data: dataObj,
|
|
//动态数据
|
|
success: function(res) {
|
|
if (res.statusCode == 200) {
|
|
let _parkingAreas = res.data.parkingAreas;
|
|
resolve(_parkingAreas);
|
|
}
|
|
},
|
|
fail: function(e) {
|
|
reject(e);
|
|
}
|
|
});
|
|
})
|
|
|
|
}
|
|
|
|
/**
|
|
* 查询小区公示
|
|
* @param {Object} dataObj 对象
|
|
*/
|
|
export function getCommunityPublicity(dataObj) {
|
|
return new Promise(
|
|
(resolve, reject) => {
|
|
request({
|
|
url: url.listCommunityPublicity,
|
|
method: "GET",
|
|
data: dataObj,
|
|
//动态数据
|
|
success: function(res) {
|
|
if (res.data.code == 0) {
|
|
let _data = res.data.data;
|
|
resolve(_data);
|
|
return;
|
|
}
|
|
},
|
|
fail: function(e) {
|
|
reject(e);
|
|
}
|
|
});
|
|
})
|
|
|
|
}
|
|
|
|
export function queryFloors(_objData) {
|
|
return new Promise((resolve, reject) => {
|
|
requestNoAuth({
|
|
url: url.queryFloor,
|
|
data: _objData,
|
|
method: "GET",
|
|
//动态数据
|
|
success: function(res) {
|
|
let _json = res.data;
|
|
|
|
resolve(_json.apiFloorDataVoList);
|
|
|
|
|
|
},
|
|
fail: function(e) {
|
|
uni.hideLoading();
|
|
uni.showToast({
|
|
title: "服务器异常了",
|
|
icon: 'none'
|
|
})
|
|
}
|
|
});
|
|
})
|
|
}
|
|
export function queryUnits(_objData) {
|
|
return new Promise((resolve, reject) => {
|
|
requestNoAuth({
|
|
url: url.queryUnit,
|
|
data: _objData,
|
|
method: "GET",
|
|
//动态数据
|
|
success: function(res) {
|
|
resolve(res.data);
|
|
},
|
|
fail: function(e) {
|
|
uni.hideLoading();
|
|
uni.showToast({
|
|
title: "服务器异常了",
|
|
icon: 'none'
|
|
})
|
|
}
|
|
});
|
|
})
|
|
}
|
|
export function queryRoomsByApp(_objData) {
|
|
return new Promise((resolve, reject) => {
|
|
requestNoAuth({
|
|
url: url.queryRoomsByApp,
|
|
data: _objData,
|
|
method: "GET",
|
|
//动态数据
|
|
success: function(res) {
|
|
let _json = res.data;
|
|
if (_json.code == 0) {
|
|
resolve(_json.data);
|
|
return;
|
|
}
|
|
reject();
|
|
},
|
|
fail: function(e) {
|
|
uni.hideLoading();
|
|
uni.showToast({
|
|
title: "服务器异常了",
|
|
icon: 'none'
|
|
})
|
|
}
|
|
});
|
|
})
|
|
} |