Commit 6a44cde1 6a44cde101ffe9033daebcceb37f902039b1d80b by zhanghao

commit

1 parent 32c5454b
...@@ -126,6 +126,28 @@ ...@@ -126,6 +126,28 @@
126 </el-card> 126 </el-card>
127 </el-form> 127 </el-form>
128 </el-col> 128 </el-col>
129 <el-col :span="8">
130 <el-form ref="createUserInfo" :model="createUserInfo" label-width="0px">
131 <el-card class="CadetBlue" shadow="always">
132 <div slot="header" class="clearfix">
133 <span>创建指定代理人的健康坊用户</span>
134 </div>
135 <div class="text item">
136 <el-form-item>
137 <el-input placeholder="代理人手机号" v-model="createUserInfo.phone" clearable></el-input>
138 </el-form-item>
139 <div style="margin: 15px 0;"></div>
140 <el-form-item>
141 <el-input placeholder="该代理人名下的健康坊用户手机号" v-model="createUserInfo.agentPhone" clearable></el-input>
142 </el-form-item>
143 <div style="margin: 15px 0;"></div>
144 <el-form-item>
145 <el-button round @click="">创建用户</el-button>
146 </el-form-item>
147 </div>
148 </el-card>
149 </el-form>
150 </el-col>
129 </el-row> 151 </el-row>
130 </div> 152 </div>
131 </template> 153 </template>
...@@ -176,6 +198,12 @@ ...@@ -176,6 +198,12 @@
176 padding: 0px; 198 padding: 0px;
177 background-color: chocolate; 199 background-color: chocolate;
178 } 200 }
201
202 .CadetBlue {
203 width: calc(100% - 20px);
204 padding: 0px;
205 background-color: CadetBlue;
206 }
179 </style> 207 </style>
180 208
181 <script> 209 <script>
...@@ -210,7 +238,11 @@ ...@@ -210,7 +238,11 @@
210 }, { 238 }, {
211 value: 'release', 239 value: 'release',
212 label: '线上环境' 240 label: '线上环境'
213 }] 241 }],
242 createUserInfo: {
243 phone: '',
244 agentPhone: ''
245 }
214 // activityConfigRules: { 246 // activityConfigRules: {
215 // id: [ 247 // id: [
216 // { required: true, message: '请输入活动ID', trigger: 'blur' } 248 // { required: true, message: '请输入活动ID', trigger: 'blur' }
......