MicroCommunityWeb/public/pages/property/questionAnswerTitleValueManage/questionAnswerTitleValueManage.js
2021-05-24 13:06:30 +08:00

64 lines
2.4 KiB
JavaScript

/**
入驻小区
**/
(function (vc) {
var DEFAULT_PAGE = 1;
var DEFAULT_ROWS = 10;
vc.extends({
data: {
questionAnswerTitleValueManageInfo: {
values: [],
total: 0,
records: 1,
moreCondition: false,
titleId: '',
}
},
_initMethod: function () {
let _titleId = vc.getParam('titleId');
$that.questionAnswerTitleValueManageInfo.titleId = _titleId;
vc.component._listQuestionAnswerTitles(DEFAULT_PAGE, DEFAULT_ROWS);
},
_initEvent: function () {
vc.on('pagination', 'page_event', function (_currentPage) {
vc.component._listQuestionAnswerTitles(_currentPage, DEFAULT_ROWS);
});
},
methods: {
_listQuestionAnswerTitles: function (_page, _rows) {
let param = {
params: {
page:_page,
row:_rows,
titleId:$that.questionAnswerTitleValueManageInfo.titleId,
communityId:vc.getCurrentCommunity().communityId
}
};
//发送get请求
vc.http.apiGet('/reportQuestionAnswer/queryUserQuestionAnswerValue',
param,
function (json, res) {
var _questionAnswerTitleValueManageInfo = JSON.parse(json);
vc.component.questionAnswerTitleValueManageInfo.total = _questionAnswerTitleValueManageInfo.total;
vc.component.questionAnswerTitleValueManageInfo.records = _questionAnswerTitleValueManageInfo.records;
vc.component.questionAnswerTitleValueManageInfo.values = _questionAnswerTitleValueManageInfo.data;
vc.emit('pagination', 'init', {
total: vc.component.questionAnswerTitleValueManageInfo.records,
dataCount: vc.component.questionAnswerTitleValueManageInfo.total,
currentPage: _page
});
}, function (errInfo, error) {
console.log('请求失败处理');
}
);
},
_goBack: function () {
vc.goBack();
}
}
});
})(window.vc);