diff --git a/src/project/fd/AppRedemptionPoints/productDetails.vue b/src/project/fd/AppRedemptionPoints/productDetails.vue
index 0e11fd60..2ef42365 100644
--- a/src/project/fd/AppRedemptionPoints/productDetails.vue
+++ b/src/project/fd/AppRedemptionPoints/productDetails.vue
@@ -7,7 +7,7 @@
{{goodsInfo.integralPrice}}积分+¥{{goodsInfo.payMoney}}(兑换后再付)
零售单价¥{{goodsInfo.retailPrice}}
兑换成功后,点击「去购买」前往京东低价购买
-
免费兑换商品,可到固定的兑换点进行「核销兑换」
+
积分兑换商品,可到固定的兑换点进行「核销兑换」
商品描述:
diff --git a/src/project/fd/AppRedemptionPoints/successOrder.vue b/src/project/fd/AppRedemptionPoints/successOrder.vue
index 41a93027..298f7b4e 100644
--- a/src/project/fd/AppRedemptionPoints/successOrder.vue
+++ b/src/project/fd/AppRedemptionPoints/successOrder.vue
@@ -3,7 +3,7 @@
提交成功
-
提交「免费兑」订单成功,扣减 {{integralPrice}}积分
+
提交「积分兑换」订单成功,扣减 {{integralPrice}}积分
返回
查看订单
diff --git a/src/project/pidu/AppConversation/AppConversation.vue b/src/project/pidu/AppConversation/AppConversation.vue
index 08a573a3..173d7651 100644
--- a/src/project/pidu/AppConversation/AppConversation.vue
+++ b/src/project/pidu/AppConversation/AppConversation.vue
@@ -44,14 +44,14 @@
-
-
![]()
-
{{item.toUserName}}
-

-
{{item.roomName}}
+
![]()
+

+
+
+
{{currentTabs == 1 ? item.toUserName : item.roomName}}
+
+
{{item.userType == 1 ? '内部' : '外部'}}
-
{{item.roomType == 1 ? '内部' : '外部'}}
-
{{item.toUserType == 1 ? '内部' : '外部'}}
@@ -134,6 +134,13 @@ export default {
}
}).then(res=> {
if(res?.data) {
+ res.data.records.map((item) => {
+ if(item.type == 1) {
+ item.userType = item.roomType
+ }else {
+ item.userType = item.toUserType
+ }
+ })
this.list = this.current > 1 ? [...this.list, ...res.data.records]: res.data.records
this.pages = res.data.pages
}
@@ -199,9 +206,15 @@ export default {
border-top: 1px solid #eee;
background-color: #fff;
.item {
- padding: 24px 32px 0 32px;
+ padding: 24px 0 0 32px;
display: flex;
- justify-content: space-between;
+ .item-border {
+ width: calc(100% - 112px);
+ padding-right: 32px;
+ display: flex;
+ justify-content: space-between;
+ border-bottom: 1px solid #eee;
+ }
.flex-left {
padding-right: 8px;
box-sizing: border-box;
@@ -238,9 +251,9 @@ export default {
font-size: 32px;
color: #333;
letter-spacing: 0.3px;
- border-bottom: 1px solid #eee;
display: inline-block;
vertical-align: top;
+ width: 100%;
}
}
.item:nth-last-child(1) {