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
4d2b26e7
...
4d2b26e7c9f9c66e0066520eb59d471d14e5ad21
authored
2020-10-12 11:24:22 +0800
by
zhanghao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
4e751c77
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
1 deletions
src/page/userInfo.vue
src/page/userInfo.vue
View file @
4d2b26e
...
...
@@ -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
);
...
...
Please
register
or
sign in
to post a comment