Browse Source

首页+操作记录

dev
kilo 2 years ago
parent
commit
3f55c5bbcd
  1. 135
      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

135
src/views/dashboard/HomePage.vue

@ -1,27 +1,37 @@
<template> <template>
<div style="height: 740px;"> <div style="height: 740px;">
<div style="width: 100% ;height: 100%;"> <div style="width: 100% ;height: 100%;">
<div style="display: flex;align-items: center;justify-content: stretch;width: 100%;height: 50%"> <div style="display: flex;align-items: center;justify-content: stretch;width: 100%;height: 50%">
<!--待办任务--> <!--待办任务-->
<div class="top-div" style="width: 33%;"> <div class="top-div" style="width: 33%;">
<a-card class="div-card" title="待办" style="overflow: hidden" > <a-card class="div-card" title="待办" style="overflow: hidden" extra="刷新" @click="todoList">
<ul class="ul-li" style="width: 100%; list-style-type:none;padding-left: 0px;" v-show="showDate.showDate"> <a-table
<!--这里可以用for循环--> class="j-table-force-nowrap"
<!--用于存放从数据库中查出来的信息并对其进行循环--> rowKey="id"
<li v-for="(task,index) in tasks " style="width: 100%;"> :loading="loading"
<!--类型--> :show-header="false"
<a-button class="ant-col-md-4" type="primary" style="width: 80px;height: 25px;">{{task.type}}</a-button> :columns="columns"
<span class="ant-col-md-10" :title='task.message' style="padding-left: 10%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;line-height: 25px;"> :dataSource="tasks"
{{task.message}} :pagination="true"
</span> ></a-table>
<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;"> <!-- <ul class="ul-li" style="width: 100%; list-style-type:none;padding-left: 0px;">-->
{{task.time}} <!-- &lt;!&ndash;这里可以用for循环&ndash;&gt;-->
</span> <!-- &lt;!&ndash;用于存放从数据库中查出来的信息并对其进行循环&ndash;&gt;-->
</li> <!-- <li v-for="(task,index) in tasks.slice(0,8)" :key="index" style="width: 100%;">-->
<!-- &lt;!&ndash;类型&ndash;&gt;-->
</ul> <!-- <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> </a-card>
</div> </div>
@ -86,20 +96,38 @@
<script> <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 { export default {
name: 'HomePage', name: 'HomePage',
components:{
JVXETypes,
},
data() { data() {
return { return {
//
showDate: {
noDate: true ,
showDate: false,
},
url: { url: {
todoManger: '/actTask/todoList'
}, },
//,()
columns:[
{
align:"left",
dataIndex: 'title',
},
{
align:"left",
dataIndex: 'processName',
},
{
align:"center",
dataIndex: 'createTime',
}
],
loading:true,
tasks:[], tasks:[],
loginlogs:[ loginlogs:[
{ {
@ -118,14 +146,22 @@ export default {
}, },
created() { created() {
// this.searchDoneData(); this.todoList();
// //tasks
// //
this.toBeDoneData();
}, },
methods: { methods: {
todoList(){
getAction(this.url.todoManger).then((res) => {
if (res.success) {
this.loading = false
this.tasks = res.result
console.log(res.result)
}
})
},
// //
processManage(){ processManage(){
this.$router.push('/activiti/applyHome') this.$router.push('/activiti/applyHome')
@ -149,25 +185,7 @@ export default {
searchDoneData(){ 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"); @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 { .top-div {
height: 100%; height: 100%;
} }
@ -189,7 +224,7 @@ export default {
} }
.ul-li li{ .ul-li li{
margin-top: 10px; margin-top: 12px;
display: inline-flex; display: inline-flex;
font-weight: bold; font-weight: bold;
} }

3
src/views/operationlog/ProcessOperationLogList.vue

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

6
src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue

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

3
src/views/waste/ProcessWasteList.vue

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

Loading…
Cancel
Save