|
|
@@ -31,7 +31,7 @@
|
|
|
</div>
|
|
|
<el-divider />
|
|
|
<div class="flex align-center" v-for="(good,index2) in item.appDeskOrderGoodsVos" :key="index2">
|
|
|
- <div><el-image :src="good.image" style="width: 70px;height: 70px;" /></div>
|
|
|
+ <div><el-image :src="convertImageUrl(good.image)" style="width: 70px;height: 70px;" /></div>
|
|
|
<div class="flex flex-1 flex-column ml-2 font-size-sm">
|
|
|
<div class="flex justify-between"><span class="font-weight-bolder">{{good.title}}</span><span style="color: #f56c6c;">{{good.spec}}</span></div>
|
|
|
<div class="flex justify-between mt-1"><span>¥{{good.price}}</span><span>x{{good.number}}</span></div>
|
|
|
@@ -121,6 +121,7 @@
|
|
|
<script setup lang="ts">
|
|
|
import * as StoreOrderApi from '@/api/mall/order/storeOrder'
|
|
|
import { formatDate } from '@/utils/formatTime'
|
|
|
+import { convertImageUrl } from '@/utils/image-helper'
|
|
|
//const message = useMessage() // 消息弹窗
|
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
@@ -171,4 +172,4 @@ defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
|
|
.flex-column{ flex-direction:column!important; }
|
|
|
.ml-2 { margin-left: 20px; }
|
|
|
.mylabel {font-weight:bolder;text-align:center;font-size:18px}
|
|
|
-</style>
|
|
|
+</style>
|