Commit 73dc22c3 by 无尘

fix: 修改审核

parent ffe9c4fa
......@@ -4,7 +4,7 @@
* @Author: 无尘
* @Date: 2020-08-14 16:51:07
* @LastEditors: 无尘
* @LastEditTime: 2020-09-09 15:25:18
* @LastEditTime: 2020-09-16 17:56:44
-->
<!--
<org-tree v-if="item.children.length" :item-data="item.children" @getSelectData="getSelectData"></org-tree>
......@@ -120,6 +120,7 @@ export default {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: #606266;
.color-fff {
color: #fff;
}
......
......@@ -4,7 +4,7 @@
* @Author: 无尘
* @Date: 2020-08-20 14:36:37
* @LastEditors: 无尘
* @LastEditTime: 2020-09-16 17:45:35
* @LastEditTime: 2020-09-16 17:58:11
-->
<template>
<div class="customer-assign-wrap">
......@@ -76,13 +76,13 @@
</div>
</template>
</el-table-column>
<el-table-column prop="" label="消费总额" sortable show-overflow-tooltip>
<el-table-column prop="consumeTotal" label="消费总额" sortable show-overflow-tooltip>
<template slot-scope="scope">¥ {{ scope.row.consumeTotal }} {{ scope.row.consumeTotal == null && scope.row.consumeTotal != 0 ? '--' : '' }}</template>
</el-table-column>
<el-table-column prop="" label="消费次数" sortable>
<el-table-column prop="consumeTimes" label="消费次数" sortable>
<template slot-scope="scope">{{ scope.row.consumeTimes || '0' }}</template>
</el-table-column>
<el-table-column prop="" label="最近消费" sortable show-overflow-tooltip>
<el-table-column prop="lastConsume" label="最近消费" sortable show-overflow-tooltip>
<template slot-scope="scope">
<div class="line-h-18">{{ scope.row.lastConsume | timeStampToYmd }} {{ !scope.row.lastConsume ? '--' : '' }}</div>
<div class="line-h-18">{{ scope.row.lastConsume | timeStampToHms }} {{ !scope.row.lastConsume ? '--' : '' }}</div>
......
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