From 674c2352ef5a44315decabac6e429260d2625561 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A6=E4=B9=A0=E5=BE=88=E5=B7=AE=E5=95=A6?= <17633066053@163.com> Date: Fri, 17 Feb 2023 11:28:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20:sparkles:=20=E6=96=B0=E5=A2=9Eim?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E6=9D=83=E9=99=90=E5=A4=B1=E6=95=88=E5=88=A4?= =?UTF-8?q?=E5=AE=9A=EF=BC=8C=E4=BC=98=E5=8C=96=E4=B9=B0=E5=AE=B6=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E6=A0=B7=E5=BC=8F=E4=BB=A5=E5=8F=8A=E5=8D=96=E5=AE=B6?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- im/src/assets/css/global.less | 3 + im/src/components/chat/panel/OtherLink.vue | 9 + im/src/components/chat/panel/TalkPanel.vue | 82 +++++---- .../chat/panel/template/footPrint.vue | 171 +++++++----------- .../chat/panel/template/goodsLink.vue | 7 +- .../chat/panel/template/storeDetail.vue | 57 +++--- im/src/utils/request.js | 38 +++- im/src/views/message/index.vue | 4 +- 8 files changed, 207 insertions(+), 164 deletions(-) diff --git a/im/src/assets/css/global.less b/im/src/assets/css/global.less index c1353b95..4c5db740 100644 --- a/im/src/assets/css/global.less +++ b/im/src/assets/css/global.less @@ -6,6 +6,9 @@ -ms-user-select: none; user-select: none; } +.main-color{ + color: #508afe; +} .no-padding { padding: 0; diff --git a/im/src/components/chat/panel/OtherLink.vue b/im/src/components/chat/panel/OtherLink.vue index a1b7b673..ec7a8a3a 100644 --- a/im/src/components/chat/panel/OtherLink.vue +++ b/im/src/components/chat/panel/OtherLink.vue @@ -275,4 +275,13 @@ export default { /deep/.el-tabs__nav-scroll{ min-width: 362px; } +/deep/ .el-tabs__item{ + height: 100%; + display: flex; + align-items: center; + justify-content: center; +} +/deep/ .el-tabs__header{ + margin-bottom: 0; +} \ No newline at end of file diff --git a/im/src/components/chat/panel/TalkPanel.vue b/im/src/components/chat/panel/TalkPanel.vue index 6e29d2f4..99e5a65d 100644 --- a/im/src/components/chat/panel/TalkPanel.vue +++ b/im/src/components/chat/panel/TalkPanel.vue @@ -98,22 +98,29 @@ 订单号:{{ item.text.sn }} -
- +
+
+ +
+
{{ item.text.groupName }} - {{ item.text.paymentTime }} +
{{ item.text.paymentTime }}
- 订单金额:{{ item.text.flowPrice | unitPrice('¥') }} - - {{ - item.text.orderStatus == 'CANCELLED' ? '已取消' : item.text.orderStatus == 'UNPAID' ? '未付款' : - item.text.orderStatus == - 'PAID' ? '已付款' : item.text.orderStatus == 'UNDELIVERED' ? '待发货' : item.text.orderStatus == - 'DELIVERED' - ? '已发货' : item.text.orderStatus == ' COMPLETED' ? '已完成' : item.text.orderStatus == ' TAKE' ? - '待校验' : '' - }} + 订单金额:{{ item.text.flowPrice | unitPrice('¥') }} + +
+ {{ + item.text.orderStatus == 'CANCELLED' ? '已取消' : item.text.orderStatus == 'UNPAID' ? '未付款' : + item.text.orderStatus == + 'PAID' ? '已付款' : item.text.orderStatus == 'UNDELIVERED' ? '待发货' : item.text.orderStatus == + 'DELIVERED' + ? '已发货' : item.text.orderStatus == ' COMPLETED' ? '已完成' : item.text.orderStatus == ' TAKE' ? + '待校验' : '' + }} +
+
@@ -841,25 +848,18 @@ export default { }; diff --git a/im/src/components/chat/panel/template/footPrint.vue b/im/src/components/chat/panel/template/footPrint.vue index dac02033..014c5478 100644 --- a/im/src/components/chat/panel/template/footPrint.vue +++ b/im/src/components/chat/panel/template/footPrint.vue @@ -1,33 +1,29 @@