|
@@ -3,7 +3,7 @@
|
|
|
<a-spin :spinning="accountPageSpinning">
|
|
|
<a-row :gutter="24">
|
|
|
<a-col :sm="18" :md="18" :xl="18" class="keep-manage-col">
|
|
|
- <a-card title="运营人员" class="card-content echarts-card">
|
|
|
+ <a-card title="数据趋势" class="card-content echarts-card">
|
|
|
<div class="person-content-title" slot="extra">
|
|
|
<div class="content-title-acount"></div>
|
|
|
<div class="content-title-checkout">
|
|
@@ -107,7 +107,13 @@
|
|
|
:loading="echartsLoading"
|
|
|
ref="accountTable"
|
|
|
>
|
|
|
- <a-table-column key="realName" data-index="realName" title="运营人员" align="center"/>
|
|
|
+ <a-table-column key="realName" data-index="realName" title="运营人员" align="center">
|
|
|
+ <template slot-scope="tags,records">
|
|
|
+ <a @click="toPerson(records)">
|
|
|
+ {{ tags }}
|
|
|
+ </a>
|
|
|
+ </template>
|
|
|
+ </a-table-column>
|
|
|
<a-table-column key="accountCount" data-index="accountCount" title="账户数量" align="center"/>
|
|
|
<a-table-column key="charge" data-index="charge" title="花费" align="center"/>
|
|
|
<a-table-column key="weekCharge" data-index="weekCharge" align="center">
|
|
@@ -545,6 +551,14 @@ export default {
|
|
|
this.getPersonList();
|
|
|
},
|
|
|
|
|
|
+ //跳转个人页面
|
|
|
+ toPerson(records) {
|
|
|
+
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$router.push('/modules/stockWatch/modules/keep-person/keep-person?person=' + records.userId );
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
//点击跳转盯盘详情页
|
|
|
toDetail(item) {
|
|
|
let params = {};
|