Browse Source

首页显示

dev
kilo 2 years ago
parent
commit
6752e18dcc
  1. 8
      src/views/activiti/todoManage.vue
  2. 21
      src/views/dashboard/HomePage.vue
  3. 3
      src/views/system/UserList.vue

8
src/views/activiti/todoManage.vue

@ -215,7 +215,7 @@ export default {
searchForm: {
// data
name: "",
tableId: "",
Id: "",
},
modalTaskTitle: "",
modalTitle: "", //
@ -265,9 +265,9 @@ export default {
},
mounted() {
console.log(this.searchForm)
console.log(this.$route.params.name)
if (this.$route.params.name !== null) {
this.searchForm.name=this.$route.params.name
console.log(this.$route.params.id)
if (this.$route.params.Id !== null) {
this.searchForm.Id=this.$route.params.id
}
this.init();
},

21
src/views/dashboard/HomePage.vue

@ -1,5 +1,5 @@
<template>
<div style="height: 740px;margin: 20px 10px 0px;">
<div style="height: 780px;overflow: hidden; margin: 20px 10px 0px;">
<div style="display: flex;align-items: center;justify-content: stretch;width: 100%;height: 50%">
<!--待办任务-->
<div class="top-div" style="width: 33%;height: 100%;">
@ -74,24 +74,6 @@
<li @click='isystemManage' class="ant-col-md-4">
<a-icon type="setting" style="font-size: 25px;" /> 系统管理
</li>
<li @click='portalInformation' class="ant-col-md-4">
<a-icon type="bank" style="font-size: 25px;" /> 门户信息
</li>
<li @click='statisticalTreatment' class="ant-col-md-4">
<a-icon type="bar-chart" style="font-size: 25px;" /> 统计报表
</li>
<li @click='statisticalTreatment' class="ant-col-md-4">
<a-icon type="bar-chart" style="font-size: 25px;" /> 统计报表
</li>
<li @click='statisticalTreatment' class="ant-col-md-4">
<a-icon type="bar-chart" style="font-size: 25px;" /> 统计报表
</li>
<li @click='statisticalTreatment' class="ant-col-md-4">
<a-icon type="bar-chart" style="font-size: 25px;" /> 统计报表
</li>
<li @click='statisticalTreatment' class="ant-col-md-4">
<a-icon type="bar-chart" style="font-size: 25px;" /> 统计报表
</li>
</ul>
</a-card>
</div>
@ -215,6 +197,7 @@ export default {
on: {
click: () => {
console.log(record)
// this.$router.push({name:'activiti-todoManage',
// params:{
// businessKey: record.busId

3
src/views/system/UserList.vue

@ -136,6 +136,7 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:scroll="{x: false, y: 500 }"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
@change="handleTableChange"
>
@ -252,7 +253,7 @@
align: "center",
dataIndex: 'username',
width: 120,
sorter: true
sorter: true,
},
{
title: '用户姓名',

Loading…
Cancel
Save