Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
A
admin-ci-test
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
test-ci
admin-ci-test
Commits
99c7bc81
提交
99c7bc81
authored
9月 13, 2023
作者:
龚洪江
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
功能:确认订单,云享金,佣金,商城订单布局调整
上级
18265dd1
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
26 行增加
和
13 行删除
+26
-13
fddInterfaceType.ts
src/api/interface/fddInterfaceType.ts
+1
-1
index.tsx
src/components/layout/title/index.tsx
+4
-2
index.tsx
...productOrder/orderDetail/comp/detailInformation/index.tsx
+0
-9
index.scss
.../productOrder/orderDetail/comp/detailPurchaser/index.scss
+10
-0
index.tsx
...e/productOrder/orderDetail/comp/detailPurchaser/index.tsx
+5
-1
index.tsx
...age/productOrder/orderList/components/sureOrder/index.tsx
+6
-0
没有找到文件。
src/api/interface/fddInterfaceType.ts
浏览文件 @
99c7bc81
...
...
@@ -14,7 +14,7 @@ export type userFddInfoType = InterFunction<
accountType
:
number
;
createTime
:
string
;
updateTime
:
string
;
}
}
[]
>
;
// fdd-上传合同
...
...
src/components/layout/title/index.tsx
浏览文件 @
99c7bc81
...
...
@@ -25,7 +25,7 @@ export function TitleView() {
// 菜单栏是否收起
const
[
isActive
,
setIsActive
]
=
useState
(
false
);
// fdd实名认证信息
const
[
fddAuthInfo
,
setFddAuthInfo
]
=
useState
<
fddAuthType
>
();
const
[
fddAuthInfo
,
setFddAuthInfo
]
=
useState
<
fddAuthType
[
0
]
>
();
// 用户信息
const
{
userInfo
}
=
useSelector
((
state
:
any
)
=>
state
.
UserInfo
);
...
...
@@ -37,7 +37,9 @@ export function TitleView() {
// 获取fdd实名认证信息
const
getAppUserFddInfo
=
()
=>
{
FddInterfaceAPI
.
getAppUserFddInfo
({
port
:
1
}).
then
(({
result
})
=>
{
setFddAuthInfo
(
result
);
if
(
result
)
{
setFddAuthInfo
(
result
.
find
((
v
)
=>
v
.
accountType
===
2
));
}
});
};
...
...
src/pages/orderManage/productOrder/orderDetail/comp/detailInformation/index.tsx
浏览文件 @
99c7bc81
...
...
@@ -79,15 +79,6 @@ const DetailInformation: React.FC<PropsType> = (props) => {
<div className='detail-text'>
<span className='item'>订单编号:{detail?.orderNo}</span>
<span className='item'>创建时间:{detail?.createTime}</span>
{/*<span className={'item'} style={{ display: 'none' }}>*/}
{/* 合同编号:UAV202334741131*/}
{/*</span>*/}
{/*<span className={'item'}>*/}
{/* 订单租期:*/}
{/* {dayjs(detail?.startDate).format('YYYY-MM-DD')}*/}
{/* {' ~ '}*/}
{/* {dayjs(detail?.endDate).format('YYYY-MM-DD')}*/}
{/*</span>*/}
</div>
<Table
size='small'
...
...
src/pages/orderManage/productOrder/orderDetail/comp/detailPurchaser/index.scss
0 → 100644
浏览文件 @
99c7bc81
.remark
{
display
:
flex
;
.label
{
white-space
:
nowrap
;
}
.value
{
line-height
:
15px
;
}
}
src/pages/orderManage/productOrder/orderDetail/comp/detailPurchaser/index.tsx
浏览文件 @
99c7bc81
...
...
@@ -6,6 +6,7 @@ import { contractStatusList } from '~/utils/dictionary';
import
{
FddInterfaceAPI
}
from
'~/api'
;
import
{
decode
}
from
'js-base64'
;
import
FileSaver
from
'file-saver'
;
import
'./index.scss'
;
// 接口返回的类型
type
DataType
=
InterDataType
<
mallOrderDetailType
>
;
...
...
@@ -42,7 +43,10 @@ const DetailPurchaser: React.FC<PropsType> = ({ detail }) => {
<div className='detail-text'>UID:{detail?.userAccountId}</div>
<div className='detail-text'>姓名: {detail?.userName || detail?.nickname}</div>
<div className='detail-text'>手机号:{detail?.phoneNum} </div>
<div className='detail-text'>备注:{detail?.userRemark}</div>
<div className='detail-text remark'>
<div className='label'>备注:</div>
<div className='value'>{detail?.userRemark}</div>
</div>
{detail?.contractInfoDTO ? (
<div>
<div className='detail-title'>合同信息</div>
...
...
src/pages/orderManage/productOrder/orderList/components/sureOrder/index.tsx
浏览文件 @
99c7bc81
...
...
@@ -218,6 +218,12 @@ const SureOrder: FC<ModalProps & selfProps> = ({ open, onOk, onCancel, mallOrder
>
<
Input
placeholder=
'请输入实付总额'
suffix=
'元'
maxLength=
{
30
}
/>
</
Form
.
Item
>
<
Form
.
Item
label=
'云享金'
>
<
Input
placeholder=
'请输入抵扣云享金'
suffix=
'元'
/>
</
Form
.
Item
>
<
Form
.
Item
label=
'佣金'
>
<
Input
placeholder=
'请输入抵扣佣金'
suffix=
'元'
/>
</
Form
.
Item
>
<
Form
.
Item
label=
'订单交期'
name=
'deliveryTime'
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论