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
6a44cde1
...
6a44cde101ffe9033daebcceb37f902039b1d80b
authored
2020-09-17 14:07:22 +0800
by
zhanghao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
32c5454b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
1 deletions
src/page/tool.vue
src/page/tool.vue
View file @
6a44cde
...
...
@@ -126,6 +126,28 @@
</el-card>
</el-form>
</el-col>
<el-col
:span=
"8"
>
<el-form
ref=
"createUserInfo"
:model=
"createUserInfo"
label-width=
"0px"
>
<el-card
class=
"CadetBlue"
shadow=
"always"
>
<div
slot=
"header"
class=
"clearfix"
>
<span>
创建指定代理人的健康坊用户
</span>
</div>
<div
class=
"text item"
>
<el-form-item>
<el-input
placeholder=
"代理人手机号"
v-model=
"createUserInfo.phone"
clearable
></el-input>
</el-form-item>
<div
style=
"margin: 15px 0;"
></div>
<el-form-item>
<el-input
placeholder=
"该代理人名下的健康坊用户手机号"
v-model=
"createUserInfo.agentPhone"
clearable
></el-input>
</el-form-item>
<div
style=
"margin: 15px 0;"
></div>
<el-form-item>
<el-button
round
@
click=
""
>
创建用户
</el-button>
</el-form-item>
</div>
</el-card>
</el-form>
</el-col>
</el-row>
</div>
</
template
>
...
...
@@ -176,6 +198,12 @@
padding
:
0px
;
background-color
:
chocolate
;
}
.CadetBlue
{
width
:
calc
(
100%
-
20px
);
padding
:
0px
;
background-color
:
CadetBlue
;
}
</
style
>
<
script
>
...
...
@@ -210,7 +238,11 @@
},
{
value
:
'release'
,
label
:
'线上环境'
}]
}],
createUserInfo
:
{
phone
:
''
,
agentPhone
:
''
}
// activityConfigRules: {
// id: [
// { required: true, message: '请输入活动ID', trigger: 'blur' }
...
...
Please
register
or
sign in
to post a comment