Commit e8b880b7 by chenxin

fix: 计费中心-提示

parent e58c647e
......@@ -105,12 +105,19 @@
{{ scope.row.type === 'call' || scope.row.type === 'record' ? '分钟' : '条' }}
</template>
</el-table-column>
<!-- <el-table-column align="left" prop="fee" label="费用">
<el-table-column align="left" prop="fee" label="费用">
<template slot="header" slot-scope="scope">
费用
<el-tooltip :open-delay="200" class="item" effect="dark" placement="top">
<div slot="content" style="width:300px;line-height:1.5;">由于运营商的计费单价会有调整以及海外短信是按不同地区进行费用扣除。但此处是用统一用当下的单价乘以计费条数进行合计,所以可能导致此处的费用和详情不一致,最终以详情的合计金额为准。</div>
<i class="el-icon-info minor-font-color cursor-pointer ml5"></i>
</el-tooltip>
</template>
<template slot-scope="scope">
<span>{{ (scope.row.fee / (scope.row.type === 'record' ? 100 : 1000)).toFixed(2) }}</span
>
</template>
</el-table-column> -->
</el-table-column>
<el-table-column label="操作" align="left" width="220px" fixed="right">
<template slot-scope="scope">
<el-button type="text" @click="$router.push('/recharge/consume/' + scope.row.type)">详情</el-button>
......
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