123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <template>
- <section>
- <!--工具条-->
- <el-col :span="24" class="toolbar" style="padding-bottom: 0px;">
- <el-form :inline="true">
- <el-form-item>
- <el-date-picker
- v-model="date"
- :editable="false"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- @change="getList"
- :clearable="false"
- type="date"
- placeholder="选择日期"
- ></el-date-picker>
- </el-form-item>
- <!-- <el-form-item style="float:right;">
- <el-link type="primary" :underline="false" @click="handleAdd">异常申请</el-link>
- </el-form-item> -->
- </el-form>
- </el-col>
- <!--列表-->
- <el-table
- :data="list"
- highlight-current-row
- v-loading="listLoading"
- :height="tableHeight"
- style="width: 100%;"
- >
- <el-table-column type="index" width="60"></el-table-column>
- <el-table-column prop="name" label="姓名" width="140" sortable></el-table-column>
- <el-table-column prop="phone" label="手机" width="120"></el-table-column>
- <el-table-column prop="statistics[0]" label="编程" sortable></el-table-column>
- <el-table-column prop="statistics[1]" label="上网" sortable></el-table-column>
- <el-table-column prop="statistics[5]" label="文档" sortable></el-table-column>
- <el-table-column prop="statistics[3]" label="设计" sortable></el-table-column>
- <!-- <el-table-column prop="statistics[4]" label="运营" sortable></el-table-column> -->
- <el-table-column prop="statistics[5]" label="娱乐" sortable></el-table-column>
- <el-table-column prop="statistics[6]" label="其他" sortable></el-table-column>
- <el-table-column prop="sum" label="总时长" sortable></el-table-column>
- </el-table>
- <!--工具条-->
- <el-col :span="24" class="toolbar">
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :page-sizes="[20 , 50 , 80 , 100]"
- :page-size="20"
- layout="total, sizes, prev, pager, next"
- :total="total"
- style="float:right;"
- ></el-pagination>
- </el-col>
- <!--新增界面-->
- <el-dialog
- title="异常申请列表"
- v-if="addFormVisible"
- :visible.sync="addFormVisible"
- :close-on-click-modal="false"
- customClass="customWidth"
- >
- <el-table
- :data="list"
- highlight-current-row
- v-loading="listLoading"
- height="400"
- style="width: 100%;"
- >
- <el-table-column type="index" width="60"></el-table-column>
- <el-table-column prop="projectName" label="姓名" width="140" sortable></el-table-column>
- <el-table-column prop="indate" label="工作时长" width="100" sortable></el-table-column>
- <el-table-column prop="indate" label="异常原因" width="180" sortable></el-table-column>
- <el-table-column prop="indate" label="时间" sortable></el-table-column>
- </el-table>
- <div slot="footer" class="dialog-footer">
- <el-button @click.native="addFormVisible = false">取消</el-button>
- </div>
- </el-dialog>
- </section>
- </template>
- <script>
- import util from "../../common/js/util";
- export default {
- data() {
- return {
- user: JSON.parse(sessionStorage.getItem("user")),
- date: null,
- tableHeight: 0,
- listLoading: false,
- total: 0,
- page: 1,
- size: 20,
- list: [],
- addFormVisible: false,
- addLoading: false
- };
- },
- methods: {
- //分页
- handleCurrentChange(val) {
- this.page = val;
- this.getList();
- },
- handleSizeChange(val) {
- this.size = val;
- this.getList();
- },
- //获取统计列表
- getList() {
- this.listLoading = true;
- this.http.post(
- this.port.time.listStatistics,
- {
- date: this.date
- },
- res => {
- this.listLoading = false;
- if (res.code == "ok") {
- this.list = res.data;
- } else {
- this.$message({
- message: res.msg,
- type: "error"
- });
- }
- },
- error => {
- this.listLoading = false;
- this.$message({
- message: error,
- type: "error"
- });
- }
- );
- },
- //显示新增界面
- handleAdd() {
- this.getUnusual();
- this.addFormVisible = true;
- },
- //获取异常列表
- getUnusual() {}
- },
- created() {
- let height = window.innerHeight;
- this.tableHeight = height - 195;
- const that = this;
- window.onresize = function temp() {
- that.tableHeight = window.innerHeight - 195;
- };
- },
- mounted() {
- //第一次处理时间
- let tempDate = new Date();
- this.date =
- tempDate.getFullYear() +
- "-" +
- (tempDate.getMonth() + 1) +
- "-" +
- tempDate.getDate();
- this.getList();
- }
- };
- </script>
- <style lang="scss" scoped>
- </style>
|