You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

146 lines
4.0 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<div class="allHeight">
<Spin :spinning="loading" class="allHeight">
<Table :data-source="dataSource"
class="ant-table-striped"
:columns="column"
bordered
:scroll="{ y: 600 ,x:1410}"
:pagination="pagination"
:total="dataNum"
>
<template #bodyCell="{ column, record }">
<template v-if="column.dataIndex == 'Title'">
<a @click="openToDo(record.FK_Flow, record.WorkID, record.FK_Node)">{{ record.Title }}</a>
</template>
<template v-else-if="column.dataIndex == 'WFState'">
<div v-if="record.WFState == 2" style="color: green;">待办</div>
<div v-else-if="record.WFState == 5" style="color: red;">退回</div>
<div v-else-if="record.WFState == 1" style="color: orange;">草稿</div>
<div v-else-if="record.WFState == 0">空白</div>
<div v-else-if="record.WFState == 3" style="color: green;">已完成</div>
<div v-else>状态码:{{ record.WFState }}</div>
</template>
</template>
</Table>
<!-- <div class="total">总计:{{ dataNum }}条</div> -->
</Spin>
</div>
</template>
<script lang="ts" setup>
import { useUserStore } from '@/stores/user';
import { ccbpmPortURL } from '@/utils/env';
import{ Table,Spin, Button, Input,Form , FormItem, RangePicker} from 'ant-design-vue';
import type { ColumnType } from 'ant-design-vue/lib/table';
import { Search_Init } from '@/api/flow';
import { computed, ref } from 'vue';
import { useRoute } from 'vue-router';
import dayjs, {Dayjs} from 'dayjs';
type RangeValue = [Dayjs, Dayjs];
const route = useRoute();
const scop = ref<string>('');
const loading = ref(false);
const dataSource = ref<any>([]);
const dataNum = ref<number>();
const userStore = useUserStore();
const column:ColumnType[] = [
{
title: ' # ',
customRender:({value,text,record,index})=>{
return index+1;
},
width:52,
fixed:'left',
},
{
title: '标题',
dataIndex: 'Title',
key: 'Title',
fixed:'left',
width:327,
},{
title: '发起人',
dataIndex: 'StarterName',
key: 'StarterName',
width: 81,
},{
title: '发起日期',
dataIndex: 'RDT',
key: 'RDT',
width: 171,
},{
title: '停留节点',
dataIndex: 'NodeName',
key: 'NodeName',
width: 141,
},{
title: '状态',
dataIndex: 'WFState',
key: 'WFState',
width: 100,
},{
title: '当前处理人',
dataIndex: 'TodoEmps',
key: 'TodoEmps',
customRender:({value})=>{
const names = value.split(';')
const nameArr:string[] = [];
names.forEach((item:string) => {
nameArr.push(item.split(',')[1]);
});
let str = nameArr.join('');
str = str.slice(0,str.length-1);
return str;
},
},{
title: '应完成日期',
dataIndex: 'SDT',
key: 'SDT',
width:171,
},
];
const key = ref('');
const RDT = ref<RangeValue>();
const current = ref<number>(1);
const pagination = computed(() => ({
total: dataNum.value,
current: current.value,
pageSize:20,
onChange:(page:number,pageSize:number)=>{
pagination.value.current = page
console.log(page,pageSize)
InitPage();
},
}));
const InitPage = () => {
loading.value = true;
scop.value = route.meta.scop as string;
Search_Init(key.value,'','', '0',pagination.value.current).then((res:any)=>{
console.log(res);
dataSource.value = res?.gwls;
dataNum.value = parseInt(res?.count[0].CC);
loading.value = false;
})
};
const openToDo = (flowNo: string, WorkID: string, NodeNo: string) => {
const url = ccbpmPortURL + `DoWhat=DealWork&UserNo=${userStore.webUser.No}&WorkID=${WorkID}&FK_Flow=${flowNo}`;
window.open(url);
};
InitPage();
</script>
<style lang="less">
.ant-spin-nested-loading{
max-height: 100%;
.ant-spin-container{
max-height: 100%;
}
}
.allHeight{
height: 100%;
}
.total{
height: 40px;
margin-top: 20px;
}
</style>