mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
优化代码
This commit is contained in:
parent
c3e1a654f7
commit
562f4c0081
8
app.js
8
app.js
@ -36,11 +36,11 @@ let opts = {
|
||||
//app.use('/callComponent',proxy('http://api.demo.winqi.cn:8012',opts));
|
||||
|
||||
|
||||
//app.use('/callComponent',proxy('http://api.demo.winqi.cn:8012',opts));
|
||||
//app.use('/app',proxy('http://api.demo.winqi.cn:8012',opts));
|
||||
app.use('/callComponent',proxy('http://api.demo.winqi.cn:8012',opts));
|
||||
app.use('/app',proxy('http://api.demo.winqi.cn:8012',opts));
|
||||
|
||||
app.use('/callComponent',proxy('http://127.0.0.1:8012',opts));
|
||||
app.use('/app',proxy('http://127.0.0.1:8012',opts));
|
||||
//app.use('/callComponent',proxy('http://127.0.0.1:8012',opts));
|
||||
//app.use('/app',proxy('http://127.0.0.1:8012',opts));
|
||||
|
||||
//app.use('/callComponent',proxy('http://192.168.1.16:8012',opts));
|
||||
//app.use('/app',proxy('http://192.168.1.16:8012',opts));
|
||||
|
||||
@ -0,0 +1,99 @@
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="ibox ">
|
||||
<div class="ibox-title">
|
||||
<h5>查询条件</h5>
|
||||
<div class="ibox-tools" style="top:10px;">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="ibox-content">
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入班组名称"
|
||||
v-model="todayAttendanceManageInfo.conditions.classesName" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入班组ID"
|
||||
v-model="todayAttendanceManageInfo.conditions.classesId" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<select class="custom-select" v-model="todayAttendanceManageInfo.conditions.clockType">
|
||||
<option selected value="">请选择打卡类型</option>
|
||||
<option value="1001">每天打卡</option>
|
||||
<option value="1002">隔天打卡</option>
|
||||
<option value="1003">自定义</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-sm-1">
|
||||
<button type="button" class="btn btn-primary btn-sm"
|
||||
v-on:click="_queryTodayAttendanceMethod()">
|
||||
<i class="glyphicon glyphicon-search"></i> 查询
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="ibox">
|
||||
<div class="ibox-title">
|
||||
<h5>今日考勤</h5>
|
||||
<div class="ibox-tools" style="top:10px;">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="ibox-content">
|
||||
|
||||
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="text-center">部门名称</th>
|
||||
<th class="text-center">员工名称</th>
|
||||
<th class="text-center">考勤班组</th>
|
||||
<th class="text-center">考勤时间</th>
|
||||
<th class="text-center">考勤状态</th>
|
||||
<th class="text-center">操作</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="attendance in todayAttendanceManageInfo.attendances">
|
||||
<td class="text-center">{{attendance.departmentName}}</td>
|
||||
<td class="text-center">{{attendance.staffName}}</td>
|
||||
<td class="text-center">{{attendance.classesName}}</td>
|
||||
<td class="text-center">{{attendance.clockCount}}</td>
|
||||
<td class="text-center">{{attendance.stateName}}</td>
|
||||
<td class="text-center">
|
||||
<div class="btn-group">
|
||||
<button class="btn-white btn btn-xs"
|
||||
v-on:click="_openEditAttendanceClassesModel(attendance)">详情</button>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<ul class="pagination float-right"></ul>
|
||||
</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
<!-- 分页 -->
|
||||
<vc:create path="frame/pagination"></vc:create>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@ -0,0 +1,79 @@
|
||||
/**
|
||||
入驻小区
|
||||
**/
|
||||
(function (vc) {
|
||||
var DEFAULT_PAGE = 1;
|
||||
var DEFAULT_ROWS = 10;
|
||||
vc.extends({
|
||||
data: {
|
||||
todayAttendanceManageInfo: {
|
||||
attendances: [],
|
||||
total: 0,
|
||||
records: 1,
|
||||
moreCondition: false,
|
||||
classesId: '',
|
||||
conditions: {
|
||||
classesName: '',
|
||||
classesId: '',
|
||||
clockType: '',
|
||||
|
||||
}
|
||||
}
|
||||
},
|
||||
_initMethod: function () {
|
||||
vc.component._listTodayAttendances(DEFAULT_PAGE, DEFAULT_ROWS);
|
||||
},
|
||||
_initEvent: function () {
|
||||
|
||||
vc.on('todayAttendanceManage', 'listTodayAttendance', function (_param) {
|
||||
vc.component._listTodayAttendances(DEFAULT_PAGE, DEFAULT_ROWS);
|
||||
});
|
||||
vc.on('pagination', 'page_event', function (_currentPage) {
|
||||
vc.component._listTodayAttendances(_currentPage, DEFAULT_ROWS);
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
_listTodayAttendances: function (_page, _rows) {
|
||||
|
||||
vc.component.todayAttendanceManageInfo.conditions.page = _page;
|
||||
vc.component.todayAttendanceManageInfo.conditions.row = _rows;
|
||||
var param = {
|
||||
params: vc.component.todayAttendanceManageInfo.conditions
|
||||
};
|
||||
|
||||
//发送get请求
|
||||
vc.http.apiGet('/attendanceClass/queryAttendanceClassesTask',
|
||||
param,
|
||||
function (json, res) {
|
||||
var _todayAttendanceManageInfo = JSON.parse(json);
|
||||
vc.component.todayAttendanceManageInfo.total = _todayAttendanceManageInfo.total;
|
||||
vc.component.todayAttendanceManageInfo.records = _todayAttendanceManageInfo.records;
|
||||
vc.component.todayAttendanceManageInfo.attendances = _todayAttendanceManageInfo.data;
|
||||
vc.emit('pagination', 'init', {
|
||||
total: vc.component.todayAttendanceManageInfo.records,
|
||||
currentPage: _page
|
||||
});
|
||||
}, function (errInfo, error) {
|
||||
console.log('请求失败处理');
|
||||
}
|
||||
);
|
||||
},
|
||||
_openAddTodayAttendanceModal: function () {
|
||||
vc.emit('addTodayAttendance', 'openAddTodayAttendanceModal', {});
|
||||
},
|
||||
_queryTodayAttendanceMethod: function () {
|
||||
vc.component._listTodayAttendances(DEFAULT_PAGE, DEFAULT_ROWS);
|
||||
|
||||
},
|
||||
_moreCondition: function () {
|
||||
if (vc.component.todayAttendanceManageInfo.moreCondition) {
|
||||
vc.component.todayAttendanceManageInfo.moreCondition = false;
|
||||
} else {
|
||||
vc.component.todayAttendanceManageInfo.moreCondition = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
})(window.vc);
|
||||
Loading…
Reference in New Issue
Block a user