Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
C
chinafrica
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
zhengfg
chinafrica
Commits
5b840a11
提交
5b840a11
authored
1月 02, 2020
作者:
luojie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
订单修改完成。
上级
ffab217b
全部展开
显示空白字符变更
内嵌
并排
正在显示
16 个修改的文件
包含
370 行增加
和
132 行删除
+370
-132
TbCfOrderController.java
...ain/java/com/platform/controller/TbCfOrderController.java
+20
-0
TbCfOrderDao.java
...rm-admin/src/main/java/com/platform/dao/TbCfOrderDao.java
+1
-2
TbCfOrderListDao.java
...dmin/src/main/java/com/platform/dao/TbCfOrderListDao.java
+4
-1
TbCfOrderEntity.java
...in/src/main/java/com/platform/entity/TbCfOrderEntity.java
+12
-0
TbCfOrderListService.java
.../main/java/com/platform/service/TbCfOrderListService.java
+4
-1
TbCfOrderService.java
.../src/main/java/com/platform/service/TbCfOrderService.java
+1
-0
TbCfOrderListServiceImpl.java
...a/com/platform/service/impl/TbCfOrderListServiceImpl.java
+13
-1
TbCfOrderServiceImpl.java
.../java/com/platform/service/impl/TbCfOrderServiceImpl.java
+1
-1
OrderBasicVo.java
...orm-admin/src/main/java/com/platform/vo/OrderBasicVo.java
+18
-0
PlatformOrderVo.java
...-admin/src/main/java/com/platform/vo/PlatformOrderVo.java
+12
-15
TbCfOrderDao.xml
...dmin/src/main/resources/com/platform/dao/TbCfOrderDao.xml
+2
-1
TbCfOrderListDao.xml
.../src/main/resources/com/platform/dao/TbCfOrderListDao.xml
+22
-2
tbcforderlist.html
...admin/src/main/webapp/WEB-INF/page/sys/tbcforderlist.html
+113
-63
common.js
platform-admin/src/main/webapp/js/common.js
+2
-0
tbcforder.js
platform-admin/src/main/webapp/js/sys/tbcforder.js
+4
-4
tbcforderList.js
platform-admin/src/main/webapp/js/sys/tbcforderList.js
+141
-41
没有找到文件。
platform-admin/src/main/java/com/platform/controller/TbCfOrderController.java
浏览文件 @
5b840a11
...
...
@@ -231,4 +231,24 @@ public class TbCfOrderController {
tbCfOrderListService
.
closeOrder
(
orderId
);
return
R
.
ok
();
}
/**
* 备注订单
*/
@GetMapping
(
"/memoOrder/{orderId}"
)
@RequiresPermissions
(
"tbcforder:info"
)
@ResponseBody
public
R
memoOrder
(
@PathVariable
(
"orderId"
)
String
orderId
)
{
OrderBasicVo
memoOrderVo
=
tbCfOrderListService
.
getMemoOrder
(
orderId
);
return
R
.
ok
().
put
(
"data"
,
memoOrderVo
);
}
/**
* 保存或更新备注信息
*/
@PostMapping
(
"/memoOrder"
)
@RequiresPermissions
(
"tbcforder:info"
)
@ResponseBody
public
R
saveOrUpdatemMemoOrder
(
@RequestBody
OrderBasicVo
memoOrderVo
)
{
int
res
=
tbCfOrderListService
.
saveOrUpdatemMemoOrder
(
memoOrderVo
);
return
R
.
ok
().
put
(
"result"
,
res
);
}
}
platform-admin/src/main/java/com/platform/dao/TbCfOrderDao.java
浏览文件 @
5b840a11
...
...
@@ -2,8 +2,6 @@ package com.platform.dao;
import
com.platform.entity.TbCfItemDetailEntity
;
import
com.platform.entity.TbCfOrderEntity
;
import
com.platform.entity.TbCfPlatformOrderEntity
;
import
org.apache.ibatis.annotations.Param
;
import
java.math.BigDecimal
;
import
java.util.List
;
...
...
@@ -74,4 +72,5 @@ public interface TbCfOrderDao extends BaseDao<TbCfOrderEntity> {
BigDecimal
queryOrderPriceYesterday
();
int
updateOrder
(
String
orderId
);
}
platform-admin/src/main/java/com/platform/dao/TbCfOrderListDao.java
浏览文件 @
5b840a11
package
com
.
platform
.
dao
;
import
com.platform.entity.TbCfOrderListEntity
;
import
com.platform.utils.Query
;
import
com.platform.vo.DeliveryOrderVo
;
import
com.platform.vo.OrderBasicVo
;
...
...
@@ -36,4 +35,8 @@ public interface TbCfOrderListDao extends BaseDao<TbCfOrderListEntity> {
int
queryTotal
(
Map
<
String
,
Object
>
map
);
int
closeOrder
(
String
orderId
);
OrderBasicVo
getMemoOrder
(
String
orderId
);
int
saveOrUpdatemMemoOrder
(
OrderBasicVo
memoOrderVo
);
}
platform-admin/src/main/java/com/platform/entity/TbCfOrderEntity.java
浏览文件 @
5b840a11
...
...
@@ -137,6 +137,18 @@ public class TbCfOrderEntity implements Serializable {
* 商品品名
*/
private
String
descripitionName
;
/**
* 订单备注
*/
private
String
remarkInfo
;
public
String
getRemarkInfo
()
{
return
remarkInfo
;
}
public
void
setRemarkInfo
(
String
remarkInfo
)
{
this
.
remarkInfo
=
remarkInfo
;
}
/**
* 设置:订单id
...
...
platform-admin/src/main/java/com/platform/service/TbCfOrderListService.java
浏览文件 @
5b840a11
package
com
.
platform
.
service
;
import
com.platform.entity.TbCfOrderListEntity
;
import
com.platform.utils.Query
;
import
com.platform.vo.DeliveryOrderVo
;
import
com.platform.vo.OrderBasicVo
;
...
...
@@ -40,4 +39,8 @@ public interface TbCfOrderListService {
int
queryTotal
(
Map
<
String
,
Object
>
map
);
int
closeOrder
(
String
orderId
);
OrderBasicVo
getMemoOrder
(
String
orderId
);
int
saveOrUpdatemMemoOrder
(
OrderBasicVo
memoOrderVo
);
}
platform-admin/src/main/java/com/platform/service/TbCfOrderService.java
浏览文件 @
5b840a11
...
...
@@ -111,4 +111,5 @@ public interface TbCfOrderService {
BigDecimal
queryOrderPriceYesterday
();
int
deleteOrder
(
String
orderId
);
}
platform-admin/src/main/java/com/platform/service/impl/TbCfOrderListServiceImpl.java
浏览文件 @
5b840a11
...
...
@@ -3,12 +3,12 @@ package com.platform.service.impl;
import
com.platform.dao.TbCfOrderListDao
;
import
com.platform.entity.TbCfOrderListEntity
;
import
com.platform.service.TbCfOrderListService
;
import
com.platform.utils.Query
;
import
com.platform.vo.DeliveryOrderVo
;
import
com.platform.vo.OrderBasicVo
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.Map
;
...
...
@@ -57,4 +57,16 @@ public class TbCfOrderListServiceImpl implements TbCfOrderListService {
public
int
closeOrder
(
String
orderId
)
{
return
tbCfOrderListDao
.
closeOrder
(
orderId
);
}
@Override
public
OrderBasicVo
getMemoOrder
(
String
orderId
)
{
return
tbCfOrderListDao
.
getMemoOrder
(
orderId
);
}
@Override
public
int
saveOrUpdatemMemoOrder
(
OrderBasicVo
memoOrderVo
)
{
memoOrderVo
.
setUpdateTime
(
new
Date
());
return
tbCfOrderListDao
.
saveOrUpdatemMemoOrder
(
memoOrderVo
);
}
}
platform-admin/src/main/java/com/platform/service/impl/TbCfOrderServiceImpl.java
浏览文件 @
5b840a11
...
...
@@ -11,7 +11,6 @@ import com.platform.utils.IdUtil;
import
com.platform.utils.ShiroUtils
;
import
com.platform.utils.StringUtils
;
import
com.platform.vo.PlatformOrderVo
;
import
io.swagger.models.auth.In
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
...
...
@@ -123,6 +122,7 @@ public class TbCfOrderServiceImpl implements TbCfOrderService {
TbCfOrderEntity
tbCfOrderEntity
=
new
TbCfOrderEntity
();
tbCfOrderEntity
.
setOrderId
(
tbCfPlatformOrder
.
getOrderId
());
tbCfOrderEntity
.
setOrderStatus
(
OrderStatusEnum
.
SHIPPED
.
getValue
());
tbCfOrderEntity
.
setDeliveryFlag
(
DeliveryStatusEnum
.
PURCHASE
.
getValue
());
tbCfOrderDao
.
updates
(
tbCfOrderEntity
);
}
//更新发货时间,如果原值为空就更新,否则保留原值
...
...
platform-admin/src/main/java/com/platform/vo/OrderBasicVo.java
浏览文件 @
5b840a11
...
...
@@ -29,8 +29,26 @@ public class OrderBasicVo implements Serializable {
private
BigDecimal
realityPay
;
private
Date
orderTime
;
private
Integer
orderStatus
;
private
String
remarkInfo
;
private
Date
updateTime
;
public
Date
getUpdateTime
()
{
return
updateTime
;
}
public
void
setUpdateTime
(
Date
updateTime
)
{
this
.
updateTime
=
updateTime
;
}
public
String
getRemarkInfo
()
{
return
remarkInfo
;
}
public
void
setRemarkInfo
(
String
remarkInfo
)
{
this
.
remarkInfo
=
remarkInfo
;
}
public
Integer
getOrderStatus
()
{
return
orderStatus
;
}
...
...
platform-admin/src/main/java/com/platform/vo/PlatformOrderVo.java
浏览文件 @
5b840a11
...
...
@@ -56,6 +56,14 @@ public class PlatformOrderVo implements Serializable{
private
String
userName
;
public
String
getRelativeId
()
{
return
relativeId
;
}
public
void
setRelativeId
(
String
relativeId
)
{
this
.
relativeId
=
relativeId
;
}
public
String
getOrdersId
()
{
return
ordersId
;
}
...
...
@@ -64,15 +72,14 @@ public class PlatformOrderVo implements Serializable{
this
.
ordersId
=
ordersId
;
}
public
String
get
Relative
Id
()
{
return
relative
Id
;
public
String
get
Order
Id
()
{
return
order
Id
;
}
public
void
set
RelativeId
(
String
relative
Id
)
{
this
.
relativeId
=
relative
Id
;
public
void
set
OrderId
(
String
order
Id
)
{
this
.
orderId
=
order
Id
;
}
public
String
getpOrderId
()
{
return
pOrderId
;
}
...
...
@@ -105,7 +112,6 @@ public class PlatformOrderVo implements Serializable{
this
.
pDeliveryAddress
=
pDeliveryAddress
;
}
public
String
getDescripitionId
()
{
return
descripitionId
;
}
...
...
@@ -130,7 +136,6 @@ public class PlatformOrderVo implements Serializable{
this
.
realityPay
=
realityPay
;
}
public
String
getpExpressNumber
()
{
return
pExpressNumber
;
}
...
...
@@ -154,12 +159,4 @@ public class PlatformOrderVo implements Serializable{
public
void
setUserName
(
String
userName
)
{
this
.
userName
=
userName
;
}
public
String
getOrderId
()
{
return
orderId
;
}
public
void
setOrderId
(
String
orderId
)
{
this
.
orderId
=
orderId
;
}
}
platform-admin/src/main/resources/com/platform/dao/TbCfOrderDao.xml
浏览文件 @
5b840a11
...
...
@@ -287,7 +287,8 @@
<update
id=
"updates"
parameterType=
"com.platform.entity.TbCfOrderEntity"
>
update tb_cf_order
<set>
<if
test=
"orderStatus != null"
>
order_status = #{orderStatus}
</if>
<if
test=
"orderStatus != null"
>
order_status = #{orderStatus},
</if>
<if
test=
"deliveryFlag != null"
>
delivery_flag = #{deliveryFlag}
</if>
</set>
where order_id =#{orderId}
</update>
...
...
platform-admin/src/main/resources/com/platform/dao/TbCfOrderListDao.xml
浏览文件 @
5b840a11
...
...
@@ -115,7 +115,7 @@
select
r.order_item_id ordersId,
r
.order_id,
o
.order_id,
i.item_id,
o.order_no,
i.item_img,
...
...
@@ -166,7 +166,9 @@
c.coupon_id,
o.reality_pay,
o.order_time,
o.order_status
o.order_status,
o.remark_info,
o.update_time
from tb_cf_order o
LEFT JOIN tb_cf_finance f on f.order_id=o.order_id
LEFT JOIN tb_cf_coupon c on c.coupon_id=o.coupon_id
...
...
@@ -198,4 +200,22 @@
update tb_cf_order set order_status=60 where order_id=#{orderId}
</update>
<select
id=
"getMemoOrder"
resultType=
"com.platform.vo.OrderBasicVo"
>
select
order_id,
remark_info,
update_time
from tb_cf_order where order_id=#{orderId}
</select>
<update
id=
"saveOrUpdatemMemoOrder"
parameterType=
"com.platform.vo.OrderBasicVo"
>
update
tb_cf_order
<set>
<if
test=
"orderId != null"
>
order_id = #{orderId},
</if>
<if
test=
"remarkInfo != null"
>
remark_info= #{remarkInfo},
</if>
<if
test=
"updateTime != null"
>
update_time = #{updateTime},
</if>
</set>
where order_id=#{orderId}
</update>
</mapper>
\ No newline at end of file
platform-admin/src/main/webapp/WEB-INF/page/sys/tbcforderlist.html
浏览文件 @
5b840a11
...
...
@@ -68,6 +68,10 @@
margin-top
:
5px
;
display
:
contents
;
}
:after
,
:before
{
box-sizing
:
border-box
;
width
:
200px
;
}
</style>
</head>
<body>
...
...
@@ -144,7 +148,7 @@
<!--订单详情页 -->
<div
v-show=
"showOrderDesc"
:model=
"orderBasicVo"
style=
"height: 100%;"
>
<br/>
<Steps
:current=
"
basicOrder
Status"
>
<Steps
:current=
"
current
Status"
>
<Step
title=
"买家下单"
></Step>
<Step
title=
"买家付款"
></Step>
<Step
title=
"发货"
></Step>
...
...
@@ -167,8 +171,8 @@
<div
class=
"card-title"
>
<span>
当前订单状态:买家已下单,等待付款
</span>
<div
>
<i-Button
size=
"small"
type=
"warning"
>
关闭交易
</i-Button>
<i-Button
size=
"small"
type=
"info"
>
备注订单
</i-Button>
<i-Button
size=
"small"
type=
"warning"
@
click=
"closeOrder(orderIdData)"
>
关闭交易
</i-Button>
<i-Button
size=
"small"
type=
"info"
@
click=
"showMemoOrder(orderIdData)"
>
备注订单
</i-Button>
</div>
</div>
</div>
...
...
@@ -181,9 +185,9 @@
<div
class=
"card-title"
>
<span>
当前订单状态:订单已付款,等待发货
</span>
<div
>
<i-Button
size=
"small"
type=
"primary"
@
click=
"
showAgent(orderBasicVo.ordersId
)"
>
订单发货
</i-Button>
<i-Button
size=
"small"
type=
"warning"
>
关闭交易
</i-Button>
<i-Button
size=
"small"
type=
"info"
>
备注订单
</i-Button>
<i-Button
size=
"small"
type=
"primary"
@
click=
"
getDeliverys(orderIdData
)"
>
订单发货
</i-Button>
<i-Button
size=
"small"
type=
"warning"
@
click=
"closeOrder(orderIdData)"
>
关闭交易
</i-Button>
<i-Button
size=
"small"
type=
"info"
@
click=
"showMemoOrder(orderIdData)"
>
备注订单
</i-Button>
</div>
</div>
</div>
...
...
@@ -196,8 +200,8 @@
<div
class=
"card-title"
>
<span>
当前订单状态:订单已全部发货
</span>
<div
>
<i-Button
size=
"small"
type=
"warning"
>
关闭交易
</i-Button>
<i-Button
size=
"small"
type=
"info"
>
备注订单
</i-Button>
<i-Button
size=
"small"
type=
"warning"
@
click=
"closeOrder(orderIdData)"
>
关闭交易
</i-Button>
<i-Button
size=
"small"
type=
"info"
@
click=
"showMemoOrder(orderIdData)"
>
备注订单
</i-Button>
</div>
</div>
</div>
...
...
@@ -208,8 +212,8 @@
<div
class=
"card-title"
>
<span>
当前订单状态:订单交易成功!
</span>
<div
>
<i-Button
size=
"small"
type=
"warning"
>
关闭交易
</i-Button>
<i-Button
size=
"small"
type=
"info"
>
备注订单
</i-Button>
<i-Button
size=
"small"
type=
"warning"
@
click=
"closeOrder(orderIdData)"
>
关闭交易
</i-Button>
<i-Button
size=
"small"
type=
"info"
@
click=
"showMemoOrder(orderIdData)"
>
备注订单
</i-Button>
</div>
</div>
</div>
...
...
@@ -220,8 +224,8 @@
<div
class=
"card-title"
>
<span>
当前订单状态:订单交易关闭
</span>
<div
>
<i-Button
size=
"small"
type=
"warning"
>
删除订单
</i-Button>
<i-Button
size=
"small"
type=
"info"
>
备注订单
</i-Button>
<i-Button
size=
"small"
type=
"warning"
@
click=
"del(orderIdData)"
>
删除订单
</i-Button>
<i-Button
size=
"small"
type=
"info"
@
click=
"showMemoOrder(orderIdData)"
>
备注订单
</i-Button>
</div>
</div>
</div>
...
...
@@ -229,6 +233,10 @@
</Card>
</Col>
</section>
<section
class=
"order-recipients-information"
>
<h4>
备注信息
</h4>
<i-Table
:columns=
"memoColumns"
:data=
"memoData"
></i-Table>
</section>
<section
class=
"order-basic-information"
>
<h4>
基本信息
</h4>
<i-Table
:columns=
"basicInfoColumns"
:data=
"basicInfoData"
></i-Table>
...
...
@@ -237,10 +245,40 @@
<h4>
收件人信息
</h4>
<i-Table
:columns=
"recipientsColumns"
:data=
"recipientsData"
></i-Table>
</section>
<
section
class=
"order-recipients-information"
>
<
br/
>
<h4>
物流信息
</h4>
<i-Table
:columns=
"logisticsColumns"
:data=
"logisticsData"
></i-Table>
</section>
<table
class=
"table"
width=
"1680px"
>
<thread>
<tr
style=
"background-color: #e4e5e7"
>
<th>
订单编号
</th>
<th>
商品名称
</th>
<th>
商品图片
</th>
<th>
商品SKU
</th>
<th>
商品价格
</th>
<th>
商品数量
</th>
<th>
商品链接
</th>
<th>
代购状态
</th>
<th>
物流单号
</th>
</tr>
</thread>
<tr
v-for=
"(item,i) in deliveryOrderList"
align=
"center"
>
<td>
{{item.orderNo}}
</td>
<td>
{{item.itemTitle}}
</td>
<td>
<img
:src=
"item.itemImg"
height=
"100px"
width=
"100px"
alt=
"item.itemTitle"
/>
</td>
<td>
{{item.itemSku}}
</td>
<td>
$ {{item.itemPrice}}
</td>
<td>
{{item.itemNum}}
</td>
<td>
<span
style=
"color:blue;cursor: pointer;"
@
click=
"toProductLink(item.sourceItemId)"
>
商品链接
</span>
</td>
<td>
{{item.deliveryFlag}}
</td>
<td>
{{item.pExpressNumber}}
</td>
</tr>
</table>
<section
class=
"order-recipients-information"
>
<h4>
费用信息
</h4>
<i-Table
:columns=
"costColumns"
:data=
"costData"
></i-Table>
...
...
@@ -271,7 +309,7 @@
<table
class=
"table"
id=
"showLists"
width=
"1680px"
>
<thread>
<tr
style=
"background-color: mistyrose"
>
<th>
订单唯一ID
</th
>
<!-- <th>订单唯一ID</th>--
>
<th>
订单编号
</th>
<th>
商品名称
</th>
<th>
商品图片
</th>
...
...
@@ -285,7 +323,7 @@
</tr>
</thread>
<tr
v-for=
"(item,i) in tbCfOrderLists"
align=
"center"
>
<
td>
{{item.ordersId}}
</td
>
<
!-- <td>{{item.ordersId}}</td>--
>
<td>
{{item.orderNo}}
</td>
<td>
{{item.itemTitle}}
</td>
<td>
...
...
@@ -303,9 +341,21 @@
</tr>
</table>
<div>
<i-button
type=
"warning"
@
click=
"reload
Delivery
"
style=
"margin-left: 8px"
>
返回
</i-button>
<i-button
type=
"warning"
@
click=
"reload
ThisOrder(orderIdData)
"
style=
"margin-left: 8px"
>
返回
</i-button>
</div>
</div>
<!--备注订单-->
<el-dialog
title=
"备注订单"
:visible
.
sync=
"memoOrderVisible"
>
<el-form
ref=
"formValidate"
:model=
"memoOrder"
>
<el-form-item
label=
"备注详情"
:label-width=
"formLabelWidthOfMemoOrder"
>
<el-input
v-model=
"memoOrder.remarkInfo"
></el-input>
</el-form-item>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"memoOrderVisible = false"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"saveOrUpdatemMemoOrder"
>
提交
</el-button>
</div>
</el-dialog>
<!--代购信息-->
<el-dialog
title=
"代购信息"
:visible
.
sync=
"agentVisible"
>
<el-form
ref=
"formValidate"
:model=
"agentInfo"
>
...
...
@@ -338,7 +388,7 @@
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"agentVisible = false"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"saveOrUpdateAgentInfo"
>
保 存
</el-button>
<el-button
type=
"primary"
@
click=
"saveOrUpdateAgentInfo
(orderIdData)
"
>
保 存
</el-button>
</div>
</el-dialog>
</div>
...
...
platform-admin/src/main/webapp/js/common.js
浏览文件 @
5b840a11
...
...
@@ -139,7 +139,9 @@ function eyeImages(data) {
* @param name
*/
function
handleResetForm
(
vue
,
name
)
{
if
(
vue
.
$refs
[
name
]
!==
undefined
)
{
vue
.
$refs
[
name
].
resetFields
();
}
};
...
...
platform-admin/src/main/webapp/js/sys/tbcforder.js
浏览文件 @
5b840a11
...
...
@@ -331,7 +331,7 @@ let vm = new Vue({
}
});
},
/*获取订单的代购信息*
/
/* /!*获取订单的代购信息*!
/
getAgentInfo: function (ordersId) {
// debugger
Ajax.request({
...
...
@@ -362,9 +362,9 @@ let vm = new Vue({
}
}
});
},
},
*/
//新增或者修改代购信息
saveOrUpdateAgentInfo
:
function
()
{
/*
saveOrUpdateAgentInfo: function () {
let that = this;
if(vm.agentInfo.descripitionId){
Ajax.request({
...
...
@@ -390,7 +390,7 @@ let vm = new Vue({
alert("保存失败,请选择商品品名");
}
},
},
*/
reload
:
function
(
event
)
{
vm
.
showList
=
true
;
let
orderNo
=
vm
.
orderNo
;
...
...
platform-admin/src/main/webapp/js/sys/tbcforderList.js
浏览文件 @
5b840a11
差异被折叠。
点击展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论