diff --git a/public/pages/property/monthAttendanceManage/monthAttendanceManage.html b/public/pages/property/monthAttendanceManage/monthAttendanceManage.html
new file mode 100644
index 000000000..dab45f569
--- /dev/null
+++ b/public/pages/property/monthAttendanceManage/monthAttendanceManage.html
@@ -0,0 +1,89 @@
+
\ No newline at end of file
diff --git a/public/pages/property/monthAttendanceManage/monthAttendanceManage.js b/public/pages/property/monthAttendanceManage/monthAttendanceManage.js
new file mode 100644
index 000000000..fd94d6348
--- /dev/null
+++ b/public/pages/property/monthAttendanceManage/monthAttendanceManage.js
@@ -0,0 +1,79 @@
+/**
+ 入驻小区
+**/
+(function (vc) {
+ var DEFAULT_PAGE = 1;
+ var DEFAULT_ROWS = 10;
+ vc.extends({
+ data: {
+ monthAttendanceManageInfo: {
+ attendances: [],
+ total: 0,
+ records: 1,
+ moreCondition: false,
+ classesId: '',
+ conditions: {
+ classesName: '',
+ departmentName: '',
+ date: vc.dateFormat(new Date())
+ }
+ }
+ },
+ _initMethod: function () {
+ vc.component._listMonthAttendances(DEFAULT_PAGE, DEFAULT_ROWS);
+
+ vc.initDate('queryDate',function(value){
+ $that.monthAttendanceManageInfo.conditions.date = value;
+ });
+ },
+ _initEvent: function () {
+
+ vc.on('monthAttendanceManage', 'listMonthAttendance', function (_param) {
+ vc.component._listMonthAttendances(DEFAULT_PAGE, DEFAULT_ROWS);
+ });
+ vc.on('pagination', 'page_event', function (_currentPage) {
+ vc.component._listMonthAttendances(_currentPage, DEFAULT_ROWS);
+ });
+ },
+ methods: {
+ _listMonthAttendances: function (_page, _rows) {
+
+ vc.component.monthAttendanceManageInfo.conditions.page = _page;
+ vc.component.monthAttendanceManageInfo.conditions.row = _rows;
+ var param = {
+ params: vc.component.monthAttendanceManageInfo.conditions
+ };
+
+ //发送get请求
+ vc.http.apiGet('/attendanceClass/getMonthAttendance',
+ param,
+ function (json, res) {
+ var _monthAttendanceManageInfo = JSON.parse(json);
+ vc.component.monthAttendanceManageInfo.total = _monthAttendanceManageInfo.total;
+ vc.component.monthAttendanceManageInfo.records = _monthAttendanceManageInfo.records;
+ vc.component.monthAttendanceManageInfo.attendances = _monthAttendanceManageInfo.data;
+ vc.emit('pagination', 'init', {
+ total: vc.component.monthAttendanceManageInfo.records,
+ currentPage: _page
+ });
+ }, function (errInfo, error) {
+ console.log('请求失败处理');
+ }
+ );
+ },
+
+ _queryMonthAttendanceMethod: function () {
+ vc.component._listMonthAttendances(DEFAULT_PAGE, DEFAULT_ROWS);
+ },
+ _moreCondition: function () {
+ if (vc.component.monthAttendanceManageInfo.moreCondition) {
+ vc.component.monthAttendanceManageInfo.moreCondition = false;
+ } else {
+ vc.component.monthAttendanceManageInfo.moreCondition = true;
+ }
+ }
+
+
+ }
+ });
+})(window.vc);