6.15 供应商购标支付,支付状态为支付中时,增加“继续支付”按钮

This commit is contained in:
jl-zhoujl2
2023-06-15 10:58:46 +08:00
parent 9938b258e9
commit 1fd8fc879f
2 changed files with 6 additions and 5 deletions

View File

@ -10,8 +10,8 @@ import { getProMethod, getSessionProjectData } from '@/utils/session';
import { isEmpty } from 'lodash';
import { getAllFlowName, getAllFlowNameByRoomType, getbidQualification, moduleName } from '@/utils/FlowUtils';
import { btnAuthority } from '@/utils/authority';
import { ExclamationCircleOutlined } from '@ant-design/icons';
import { DoubleRightOutlined, ExclamationCircleOutlined } from '@ant-design/icons';
import { history } from 'umi';
const fontColor = {
color: 'red'
@ -19,7 +19,7 @@ const fontColor = {
const orderState = {
0: '未支付',
1: '支付中',
1: <><div style={{ paddingTop: '5px' }}></div><Button type="text" onClick={() => { history.push('/Finance/cost') }} style={{ padding: 0 }}><DoubleRightOutlined /></Button></>,
2: '已支付',
}

View File

@ -9,7 +9,8 @@ import { cancelOrder, getByOrderId, paySuccess, payTenderFile, saveGenerateOrder
import { getSessionProjectData } from '@/utils/session';
import { isEmpty } from 'lodash';
import { btnAuthority } from '@/utils/authority';
import { ExclamationCircleOutlined } from '@ant-design/icons';
import { ExclamationCircleOutlined, DoubleRightOutlined } from '@ant-design/icons';
import { history } from 'umi';
const fontColor = {
@ -18,7 +19,7 @@ const fontColor = {
const orderState = {
0: '未支付',
1: '支付中',
1: <><div style={{ paddingTop: '5px' }}></div><Button type="text" onClick={() => { history.push('/Finance/cost') }} style={{ padding: 0 }}><DoubleRightOutlined /></Button></>,
2: '已支付',
4: '确认到账',
}