Commit 4d2b26e7 4d2b26e7c9f9c66e0066520eb59d471d14e5ad21 by zhanghao

commit

1 parent 4e751c77
......@@ -116,6 +116,40 @@
min-width="2">
</el-table-column>
</el-table>
<br/>
<br/>
<span>代理人客户表(tbl_agent_customer),展示全部客户</span>
<el-table
:data="tblAgentCustomersAll"
border
style="width: 100%"
:header-cell-style="{background: 'deepskyblue', color: 'snow'}">
<el-table-column
prop="name"
label="用户名称"
min-width="1">
</el-table-column>
<el-table-column
prop="refId"
label="用户UID"
min-width="1">
</el-table-column>
<el-table-column
prop="phone"
label="电话号"
min-width="1">
</el-table-column>
<el-table-column
prop="customerType"
label="客户类型"
min-width="1">
</el-table-column>
<el-table-column
prop="createTime"
label="创建时间"
min-width="2">
</el-table-column>
</el-table>
</div>
</template>
......@@ -127,7 +161,8 @@
huanjing: this.$route.query.huanjing,
tblUserInfos: [],
tblAgentProperties: [],
tblAgentCustomers: []
tblAgentCustomers: [],
tblAgentCustomersAll: []
}
},
mounted() {
......@@ -154,6 +189,7 @@
this.tblUserInfos=res.data.tblUserInfos
this.tblAgentProperties=res.data.tblAgentProperties
this.tblAgentCustomers=res.data.tblAgentCustomers
this.tblAgentCustomersAll=res.data.tblAgentCustomersAll
loading.close();
}).catch(error=>{
console.log(error);
......