|
@@ -310,10 +310,6 @@ let detailsDb = ref({
|
|
|
"nickName": null,
|
|
|
// 用户分配到的班级数组,可以是多个
|
|
|
"classInfo": [],
|
|
|
- // 密码
|
|
|
- "password": null,
|
|
|
- // 确认密码
|
|
|
- "password2": null
|
|
|
});
|
|
|
|
|
|
/**
|
|
@@ -666,13 +662,13 @@ const btnDetail = (res) => {
|
|
|
"nickName": data.nickName,
|
|
|
// 用户分配到的班级数组,可以是多个
|
|
|
"classInfo": classInfoIdArray,
|
|
|
- // 密码
|
|
|
- "password": data.password,
|
|
|
- // 确认密码
|
|
|
- "password2": data.password2
|
|
|
+ // // 密码
|
|
|
+ // "password": data.password,
|
|
|
+ // // 确认密码
|
|
|
+ // "password2": data.password2
|
|
|
}
|
|
|
|
|
|
- console.log("detailsDb.value", detailsDb.value);
|
|
|
+ // console.log("detailsDb.value", detailsDb.value);
|
|
|
|
|
|
state.value.showDetails = true;
|
|
|
|
|
@@ -981,12 +977,6 @@ onMounted(function() {
|
|
|
}"
|
|
|
clearable placeholder="请选择班级" />
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="密码" prop="password">
|
|
|
- <el-input v-model="detailsDb.password" clearable placeholder="请填写密码"></el-input>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="确认密码" prop="password2">
|
|
|
- <el-input v-model="detailsDb.password2" clearable placeholder="请填写确认密码"></el-input>
|
|
|
- </el-form-item>
|
|
|
</el-form>
|
|
|
<div class="dialogFoot">
|
|
|
<el-button color="#EAEAEA" @click="state.showDetails = false" style="margin-right: 0.6rem">取消</el-button>
|