|
@@ -121,9 +121,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="状态" width="120">
|
|
|
<template #default="scope">{{
|
|
|
- scope.row.contractSubFlowStatus === null
|
|
|
- ? '未签'
|
|
|
- : getDictLabel(DICT_TYPE.CONTRACT_SIGN_STATUS, scope.row.contractSubFlowStatus)
|
|
|
+ scope.row.contractSubFlowStatus === 90 ? '已签' : '未签'
|
|
|
}}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" fixed="right" align="center" width="200">
|
|
@@ -133,7 +131,7 @@
|
|
|
<span
|
|
|
@click="operateClick(scope.row)"
|
|
|
style="margin-left: 10px"
|
|
|
- v-if="scope.row.isSign == 1 && scope.row.contractSubFlowStatus == 1"
|
|
|
+ v-if="scope.row.isSign == 1 && scope.row.contractSubFlowStatus == 90"
|
|
|
>
|
|
|
查看合同
|
|
|
</span>
|
|
@@ -162,7 +160,6 @@ import { PageParam } from '@/interface/common'
|
|
|
import { getAssetURL } from '@/utils/auth'
|
|
|
import { openFlow, openProcessFlow } from '@/utils/flow'
|
|
|
import request from '@/config/axios'
|
|
|
-import { DICT_TYPE, getDictLabel } from '@/utils/dict'
|
|
|
import { CACHE_KEY, useCache } from '@/hooks/web/useCache'
|
|
|
|
|
|
defineOptions({ name: 'ContractSubOut' })
|