123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- <template>
- <!-- 图片消息 -->
- <template v-if="KeFuMessageContentTypeEnum.ORDER === message.contentType">
- <div
- :class="[
- message.senderType === UserTypeEnum.MEMBER
- ? `ml-10px`
- : message.senderType === UserTypeEnum.ADMIN
- ? `mr-10px`
- : ''
- ]"
- >
- <div :key="getMessageContent.id" class="order-list-card-box mt-14px">
- <div class="order-card-header flex items-center justify-between p-x-20px">
- <div class="order-no">订单号:{{ getMessageContent.no }}</div>
- <div :class="formatOrderColor(getMessageContent)" class="order-state font-26">
- {{ formatOrderStatus(getMessageContent) }}
- </div>
- </div>
- <div v-for="item in getMessageContent.items" :key="item.id" class="border-bottom">
- <ProductItem
- :num="item.count"
- :picUrl="item.picUrl"
- :price="item.price"
- :skuText="item.properties.map((property: any) => property.valueName).join(' ')"
- :title="item.spuName"
- />
- </div>
- <div class="pay-box mt-30px flex justify-end pr-20px">
- <div class="flex items-center">
- <div class="discounts-title pay-color"
- >共 {{ getMessageContent?.productCount }} 件商品,总金额:
- </div>
- <div class="discounts-money pay-color">
- ¥{{ fenToYuan(getMessageContent?.payPrice) }}
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- </template>
- <script lang="ts" setup>
- import { KeFuMessageContentTypeEnum } from '../tools/constants'
- import ProductItem from './ProductItem.vue'
- import { UserTypeEnum } from '@/utils/constants'
- import { KeFuMessageRespVO } from '@/api/mall/promotion/kefu/message'
- import { fenToYuan } from '@/utils'
- defineOptions({ name: 'OrderMessageItem' })
- const props = defineProps<{
- message: KeFuMessageRespVO
- }>()
- const getMessageContent = computed(() => JSON.parse(props.message.content))
- /**
- * 格式化订单状态的颜色
- *
- * @param order 订单
- * @return {string} 颜色的 class 名称
- */
- function formatOrderColor(order: any) {
- if (order.status === 0) {
- return 'info-color'
- }
- if (order.status === 10 || order.status === 20 || (order.status === 30 && !order.commentStatus)) {
- return 'warning-color'
- }
- if (order.status === 30 && order.commentStatus) {
- return 'success-color'
- }
- return 'danger-color'
- }
- /**
- * 格式化订单状态
- *
- * @param order 订单
- */
- function formatOrderStatus(order: any) {
- if (order.status === 0) {
- return '待付款'
- }
- if (order.status === 10 && order.deliveryType === 1) {
- return '待发货'
- }
- if (order.status === 10 && order.deliveryType === 2) {
- return '待核销'
- }
- if (order.status === 20) {
- return '待收货'
- }
- if (order.status === 30 && !order.commentStatus) {
- return '待评价'
- }
- if (order.status === 30 && order.commentStatus) {
- return '已完成'
- }
- return '已关闭'
- }
- </script>
- <style lang="scss" scoped>
- .order-list-card-box {
- border-radius: 10px;
- padding: 10px;
- background-color: #e2e2e2;
- .order-card-header {
- height: 80px;
- .order-no {
- font-size: 26px;
- font-weight: 500;
- }
- }
- .pay-box {
- .discounts-title {
- font-size: 24px;
- line-height: normal;
- color: #999999;
- }
- .discounts-money {
- font-size: 24px;
- line-height: normal;
- color: #999;
- font-family: OPPOSANS;
- }
- .pay-color {
- color: #333;
- }
- }
- .order-card-footer {
- height: 100px;
- .more-item-box {
- padding: 20px;
- .more-item {
- height: 60px;
- .title {
- font-size: 26px;
- }
- }
- }
- .more-btn {
- color: #999999;
- font-size: 24px;
- }
- .content {
- width: 154px;
- color: #333333;
- font-size: 26px;
- font-weight: 500;
- }
- }
- }
- .warning-color {
- color: #faad14;
- }
- .danger-color {
- color: #ff3000;
- }
- .success-color {
- color: #52c41a;
- }
- .info-color {
- color: #999999;
- }
- </style>
|