|
@@ -87,7 +87,7 @@
|
|
|
class="de_button"
|
|
|
type="primary"
|
|
|
size="small"
|
|
|
- @click="deleteStudent(scope.row.id)"
|
|
|
+ @click="deleteStudent(scope.row.userid, scope.row.state)"
|
|
|
>删除</el-button
|
|
|
>
|
|
|
</template>
|
|
@@ -128,15 +128,11 @@
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="所属学校" :label-width="formLabelWidth">
|
|
|
- <el-select v-model="sBySchool" placeholder="请选择学校">
|
|
|
- <el-option
|
|
|
- v-for="(item, index) in schoolJuri"
|
|
|
- :key="index"
|
|
|
- :label="item.name"
|
|
|
- :value="item.id"
|
|
|
- >
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
+ <el-input
|
|
|
+ disabled
|
|
|
+ style="width: 300px"
|
|
|
+ :value="this.$store.state.userInfo.schoolName"
|
|
|
+ ></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="班级" :label-width="formLabelWidth">
|
|
|
<el-select v-model="sByClass" placeholder="请选择班级">
|
|
@@ -149,6 +145,9 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ <div style="text-align: center; color: #adb3b7">
|
|
|
+ 注:添加学生的账号密码为123456
|
|
|
+ </div>
|
|
|
</el-form>
|
|
|
<span slot="footer" class="dialog-footer flex">
|
|
|
<el-button class="right" @click="insertStudent">确认</el-button>
|
|
@@ -181,7 +180,8 @@
|
|
|
dialogVisible: false,
|
|
|
sName: "",
|
|
|
sPhone: "",
|
|
|
- sBySchool: "",
|
|
|
+ // sBySchool: [],
|
|
|
+ // sBySchoolName:"",
|
|
|
sByClass: "",
|
|
|
schoolJuri: [],
|
|
|
classJuri: [],
|
|
@@ -223,12 +223,9 @@
|
|
|
},
|
|
|
addStudent() {
|
|
|
this.dialogVisible = true;
|
|
|
- (this.sName = ""),
|
|
|
- (this.sPhone = ""),
|
|
|
- (this.sBySchool = ""),
|
|
|
- (this.sByClass = "");
|
|
|
+ (this.sName = ""), (this.sPhone = ""), (this.sByClass = "");
|
|
|
this.getClass();
|
|
|
- this.getSchool();
|
|
|
+ // this.getSchool();
|
|
|
},
|
|
|
handleClose(done) {
|
|
|
done();
|
|
@@ -280,9 +277,6 @@
|
|
|
} else if (!/^[1][3,4,5,7,8][0-9]{9}$/.test(this.sPhone)) {
|
|
|
this.$message.error("手机号格式不正确");
|
|
|
return;
|
|
|
- } else if (this.sBySchool === "") {
|
|
|
- this.$message.error("请为学生选择班级");
|
|
|
- return;
|
|
|
}
|
|
|
if (this.time()) {
|
|
|
let params = { un: this.sPhone };
|
|
@@ -304,8 +298,9 @@
|
|
|
let params = {
|
|
|
ph: this.sPhone,
|
|
|
username: this.sName,
|
|
|
+ userpassword: 123456,
|
|
|
type: 2,
|
|
|
- oid: this.sBySchool,
|
|
|
+ oid: this.$store.state.userInfo.organizeid,
|
|
|
tid: this.$store.state.userInfo.userid,
|
|
|
cid: this.sByClass,
|
|
|
};
|
|
@@ -320,7 +315,7 @@
|
|
|
this.dialogVisible = false;
|
|
|
this.sPhone = "";
|
|
|
this.sName = "";
|
|
|
- this.sBySchool = [];
|
|
|
+ // this.sBySchool = [];
|
|
|
this.sByClass = [];
|
|
|
this.getStudent();
|
|
|
})
|
|
@@ -353,22 +348,22 @@
|
|
|
console.error(err);
|
|
|
});
|
|
|
},
|
|
|
- getSchool() {
|
|
|
- this.isLoading = true;
|
|
|
- let params = {
|
|
|
- page: this.page,
|
|
|
- };
|
|
|
- this.ajax
|
|
|
- .get(this.$store.state.api + "selectOrg", params)
|
|
|
- .then((res) => {
|
|
|
- this.isLoading = false;
|
|
|
- this.schoolJuri = res.data[0];
|
|
|
- })
|
|
|
- .catch((err) => {
|
|
|
- this.isLoading = false;
|
|
|
- console.error(err);
|
|
|
- });
|
|
|
- },
|
|
|
+ // getSchool() {
|
|
|
+ // this.isLoading = true;
|
|
|
+ // let params = {
|
|
|
+ // page: this.page,
|
|
|
+ // };
|
|
|
+ // this.ajax
|
|
|
+ // .get(this.$store.state.api + "selectOrg", params)
|
|
|
+ // .then((res) => {
|
|
|
+ // this.isLoading = false;
|
|
|
+ // this.schoolJuri = res.data[0];
|
|
|
+ // })
|
|
|
+ // .catch((err) => {
|
|
|
+ // this.isLoading = false;
|
|
|
+ // console.error(err);
|
|
|
+ // });
|
|
|
+ // },
|
|
|
getStudent() {
|
|
|
this.isLoading = true;
|
|
|
let params = {
|
|
@@ -637,10 +632,50 @@
|
|
|
reader.readAsBinaryString(f);
|
|
|
}
|
|
|
},
|
|
|
+ // getSchoolName() {
|
|
|
+ // let params = {
|
|
|
+ // oid: this.$store.state.userInfo.organizeid,
|
|
|
+ // };
|
|
|
+ // this.ajax
|
|
|
+ // .get(this.$store.state.api + "selectSchoolName", params)
|
|
|
+ // .then((res) => {
|
|
|
+ // this.sBySchool = res.data[0];
|
|
|
+ // this.sBySchoolName = this.sBySchool[0].name;
|
|
|
+ // })
|
|
|
+ // .catch((err) => {
|
|
|
+ // console.error(err);
|
|
|
+ // });
|
|
|
+ // },
|
|
|
+ deleteStudent(id, state) {
|
|
|
+ state = 0;
|
|
|
+ let params = [{ uid: id, state: state}];
|
|
|
+ this.$confirm("确定" + "删除" + "此学生吗?", "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.ajax
|
|
|
+ .post(this.$store.state.api + "deleteStudent", params)
|
|
|
+ .then((res) => {
|
|
|
+ this.$message({
|
|
|
+ message: "操作成功",
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+ this.getStudent();
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ this.$message.error("操作失败");
|
|
|
+ console.error(err);
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch(() => {});
|
|
|
+ },
|
|
|
},
|
|
|
created() {
|
|
|
this.page = 1;
|
|
|
this.getStudent();
|
|
|
+ // this.getSchoolName();
|
|
|
},
|
|
|
};
|
|
|
</script>
|