| | |
| | | <el-form-item label="登录名" prop="loginName" :rules="[{required: true, message: '请输入登录名', trigger: 'blur'}]"> |
| | | <el-input v-model="formData.loginName" auto-complete="off"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="密码" prop="password" :rules="[{required: true, message: '请输入密码', trigger: 'blur'}]"> |
| | | <el-input v-model="formData.password" auto-complete="off"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="姓名" prop="name" :rules="[{required: true, message: '请输入姓名', trigger: 'blur'}]"> |
| | | <el-input v-model="formData.name" auto-complete="off"></el-input> |
| | | </el-form-item> |
| | |
| | | }, |
| | | getParkList(){ |
| | | this.$byutil.postData(this, this.$systemconfig.basePath + '/park/findAll',null,res => { |
| | | this.parkList = res.data.data |
| | | this.parkList = res.data |
| | | }); |
| | | }, |
| | | onSearch() { |