diff --git a/src/views/activiti/todoManage.vue b/src/views/activiti/todoManage.vue index de5bcb5..b8f8ede 100644 --- a/src/views/activiti/todoManage.vue +++ b/src/views/activiti/todoManage.vue @@ -215,6 +215,7 @@ export default { searchForm: { // 搜索框对应data对象 name: "", + tableId: "", }, modalTaskTitle: "", modalTitle: "", // 添加或编辑标题 @@ -263,6 +264,11 @@ 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 + } this.init(); }, methods: { @@ -272,9 +278,12 @@ export default { loadData(){}, getDataList() { this.loading = true; + console.log("this.searchForm") + console.log(this.searchForm) this.getAction(this.url.todoList,this.searchForm).then(res => { this.loading = false; if (res.success) { + console.log(res) this.data = res.result||[]; this.total = this.data.leading; } diff --git a/src/views/dashboard/HomePage.vue b/src/views/dashboard/HomePage.vue index 25618f6..0b810f5 100644 --- a/src/views/dashboard/HomePage.vue +++ b/src/views/dashboard/HomePage.vue @@ -1,95 +1,100 @@ @@ -99,70 +104,173 @@ 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', + // mixins:[JeecgListMixin], components:{ JVXETypes, }, data() { return { + //登录日志查询条件 + queryParam:{ + logType:1, + keyWord:'登录成功', + }, + isorter:{ + column: 'createTime', + order: 'desc', + }, + //待办 登录日志 站内消息查询地址 url: { - todoManger: '/actTask/todoList' + todoManger: '/actTask/todoList', + lists: '/sys/log/list', + listMseeage: '/sys/sysAnnouncementSend/getMyAnnouncementSend', }, - + //待办显示内容 columns:[ { align:"left", dataIndex: 'title', + ellipsis: true, }, { align:"left", dataIndex: 'processName', + ellipsis: true, }, { align:"center", dataIndex: 'createTime', + ellipsis: true, } ], - loading:true, tasks:[], - loginlogs:[ + //登录日志显示内容 + loginColumns:[ + { + align:"left", + dataIndex: 'logType_dictText', + ellipsis: true, + sorter: true + }, { - department: "企划部", - loginName: "李朝阳", - loginTime: "2022.10.26 12:00:00" + align:"left", + dataIndex: 'username', + ellipsis: true, + sorter: true + }, + { + align:"center", + dataIndex: 'createTime', + ellipsis: true, + sorter: true }, + ], + loginLogs:[], + //站内消息显示内容 + msgColumns:[ { - department: "企划部", - loginName: "李朝阳", - loginTime: "2022.10.26 12:00:00" + align: "left", + dataIndex: "msgContent", + ellipsis: true, } - ] + ], + msgContent: [], + //加载状态 + loading:true, + } }, created() { this.todoList(); + this.loginList(); + this.systemMessage(); }, - methods: { + //待办任务的行点击事件(前往待办) + rowClick: function(record, index) { + return { + on: { + click: () => { + console.log(record) + console.log(record.id) + this.$router.push({name:'activiti-todoManage', + params:{ + id: record.id + } + }) + }, + } + } + }, + rowClickToDo: function(record, index) { + return { + on: { + click: () => { + console.log(record) + // this.$router.push({name:'activiti-todoManage', + // params:{ + // businessKey: record.busId + // } + // }) + }, + } + } + }, + //待办任务查询 todoList(){ getAction(this.url.todoManger).then((res) => { if (res.success) { + console.log("res") this.loading = false this.tasks = res.result console.log(res.result) } }) + }, + + // 系统消息查询 + systemMessage(){ + let queryUnRead = { + readFlag: '0' + } + let param = Object.assign({},queryUnRead,this.isorter); + + getAction(this.url.listMseeage,param).then((res) => { + if (res.success) { + console.log("resMessage") + this.loading = false + this.msgContent = res.result.records + console.log(res.result) + } + }) + }, + + // 登录日志查询 + loginList(){ + let param = Object.assign({}, this.queryParam, this.isorter); + getAction(this.url.lists,param).then((res) => { + if (res.success) { + console.log("resnew") + console.log(res.result) + this.loading = false + this.loginLogs = res.result.records + } + }) }, // 跳转地址 + informationManagement(){ + this.$router.push('/supplier/regulate') + }, processManage(){ this.$router.push('/activiti/applyHome') }, @@ -178,6 +286,9 @@ export default { isystemManage(){ this.$router.push('/isystem/user') }, + portalInformation(){ + this.$router.push('') + }, statisticalTreatment(){ this.$router.push('/report/ArchivesStatisticst') }, @@ -194,13 +305,22 @@ export default {