Commit e86ccdfd authored by 332784038@qq.com's avatar 332784038@qq.com

批量加价页面订单列表数据填充修改

parent 877f2811
......@@ -224,12 +224,12 @@
</template>
</el-table-column>
<el-table-column :label="$t('始发仓/渠道-目的仓')" align="center" width="200">
<template v-slot="scope"> {{ scope.row.destAdjustToStartWarehouseName }}-{{ scope.row.destAdjustToDestWarehouseName }} </template>
<template v-slot="scope"> {{ scope.row.startWarehouseName }}/ <template v-if="scope.row.channelName">{{ scope.row.channelName }}-</template>{{ scope.row.dstWarehouseName }} </template>
</el-table-column>
<el-table-column :label="$t('额外费用')" width="200">
<template slot-scope="{ row }">
<div v-for="(item, feeIndex) in row.costVO.feeDtoList" :key="feeIndex">
<div v-if="item.amount && item.feeType !== 1 && item.feeType !== 2"><dict-tag :type="DICT_TYPE.FEE_TYPE" :value="item.feeType" />: {{ currencyMapF[item.currencyId] }}{{ item.amount }}</div>
<div v-for="(item, feeIndex) in row.extraCosts" :key="feeIndex">
<dict-tag :type="DICT_TYPE.FEE_TYPE" :value="item.feeType" />: {{ currencyMapF[item.currencyId] }}{{ item.totalAmount }}
</div>
</template>
</el-table-column>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment