fiexd 修改订单页面
This commit is contained in:
parent
c7a42a9ff9
commit
ac1060eca6
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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>订单总额: ¥{{ detail.orderAmount }}</div>
|
||||
<div>订单总额: ¥{{ detail.goodsTotalAmoun }}</div>
|
||||
<div>运费金额: ¥{{ detail.expressPrice }}</div>
|
||||
<div>实付款金额: <b>¥{{ detail.payPrice }}</b></div>
|
||||
</div>
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user