...
|
...
|
@@ -71,9 +71,9 @@ |
|
|
<el-form-item label="账号">
|
|
|
<span>{{editForm.username}}</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="密码" prop="password">
|
|
|
<el-input v-model="editForm.password" auto-complete="off" type="password" show-password></el-input>
|
|
|
</el-form-item>
|
|
|
<!-- <el-form-item label="密码" prop="password">-->
|
|
|
<!-- <el-input v-model="editForm.password" auto-complete="off" type="password" show-password></el-input>-->
|
|
|
<!-- </el-form-item>-->
|
|
|
<el-form-item label="姓名" prop="realname">
|
|
|
<el-input v-model="editForm.realname" auto-complete="off"></el-input>
|
|
|
</el-form-item>
|
...
|
...
|
@@ -224,13 +224,13 @@ |
|
|
userId: 1,
|
|
|
username: '',
|
|
|
password: '',
|
|
|
sex: 1,
|
|
|
creattime: '',
|
|
|
sex: '1',
|
|
|
creattime: undefined,
|
|
|
address: '',
|
|
|
realname: '',
|
|
|
email: '',
|
|
|
mobilephone: '',
|
|
|
state: 'true'
|
|
|
state: true
|
|
|
},
|
|
|
|
|
|
addFormVisible: false,//新增界面是否显示
|
...
|
...
|
@@ -395,11 +395,11 @@ |
|
|
this.$confirm('确认提交吗?', '提示', {}).then(() => {
|
|
|
this.editLoading = true;
|
|
|
//NProgress.start();
|
|
|
let para = Object.assign({}, this.editForm);
|
|
|
// let para = Object.assign({}, this.editForm);
|
|
|
//不需要提交的 去掉,后端不好接收
|
|
|
para.authorities = null;
|
|
|
para.permissions = null;
|
|
|
para.roles = null;
|
|
|
this.editForm.authorities = null;
|
|
|
this.editForm.permissions = null;
|
|
|
this.editForm.roles = null;
|
|
|
// para.birth = (!para.birth || para.birth == '') ? '' : util.formatDate.format(new Date(para.birth), 'yyyy-MM-dd');
|
|
|
/*
|
|
|
查询之后格式this.filters.column.create_start_date中日期发生变化;
|
...
|
...
|
@@ -410,7 +410,7 @@ |
|
|
/*moment 安装 npm install moment --save*/
|
|
|
// para.creattime = moment(para.creattime).format('YYYY-MM-DD HH:mm:ss');
|
|
|
this.editLoading = false;
|
|
|
editUser(para).then((res) => {
|
|
|
editUser(this.editForm).then((res) => {
|
|
|
|
|
|
//NProgress.done();
|
|
|
this.$message({
|
...
|
...
|
|