123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <template>
- <div class="hc-layout-box">
- <HcCard :scrollbar="false" action-size="lg">
- <template #header>
- <div class="w-64">
- <el-input
- v-model="searchForm.evisaUserName" block clearable placeholder="请输入用户名称检索"
- size="large" @keyup="keyUpEvent"
- />
- </div>
- <div class="w-32 ml-3">
- <el-select
- v-model="searchForm.contractId" block clearable placeholder="合同段" size="large"
- @change="ContractIdChange"
- >
- <el-option v-for="item in contractList" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </div>
-
- <div class="w-64 ml-3">
- <HcDatePicker :dates="betweenTime" clearable size="large" @change="betweenTimeUpdate" />
- </div>
- <div class="w-56 ml-3">
- <el-input
- v-model="searchForm.queryValue" block clearable placeholder="请输入名称关键词检索"
- size="large" @keyup="keyUpEvent"
- />
- </div>
- <div class="ml-2">
- <el-button size="large" type="primary" @click="searchClick">
- <HcIcon name="search-2" />
- <span>搜索</span>
- </el-button>
- </div>
- </template>
- <template #extra>
- <HcTooltip keys="tasks_sign_key_renewal">
- <el-button hc-btn type="primary" :loading="resignLoading" :disabled="tableCheckedKeys.length == 0" @click="resignClick">
- <HcIcon name="restart" />
- <span>一键重签</span>
- </el-button>
- </HcTooltip>
- </template>
- <HcTable
- ref="tableListRef" :column="tableListColumn" :datas="tableData" :loading="tableLoading" is-check
- @selection-change="tableSelectionChange"
- >
- <template #taskStatusName="{ row }">
- <el-tag
- v-if="row?.taskStatusName"
- :type="`${row.taskStatusName === '已审批' ? 'success' : row.taskStatusName === '已废除' ? 'warning' : 'info'}`" class="mx-1" effect="dark"
- >
- {{ row.taskStatusName }}
- </el-tag>
- </template>
- <template #taskApproveUserNamesList="{ row }">
- <template v-for="item in row.taskApproveUserNamesList">
- <el-tag
- v-if="item.taskUserName"
- :type="`${item.evisaStatus === 2 ? 'success' : item.evisaStatus === 3 ? 'warning' : item.evisaStatus === 999 ? 'danger' : 'info'}`" class="mx-1" effect="dark"
- >
- {{ item.taskUserName }}
- </el-tag>
- </template>
- </template>
- </HcTable>
- <template #action>
- <HcPages :pages="searchForm" @change="pageChange" />
- </template>
- </HcCard>
- </div>
- </template>
- <script setup>
- import { onMounted, ref } from 'vue'
- import { useAppStore } from '~src/store'
- import { arrToId, getArrValue, getObjValue } from 'js-fast-way'
- import signApi from '~api/tasks/sign'
- //变量
- const useAppState = useAppStore()
- const projectId = ref(useAppState.getProjectId)
- const contractId = ref(useAppState.getContractId)
- const projectInfo = ref(useAppState.getProjectInfo)
- //渲染完成
- onMounted(() => {
- const project = getObjValue(projectInfo.value)
- contractList.value = getArrValue(project['contractInfoList'])
- if (contractList.value.length > 0) {
- searchForm.value.contractId = contractList.value[0].id
- }
- getTableData()
- })
- const tasksData = ref([])
- const statusData = ref([])
- //合同段
- const contractList = ref([])
- const ContractIdChange = () => {
- getTableData()
- }
- //日期时间被选择
- const betweenTime = ref(null)
- const betweenTimeUpdate = ({ val, arr }) => {
- betweenTime.value = arr
- searchForm.value.startTimeValue = val['start']
- searchForm.value.endTimeValue = val['end']
- }
- //搜索表单
- const searchForm = ref({
- queryValue: null, evisaUserName: null, contractId: null, startTimeValue: null, endTimeValue: null,
- current: 1, size: 20, total: 0,
- })
- //回车搜索
- const keyUpEvent = (e) => {
- if (e.key === 'Enter') {
- searchForm.value.current = 1
- getTableData()
- }
- }
- //重新搜索数据
- const searchClick = () => {
- searchForm.value.current = 1
- getTableData()
- }
- //分页被点击
- const pageChange = ({ current, size }) => {
- searchForm.value.current = current
- searchForm.value.size = size
- getTableData()
- }
- //获取数据
- const tableLoading = ref(false)
- const tableData = ref([])
- const getTableData = async () => {
- tableLoading.value = true
- const { error, code, data } = await signApi.eVisaFailedPage({
- ...searchForm.value,
- })
- //判断状态
- tableLoading.value = false
- if (!error && code === 200) {
- tableData.value = getArrValue(data['records'])
- searchForm.value.total = data['total'] || 0
- } else {
- tableData.value = []
- searchForm.value.total = 0
- }
- }
- //多选
- const tableListRef = ref(null)
- const tableCheckedKeys = ref([])
- const tableSelectionChange = (rows) => {
- tableCheckedKeys.value = rows.filter((item) => {
- return (item ?? '') !== ''
- })
- }
- const tableListColumn = ref([
- { key: 'taskName', name: '流程名称' },
- { key: 'taskStatusName', name: '任务状态' },
- { key: 'evisaStatusName', name: '电签状态' },
- { key: 'evisaUpdateDate', name: '审批时间' },
- { key: 'evisaFailedInfo', name: '电签失败原因' },
- { key: 'taskReportUserName', name: '上报人' },
- { key: 'taskApproveUserNamesList', name: '电签任务人' },
- ])
- //一键重签
- const resignLoading = ref(false)
- const resignClick = async ()=>{
- const taskIds = arrToId(tableCheckedKeys.value)
- resignLoading.value = true
- const { error, code, msg } = await signApi.reSigningEVisa({
- contractId:searchForm.value.contractId,
- projectId:projectId.value,
- taskIds:taskIds,
- })
- //判断状态
- resignLoading.value = false
- if (!error && code === 200) {
- window.$message.success(msg)
- getTableData()
- }
-
- }
- </script>
- <style lang="scss" scoped>
- .hc-layout-box {
- position: relative;
- height: 100%;
- }
- </style>
|