修改线上、线下显示名称

pull/781/head
苑坤 2025-05-12 10:17:54 +08:00
parent ef2dd0df40
commit 03bd4d6eba
1 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@
<dict-tag :type="DICT_TYPE.CRM_PRODUCT_UNIT" :value="scope.row.productUnit" />
</template>
</el-table-column>
<el-table-column label="线上价格(元)" fixed="right" min-width="100">
<el-table-column label="线上(元)" align="center" fixed="right" min-width="100">
<template #default="{ row, $index }">
<el-form-item :prop="`${$index}.onlinePrice`" :rules="formRules.onlinePrice" class="mb-0px!" v-if="!disabled">
<el-input
@ -49,7 +49,7 @@
<div v-else>{{row.onlinePrice}}</div>
</template>
</el-table-column>
<el-table-column label="线下价格(元)" fixed="right" min-width="100">
<el-table-column label="线下(元)" align="center" fixed="right" min-width="100">
<template #default="{ row, $index }">
<el-form-item :prop="`${$index}.offlinePrice`" :rules="formRules.offlinePrice" class="mb-0px!" v-if="!disabled">
<el-input
@ -61,7 +61,7 @@
<div v-else>{{row.offlinePrice}}</div>
</template>
</el-table-column>
<el-table-column label="合计(元)" prop="totalPrice" fixed="right" min-width="100">
<el-table-column label="合计(元)" prop="totalPrice" align="center" fixed="right" min-width="100">
<template #default="{ row, $index }">
<el-form-item :prop="`${$index}.totalPrice`" class="mb-0px!">
{{row.totalPrice}}