Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
C
chinafrica
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
zhengfg
chinafrica
Commits
adfd7fd4
提交
adfd7fd4
authored
4月 21, 2020
作者:
zgy
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
新增英文版订单
上级
6b0900e8
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
1337 行增加
和
2 行删除
+1337
-2
TbCfOrderController.java
...ain/java/com/platform/controller/TbCfOrderController.java
+2
-2
tbcforderEnlist.html
...min/src/main/webapp/WEB-INF/page/sys/tbcforderEnlist.html
+404
-0
common.js
platform-admin/src/main/webapp/js/common.js
+39
-0
tbcforderEnList.js
platform-admin/src/main/webapp/js/sys/tbcforderEnList.js
+892
-0
没有找到文件。
platform-admin/src/main/java/com/platform/controller/TbCfOrderController.java
浏览文件 @
adfd7fd4
...
...
@@ -248,8 +248,8 @@ public class TbCfOrderController extends AbstractController {
public
R
orderBasic
(
@PathVariable
(
"orderId"
)
String
orderId
)
{
//查询列表数据
OrderBasicVo
orderBasicVo
=
tbCfOrderListService
.
queryorderBasic
(
orderId
);
orderBasicVo
.
setAtcTime
(
"35天"
);
orderBasicVo
.
setCountry
(
"赞比亚"
);
orderBasicVo
.
setAtcTime
(
"35天
(day)
"
);
orderBasicVo
.
setCountry
(
"赞比亚
(Zambia)
"
);
orderBasicVo
.
setSource
(
"APP"
);
orderBasicVo
.
setDeliveryOrderList
(
tbCfOrderListService
.
queryOrderDeliveryList
(
orderId
));
return
R
.
ok
().
put
(
"orderBasicVo"
,
orderBasicVo
);
...
...
platform-admin/src/main/webapp/WEB-INF/page/sys/tbcforderEnlist.html
0 → 100644
浏览文件 @
adfd7fd4
差异被折叠。
点击展开。
platform-admin/src/main/webapp/js/common.js
浏览文件 @
adfd7fd4
...
...
@@ -677,6 +677,25 @@ orderStatusFormat = function (cellvalue) {
return
returnStr
;
};
orderStatusEnFormat
=
function
(
cellvalue
)
{
var
returnStr
=
"unknown"
;
if
(
!!
cellvalue
)
{
if
(
cellvalue
==
'0'
)
{
returnStr
=
"cancel"
;
}
else
if
(
cellvalue
==
'10'
)
{
returnStr
=
"unpaid"
;
}
else
if
(
cellvalue
==
'20'
)
{
returnStr
=
"paid"
;
}
else
if
(
cellvalue
==
'40'
)
{
returnStr
=
"shipped"
;
}
else
if
(
cellvalue
==
'50'
)
{
returnStr
=
"successful trade"
;
}
else
if
(
cellvalue
==
'60'
)
{
returnStr
=
"transaction closed"
;
}
}
return
returnStr
;
};
/**
* 支付状态翻译 ,10未支付,20已支付
...
...
@@ -712,6 +731,26 @@ deliveryFlagFormat = function (cellvalue) {
}
return
returnStr
;
}
/**
* 快递状态
* @param cellvalue
* @returns {string}
*/
deliveryFlagEnFormat
=
function
(
cellvalue
)
{
var
returnStr
=
"unshipped"
if
(
!!
cellvalue
||
cellvalue
==
'0'
)
{
if
(
cellvalue
==
'10'
)
{
returnStr
=
"shipped"
;
}
else
if
(
cellvalue
==
'20'
)
{
returnStr
=
"China warehouse"
;
}
else
if
(
cellvalue
==
'40'
)
{
returnStr
=
"Africa warehouse"
;
}
else
if
(
cellvalue
==
'50'
)
{
returnStr
=
"signed"
;
}
}
return
returnStr
;
}
/**
* 用户类型翻译
* @param cellvalue
...
...
platform-admin/src/main/webapp/js/sys/tbcforderEnList.js
0 → 100644
浏览文件 @
adfd7fd4
差异被折叠。
点击展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论