|
|
@@ -442,18 +442,19 @@
|
|
|
<el-dialog
|
|
|
:title="title"
|
|
|
:visible.sync="open"
|
|
|
- width="700px"
|
|
|
+ width="800px"
|
|
|
append-to-body
|
|
|
:close-on-click-modal="false"
|
|
|
>
|
|
|
- <el-form ref="form" :model="form" :rules="rules" label-width="90px">
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="用户名" prop="userName">
|
|
|
+ <el-form-item label="用户名" prop="userName" >
|
|
|
<el-input
|
|
|
v-model="form.userName"
|
|
|
placeholder="请输入登录用户名"
|
|
|
maxlength="30"
|
|
|
+ style="width: 240px"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
@@ -462,6 +463,7 @@
|
|
|
v-if="form.userId == undefined"
|
|
|
label="用户密码"
|
|
|
prop="password"
|
|
|
+ style="width: 240px"
|
|
|
>
|
|
|
<el-input
|
|
|
v-model="form.password"
|
|
|
@@ -469,6 +471,7 @@
|
|
|
type="password"
|
|
|
maxlength="20"
|
|
|
show-password
|
|
|
+ style="width: 240px"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
@@ -480,6 +483,7 @@
|
|
|
v-model="form.nickName"
|
|
|
placeholder="请输入用户昵称"
|
|
|
maxlength="30"
|
|
|
+ style="width: 240px"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
@@ -490,6 +494,7 @@
|
|
|
:options="deptOptions"
|
|
|
:show-count="true"
|
|
|
placeholder="请选择归属部门"
|
|
|
+ style="width: 240px"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
@@ -571,6 +576,13 @@
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
+ <el-form-item label="科研平台编号" prop="kyId" label-width="120px">
|
|
|
+ <el-input v-model="form.kyId" placeholder="科研平台编号" maxlength="20" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="12">
|
|
|
<el-form-item label="手机号码" prop="phonenumber">
|
|
|
<el-input
|
|
|
v-model="form.phonenumber"
|
|
|
@@ -951,6 +963,7 @@ export default {
|
|
|
sex: undefined,
|
|
|
status: "0",
|
|
|
remark: undefined,
|
|
|
+ kyId: undefined,
|
|
|
// postIds: [],
|
|
|
roleIds: [],
|
|
|
};
|