| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- <template>
- <ibps-layout ref="layout">
- <div slot="west">
- <ibps-type-tree
- :width="width"
- :height="height"
- title="流程分类"
- category-key="FLOW_TYPE"
- @node-click="handleNodeClick"
- @expand-collapse="handleExpandCollapse"
- />
- </div>
- <ibps-crud
- ref="crud"
- :height="height"
- :data="listData"
- :toolbars="listConfig.toolbars"
- :search-form="listConfig.searchForm"
- :pk-key="pkKey"
- :columns="listConfig.columns"
- display-field="我的办结"
- :row-handle="listConfig.rowHandle"
- :pagination="pagination"
- :loading="loading"
- :index-row="false"
- :selection-row="false"
- @action-event="handleAction"
- @sort-change="handleSortChange"
- @column-link-click="handleLinkClick"
- @pagination-change="handlePaginationChange"
- />
- <bpmn-formrender
- :visible="dialogFormVisible"
- :instance-id="instanceId"
- @callback="search"
- @close="visible => dialogFormVisible = visible"
- />
- </ibps-layout>
- <!-- <div>
- <ibps-layout ref="layout">
- <div slot="west">
- <ibps-type-tree
- :width="width"
- :height="height"
- title="任务分类"
- category-key="FLOW_TYPE"
- @node-click="handleNodeClick"
- @expand-collapse="handleExpandCollapse"
- />
- </div>
- <ibps-card-list
- ref="crud"
- :title="title"
- :height="height"
- :data="listData"
- :pagination="pagination"
- :pk-key="pkKey"
- :toolbars="listConfig.toolbars"
- :search-form="listConfig.searchForm"
- :columns="listConfig.columns"
- :loading="loading"
- :index-row="false"
- @action-event="handleAction"
- @sort-change="handleSortChange"
- @pagination-change="handlePaginationChange"
- >
- <template slot="item-symbol">
- <p style="width:60px;height:60px;border: 2px solid #409eff;border-radius: 100%;font-size: 48px;color:#409eff;font-size:30px;line-height: 60px;">办结</p>
- </template>
- <template slot="item-detail-name">
- <span></span>
- </template>
- <template slot="item-detail-partyTypeName">
- <span></span>
- </template>
- <!-- <template slot="item-detail-createTime">
- <span></span>
- </template>
- <template slot="item-detail-taskName">
- <span></span>
- </template>
- <template slot="item-detail-completeTime">
- <span></span>
- </template>
- <template slot="item-detail-curNode">
- <span></span>
- </template>
- <template slot="item-detail-status">
- <span></span>
- </template>
- </ibps-card-list>
- <bpmn-formrender
- :visible="dialogFormVisible"
- :instance-id="instanceId"
- @callback="search"
- @close="visible => dialogFormVisible = visible"
- />
- </ibps-layout>
- </div> -->
- </template>
- <script>
- import { handled } from '@/api/platform/office/bpmReceived'
- import { statusOptions, status } from '@/business/platform/bpmn/constants'
- import ActionUtils from '@/utils/action'
- import FixHeight from '@/mixins/height'
- import IbpsTypeTree from '@/business/platform/cat/type/tree'
- import BpmnFormrender from '@/business/platform/bpmn/form/dialog'
- export default {
- components: {
- IbpsTypeTree,
- BpmnFormrender,
- 'ibps-type-tree': () => import('@/business/platform/cat/type/tree'),
- 'ibps-card-list': () => import('@/components/ibps-card-list/list'),
- 'form-builder': () => import('@/business/platform/form/formbuilder/dialog'),
- 'formrender-preview': () => import('@/business/platform/form/formrender/preview/index')
- },
- mixins: [FixHeight],
- data() {
- return {
- width: 220,
- height: 500,
- title:'办结的事务',
- // height: document.clientHeight,
- query: '',
- typeId: '',
- pkKey: 'id', // 主键 如果主键不是pk需要传主键
- loading: false,
- dialogFormVisible: false,
- copyDialogFormVisible: false,
- rightsDialogFormVisible: false,
- formbuilderDialogVisible: false,
- formrenderDialogVisible: false,
- importFormVisible: false,
- formPrintDialogVisible: false,
- instanceId: '', // 编辑dialog需要使用
- statusOptions: [],
- editId: '',
- formKey: '',
- searchField: '',
- searchName: 'Q^subject_^SL',
- listData: [],
- listConfig: {
- // 工具栏
- toolbars: [
- { key: 'search' }
- ],
- // 查询条件
- searchForm: {
- forms: [
- { prop: 'Q^subject_^SL', name: 'Q^inst.subject_^SL', label: '请求标题', itemWidth: 200 },
- { prop: 'Q^proc_def_name_^SL', name: 'Q^inst.proc_def_name_^SL', label: '流程名称', itemWidth: 200 },
- { prop: 'Q^status_^S',
- name: 'Q^inst.status_^S',
- label: '状态',
- itemWidth: 200,
- labelWidth: 70,
- fieldType: 'select',
- options: status
- },
- {
- prop: ['Q^create_time_^DL', 'Q^create_time_^DG'],
- name: ['Q^inst.create_time_^DL', 'Q^inst.create_time_^DG'],
- label: '创建时间',
- fieldType: 'daterange'
- }
- ]
- },
- // 表格字段配置
- columns: [
- { prop: 'taskSubjectName', label: '请求标题', link: 'dialog' },
- { prop: 'procDefName', label: '流程名称', width: 200 },
- { prop: 'createTime', label: '创建时间', width: 150 },
- { prop: 'status', label: '状态', tags: statusOptions, width: 140 }
- ]
- },
- pagination: {},
- sorts: {}
- }
- },
- created() {
- this.loadData()
- },
- methods: {
- /**
- * 加载数据
- */
- loadData() {
- this.loading = true
- handled(this.getFormatParams()).then(response => {
- response.data.dataResult.forEach((item) => {
- const taskSubject = item.subject.split('#')
- this.$set(item, 'taskSubjectName', taskSubject[0] +'#'+ taskSubject[1]+'#')
- })
- ActionUtils.handleListData(this, response.data)
- this.loading = false
- }).catch(() => {
- this.loading = false
- })
- },
- /**
- * 获取格式化参数
- */
- getFormatParams() {
- const params = this.$refs['crud'] ? this.$refs['crud'].getSearcFormData() : {}
- params['end'] = '1'
- if (this.$utils.isNotEmpty(this.typeId)) {
- params['Q^TYPE_ID_^S'] = this.typeId
- }
- return ActionUtils.formatParams(
- params,
- this.pagination,
- this.sorts)
- },
- /**
- * 处理分页事件
- */
- handlePaginationChange(page) {
- ActionUtils.setPagination(this.pagination, page)
- this.loadData()
- },
- /**
- * 处理排序
- */
- handleSortChange(sort) {
- ActionUtils.setSorts(this.sorts, sort)
- this.loadData()
- },
- search() {
- this.loadData()
- },
- /**
- * 重置查询条件
- */
- reset() {
- this.$refs['crud'].handleReset()
- },
- /**
- * 点击表格
- */
- handleLinkClick(data) {
- this.instanceId = data.id || ''
- this.dialogFormVisible = true
- },
- /**
- * 处理按钮事件
- */
- handleAction(command, position, selection, data) {
- switch (command) {
- case 'search':// 查询
- ActionUtils.setFirstPagination(this.pagination)
- this.search()
- break
- case 'add':// 添加
- this.handleEdit()
- break
- case 'edit':// 编辑
- this.handleEdit(selection)
- break
- default:
- break
- }
- },
- /**
- * 编辑
- */
- handleEdit(id) {
- this.instanceId = id
- this.dialogFormVisible = true
- },
- handleNodeClick(typeId) {
- this.typeId = typeId
- this.loadData()
- },
- handleExpandCollapse(isExpand) {
- this.width = isExpand ? 230 : 30
- }
- }
- }
- </script>
- <style scoped>
- .ibps-layout >>> .container-component{
- position: absolute;
- top: 0px;
- right: 0;
- bottom: 0px;
- left: 220px!important;}
- .ibps-card-list-container >>> .ibps-card-list--picture-card{display: block;}
- </style>
|