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

21
src/views/dashboard/HomePage.vue

@ -1,5 +1,5 @@
<template> <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 style="display: flex;align-items: center;justify-content: stretch;width: 100%;height: 50%">
<!--待办任务--> <!--待办任务-->
<div class="top-div" style="width: 33%;height: 100%;"> <div class="top-div" style="width: 33%;height: 100%;">
@ -74,24 +74,6 @@
<li @click='isystemManage' class="ant-col-md-4"> <li @click='isystemManage' class="ant-col-md-4">
<a-icon type="setting" style="font-size: 25px;" /> 系统管理 <a-icon type="setting" style="font-size: 25px;" /> 系统管理
</li> </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> </ul>
</a-card> </a-card>
</div> </div>
@ -215,6 +197,7 @@ export default {
on: { on: {
click: () => { click: () => {
console.log(record) console.log(record)
// this.$router.push({name:'activiti-todoManage', // this.$router.push({name:'activiti-todoManage',
// params:{ // params:{
// businessKey: record.busId // businessKey: record.busId

3
src/views/system/UserList.vue

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

Loading…
Cancel
Save