fiexd 修改订单页面

This commit is contained in:
AERWEN\26795 2023-10-14 15:20:25 +08:00
parent c7a42a9ff9
commit ac1060eca6
4 changed files with 5 additions and 4 deletions

View File

@ -105,7 +105,7 @@
<el-table-column prop="goodsName" label="商品名称" width="450" align="center" :show-overflow-tooltip="true" />
<el-table-column prop="goodsPriceLowest" label="价格" align="center">
<template #default="scope">
{{ scope.row.goodsPriceLowest }}
<b>{{ scope.row.goodsPriceLowest }}</b>
</template>
</el-table-column>

View File

@ -104,7 +104,7 @@
{{ item.goodsName }}
</div>
<div>
<el-tag type="info">{{ item.goodsSpecName }}</el-tag>
<el-tag type="info" v-if="item.goodsSpecName" >{{ item.goodsSpecName }}</el-tag>
</div>
</div>

View File

@ -109,7 +109,7 @@
{{ scope.row.goodsName }}
</div>
<div>
<el-tag type="info">{{ scope.row.goodsSpecName }}</el-tag>
<el-tag type="info" v-if="scope.row.goodsSpecName">{{ scope.row.goodsSpecName }}</el-tag>
</div>
</div>
</div>
@ -141,7 +141,7 @@
</el-table>
<div class="order-summary-box">
<div>订单总额 &nbsp;{{ detail.orderAmount }}</div>
<div>订单总额 &nbsp;{{ detail.goodsTotalAmoun }}</div>
<div>运费金额 &nbsp;{{ detail.expressPrice }}</div>
<div>实付款金额 &nbsp;<b>{{ detail.payPrice }}</b></div>
</div>

View File

@ -31,6 +31,7 @@ export default defineConfig(({ mode, command }) => {
base: env.VITE_APP_ROUTER_PREFIX,
// 打包配置
build: {
chunkSizeWarningLimit: 5000,
sourcemap: command === 'build' ? false : 'inline',
outDir: 'dist', //指定输出目录
assetsDir: 'assets', //指定静态资源存储目录(相对于outDir)