Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张浩
/
br-client
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
338aaaf4
...
338aaaf43d2052bd3c5d9d54ebf95325505ca4ea
authored
2022-06-08 14:09:34 +0800
by
zhanghao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
f47f8905
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
1 deletions
src/page/userInfo.vue
src/page/userInfo.vue
View file @
338aaaf
...
...
@@ -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
);
...
...
Please
register
or
sign in
to post a comment