|
@@ -51,11 +51,44 @@
|
|
|
<span v-show="!scope.row.edit">{{ scope.row.min_num }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- prop="new_sale_price"
|
|
|
- label="系统售价(元)"
|
|
|
- show-overflow-tooltip
|
|
|
- >
|
|
|
+ <el-table-column prop="new_sale_price" show-overflow-tooltip>
|
|
|
+ <template slot="header" slot-scope="scope">
|
|
|
+ <span>系统售价(元)</span>
|
|
|
+ <el-popover
|
|
|
+ placement="top-start"
|
|
|
+ title="计算公式:"
|
|
|
+ width="300"
|
|
|
+ style="margin: 3px 0 0 0"
|
|
|
+ class="fr"
|
|
|
+ trigger="hover"
|
|
|
+ ><div>
|
|
|
+ <div v-if="sitem.is_gold_price === '1'">
|
|
|
+ <span class="jiashu">贵金属克重</span>
|
|
|
+ <span class="jiahao">*</span>
|
|
|
+ <span class="jiashu">实时金价</span>
|
|
|
+ <span class="jiahao">+</span>
|
|
|
+ <span class="jiashu">工艺费</span>
|
|
|
+ <span class="jiahao">*</span>
|
|
|
+ <span class="jiashu">贵金属克重</span>
|
|
|
+ <span class="jiahao">+</span>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <span class="jiashu">包装费</span>
|
|
|
+ <span class="jiahao">+</span>
|
|
|
+ <span class="jiashu">裸价</span>
|
|
|
+ <span class="jiahao">+</span>
|
|
|
+ <span class="jiashu">加标费</span>
|
|
|
+ <span class="jiahao">+</span>
|
|
|
+ <span class="jiashu">证书费</span>
|
|
|
+ <span class="jiahao">+</span>
|
|
|
+ <span class="jiashu">物流费</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <i class="el-icon-question tb-icon" slot="reference"></i>
|
|
|
+ </el-popover>
|
|
|
+ </template>
|
|
|
+
|
|
|
<template slot-scope="scope">
|
|
|
<el-form-item
|
|
|
v-show="scope.row.edit"
|