Commit 338aaaf4 338aaaf43d2052bd3c5d9d54ebf95325505ca4ea by zhanghao

commit

1 parent f47f8905
......@@ -30,6 +30,65 @@
</el-table>
<br/>
<br/>
<span>激活此用户的代理人(tbl_agent_properties)</span>
<el-table
:data="tblJiHuoAgentProperties"
border
style="width: 100%"
:header-cell-style="{background: 'deepskyblue', color: 'snow'}">
<el-table-column
prop="uid"
label="UID"
min-width="1">
</el-table-column>
<el-table-column
prop="phone"
label="手机号码"
min-width="1">
</el-table-column>
<el-table-column
prop="name"
label="用户名称"
min-width="1">
</el-table-column>
<el-table-column
prop="jobNumber"
label="工号"
min-width="1">
</el-table-column>
<el-table-column
prop="provinceCode"
label="省code"
min-width="1">
</el-table-column>
<el-table-column
prop="cityCode"
label="市code"
min-width="1">
</el-table-column>
<el-table-column
prop="teamCode"
label="职场code"
min-width="1">
</el-table-column>
<el-table-column
prop="fourLevelCode"
label="四级编码"
min-width="1">
</el-table-column>
<el-table-column
prop="fiveLevelCode"
label="五级编码"
min-width="1">
</el-table-column>
<el-table-column
prop="createTime"
label="创建时间"
min-width="2">
</el-table-column>
</el-table>
<br/>
<br/>
<span>代理人详情表(tbl_agent_properties)</span>
<el-table
:data="tblAgentProperties"
......@@ -162,7 +221,8 @@
tblUserInfos: [],
tblAgentProperties: [],
tblAgentCustomers: [],
tblAgentCustomersAll: []
tblAgentCustomersAll: [],
tblJiHuoAgentProperties: []
}
},
mounted() {
......@@ -190,6 +250,7 @@
this.tblAgentProperties=res.data.tblAgentProperties
this.tblAgentCustomers=res.data.tblAgentCustomers
this.tblAgentCustomersAll=res.data.tblAgentCustomersAll
this.tblJiHuoAgentProperties=res.data.tblJiHuoAgentProperties
loading.close();
}).catch(error=>{
console.log(error);
......