mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
66 lines
2.3 KiB
JavaScript
Executable File
66 lines
2.3 KiB
JavaScript
Executable File
/**
|
|
入驻小区
|
|
**/
|
|
(function (vc) {
|
|
var DEFAULT_PAGE = 1;
|
|
var DEFAULT_ROWS = 1;
|
|
vc.extends({
|
|
data: {
|
|
noticeDetailInfo: {
|
|
noticeId: '',
|
|
title: '',
|
|
context: '',
|
|
startTime: '',
|
|
endTime: '',
|
|
noticeTypeCd: '',
|
|
noticeTypeCdName: '',
|
|
createTime: ''
|
|
}
|
|
},
|
|
_initMethod: function () {
|
|
var tmpNoticeId = vc.getParam('noticeId');
|
|
if (!vc.notNull(tmpNoticeId)) {
|
|
return;
|
|
}
|
|
vc.component.noticeDetailInfo.noticeId = tmpNoticeId;
|
|
vc.component._listNotices(DEFAULT_PAGE, DEFAULT_ROWS);
|
|
},
|
|
_initEvent: function () {
|
|
},
|
|
methods: {
|
|
_listNotices: function (_page, _rows) {
|
|
var param = {
|
|
params: {
|
|
page: _page,
|
|
row: _rows,
|
|
communityId: vc.getCurrentCommunity().communityId,
|
|
noticeId: vc.component.noticeDetailInfo.noticeId
|
|
}
|
|
};
|
|
//发送get请求
|
|
vc.http.get('noticeDetail',
|
|
'get',
|
|
param,
|
|
function (json, res) {
|
|
var _noticeDetailInfo = JSON.parse(json);
|
|
var _notices = _noticeDetailInfo.notices;
|
|
if (_notices.length > 0) {
|
|
//filterXSS
|
|
_notices[0].context = filterXSS(_notices[0].context);
|
|
if (_notices[0].context != null && _notices[0].context != '' && _notices[0].context != 'undefined') {
|
|
_notices[0].context = _notices[0].context.substring(3).split("</p>")[0];
|
|
}
|
|
vc.copyObject(_notices[0], vc.component.noticeDetailInfo);
|
|
}
|
|
},
|
|
function (errInfo, error) {
|
|
console.log('请求失败处理');
|
|
}
|
|
);
|
|
},
|
|
_goBack: function () {
|
|
vc.goBack();
|
|
}
|
|
}
|
|
});
|
|
})(window.vc); |