Browse Source

首页+操作记录

dev
kilo 2 years ago
parent
commit
3f55c5bbcd
  1. 133
      src/views/dashboard/HomePage.vue
  2. 3
      src/views/operationlog/ProcessOperationLogList.vue
  3. 6
      src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue
  4. 3
      src/views/waste/ProcessWasteList.vue

133
src/views/dashboard/HomePage.vue

@ -1,27 +1,37 @@
<template>
<div style="height: 740px;">
<div style="width: 100% ;height: 100%;">
<div style="display: flex;align-items: center;justify-content: stretch;width: 100%;height: 50%">
<!--待办任务-->
<div class="top-div" style="width: 33%;">
<a-card class="div-card" title="待办" style="overflow: hidden" >
<ul class="ul-li" style="width: 100%; list-style-type:none;padding-left: 0px;" v-show="showDate.showDate">
<!--这里可以用for循环-->
<!--用于存放从数据库中查出来的信息并对其进行循环-->
<li v-for="(task,index) in tasks " style="width: 100%;">
<!--类型-->
<a-button class="ant-col-md-4" type="primary" style="width: 80px;height: 25px;">{{task.type}}</a-button>
<span class="ant-col-md-10" :title='task.message' style="padding-left: 10%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;line-height: 25px;">
{{task.message}}
</span>
<span class="ant-col-md-10" :title='task.time' style="padding-left: 10%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;text-align: right; line-height: 25px;">
{{task.time}}
</span>
</li>
</ul>
<a-card class="div-card" title="待办" style="overflow: hidden" extra="刷新" @click="todoList">
<a-table
class="j-table-force-nowrap"
rowKey="id"
:loading="loading"
:show-header="false"
:columns="columns"
:dataSource="tasks"
:pagination="true"
></a-table>
<!-- <ul class="ul-li" style="width: 100%; list-style-type:none;padding-left: 0px;">-->
<!-- &lt;!&ndash;这里可以用for循环&ndash;&gt;-->
<!-- &lt;!&ndash;用于存放从数据库中查出来的信息并对其进行循环&ndash;&gt;-->
<!-- <li v-for="(task,index) in tasks.slice(0,8)" :key="index" style="width: 100%;">-->
<!-- &lt;!&ndash;类型&ndash;&gt;-->
<!-- <a-button class="ant-col-md-4" :title="task.title" type="primary"-->
<!-- style="width: 80px;height: 25px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;line-height: 25px;"-->
<!-- @click="gotodoList">-->
<!-- {{task.title}}-->
<!-- </a-button>-->
<!-- <span class="ant-col-md-10" :title='task.processName' style="padding-left: 10%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;line-height: 25px;">-->
<!-- 关于{{task.processName}}的审批流程-->
<!-- </span>-->
<!-- <span class="ant-col-md-10" :title='task.createTime' style="padding-left: 10%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;text-align: right; line-height: 25px;">-->
<!-- {{task.createTime}}-->
<!-- </span>-->
<!-- </li>-->
<!-- </ul>-->
</a-card>
</div>
@ -86,20 +96,38 @@
<script>
import { getAction } from '@api/manage'
import { JVXETypes } from '@/components/jeecg/JVxeTable/index'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import { mixinDevice } from '@/utils/mixin'
export default {
name: 'HomePage',
components:{
JVXETypes,
},
data() {
return {
//
showDate: {
noDate: true ,
showDate: false,
},
url: {
todoManger: '/actTask/todoList'
},
columns:[
{
align:"left",
dataIndex: 'title',
},
{
align:"left",
dataIndex: 'processName',
},
//,()
{
align:"center",
dataIndex: 'createTime',
}
],
loading:true,
tasks:[],
loginlogs:[
{
@ -118,14 +146,22 @@ export default {
},
created() {
// this.searchDoneData();
// //tasks
// //
this.toBeDoneData();
this.todoList();
},
methods: {
todoList(){
getAction(this.url.todoManger).then((res) => {
if (res.success) {
this.loading = false
this.tasks = res.result
console.log(res.result)
}
})
},
//
processManage(){
this.$router.push('/activiti/applyHome')
@ -149,25 +185,7 @@ export default {
searchDoneData(){
//
},
//
toBeDoneData(){
this.tasks = [
{
type: "流程审批",
message: "关于帐外物资的xxxx的审批流程",
time: "2002.20.20 10:10:20"
},
{
type: "流程审批",
message: "关于帐外物资的xxxx的审批流程",
time: "2002.20.20 10:10:20"
}
]
if (this.tasks != null){
this.showDate.noDate = false;
this.showDate.showDate = true;
}
},
}
}
@ -177,6 +195,23 @@ export default {
@import url("http://at.alicdn.com/t/c/font_3733417_ws9m9bvag1h.css");
/deep/.ant-table-tbody .ant-table-row td{
padding: 3% 0 0 0;
}
/deep/.ant-table-tbody > tr > td {
border-bottom: 0px;
font-weight: 400;
}
/deep/.ant-table-tbody > tr:hover>td {
cursor: pointer;
color: #1890FF;
background-color:white !important;
}
/deep/.ant-table-tbody > tr:hover{
background: white;
}
.top-div {
height: 100%;
}
@ -189,7 +224,7 @@ export default {
}
.ul-li li{
margin-top: 10px;
margin-top: 12px;
display: inline-flex;
font-weight: bold;
}

3
src/views/operationlog/ProcessOperationLogList.vue

@ -96,9 +96,6 @@
title:'操作时间',
align:"center",
dataIndex: 'operationDate',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
}
],
url: {

6
src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue

@ -249,9 +249,6 @@
title:'生产时间',
align:"center",
dataIndex: 'productionTime',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
},
{
title:'保质期',
@ -272,9 +269,6 @@
title:'入库时间',
align:"center",
dataIndex: 'createTime',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
},
{
title:'入库人',

3
src/views/waste/ProcessWasteList.vue

@ -197,9 +197,6 @@
title:'报废日期',
align:"center",
dataIndex: 'scrapDate',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
}
],
url: {

Loading…
Cancel
Save