commit
Showing
1 changed file
with
62 additions
and
1 deletions
| ... | @@ -30,6 +30,65 @@ | ... | @@ -30,6 +30,65 @@ |
| 30 | </el-table> | 30 | </el-table> |
| 31 | <br/> | 31 | <br/> |
| 32 | <br/> | 32 | <br/> |
| 33 | <span>激活此用户的代理人(tbl_agent_properties)</span> | ||
| 34 | <el-table | ||
| 35 | :data="tblJiHuoAgentProperties" | ||
| 36 | border | ||
| 37 | style="width: 100%" | ||
| 38 | :header-cell-style="{background: 'deepskyblue', color: 'snow'}"> | ||
| 39 | <el-table-column | ||
| 40 | prop="uid" | ||
| 41 | label="UID" | ||
| 42 | min-width="1"> | ||
| 43 | </el-table-column> | ||
| 44 | <el-table-column | ||
| 45 | prop="phone" | ||
| 46 | label="手机号码" | ||
| 47 | min-width="1"> | ||
| 48 | </el-table-column> | ||
| 49 | <el-table-column | ||
| 50 | prop="name" | ||
| 51 | label="用户名称" | ||
| 52 | min-width="1"> | ||
| 53 | </el-table-column> | ||
| 54 | <el-table-column | ||
| 55 | prop="jobNumber" | ||
| 56 | label="工号" | ||
| 57 | min-width="1"> | ||
| 58 | </el-table-column> | ||
| 59 | <el-table-column | ||
| 60 | prop="provinceCode" | ||
| 61 | label="省code" | ||
| 62 | min-width="1"> | ||
| 63 | </el-table-column> | ||
| 64 | <el-table-column | ||
| 65 | prop="cityCode" | ||
| 66 | label="市code" | ||
| 67 | min-width="1"> | ||
| 68 | </el-table-column> | ||
| 69 | <el-table-column | ||
| 70 | prop="teamCode" | ||
| 71 | label="职场code" | ||
| 72 | min-width="1"> | ||
| 73 | </el-table-column> | ||
| 74 | <el-table-column | ||
| 75 | prop="fourLevelCode" | ||
| 76 | label="四级编码" | ||
| 77 | min-width="1"> | ||
| 78 | </el-table-column> | ||
| 79 | <el-table-column | ||
| 80 | prop="fiveLevelCode" | ||
| 81 | label="五级编码" | ||
| 82 | min-width="1"> | ||
| 83 | </el-table-column> | ||
| 84 | <el-table-column | ||
| 85 | prop="createTime" | ||
| 86 | label="创建时间" | ||
| 87 | min-width="2"> | ||
| 88 | </el-table-column> | ||
| 89 | </el-table> | ||
| 90 | <br/> | ||
| 91 | <br/> | ||
| 33 | <span>代理人详情表(tbl_agent_properties)</span> | 92 | <span>代理人详情表(tbl_agent_properties)</span> |
| 34 | <el-table | 93 | <el-table |
| 35 | :data="tblAgentProperties" | 94 | :data="tblAgentProperties" |
| ... | @@ -162,7 +221,8 @@ | ... | @@ -162,7 +221,8 @@ |
| 162 | tblUserInfos: [], | 221 | tblUserInfos: [], |
| 163 | tblAgentProperties: [], | 222 | tblAgentProperties: [], |
| 164 | tblAgentCustomers: [], | 223 | tblAgentCustomers: [], |
| 165 | tblAgentCustomersAll: [] | 224 | tblAgentCustomersAll: [], |
| 225 | tblJiHuoAgentProperties: [] | ||
| 166 | } | 226 | } |
| 167 | }, | 227 | }, |
| 168 | mounted() { | 228 | mounted() { |
| ... | @@ -190,6 +250,7 @@ | ... | @@ -190,6 +250,7 @@ |
| 190 | this.tblAgentProperties=res.data.tblAgentProperties | 250 | this.tblAgentProperties=res.data.tblAgentProperties |
| 191 | this.tblAgentCustomers=res.data.tblAgentCustomers | 251 | this.tblAgentCustomers=res.data.tblAgentCustomers |
| 192 | this.tblAgentCustomersAll=res.data.tblAgentCustomersAll | 252 | this.tblAgentCustomersAll=res.data.tblAgentCustomersAll |
| 253 | this.tblJiHuoAgentProperties=res.data.tblJiHuoAgentProperties | ||
| 193 | loading.close(); | 254 | loading.close(); |
| 194 | }).catch(error=>{ | 255 | }).catch(error=>{ |
| 195 | console.log(error); | 256 | console.log(error); | ... | ... |
-
Please register or sign in to post a comment