index.vue 7.57 KB
<template>
  <div>
    <back-box>
      <template slot="title">
        <span>个人信息</span>
      </template>
    </back-box>
    <div class="page-content">
      <div class="content-box">
        <i class="el-icon-edit" @click="diaSchool = true"></i>
        <ul class="school-info">
          <li class="school-item">
            <span class="s1">学校名称:</span>
            <span class="s2">{{ school.schoolName || "--" }}</span>
          </li>
          <li class="school-item">
            <span class="s1">授课端管理密码:</span>
            <span class="s2">{{ school.managePwd || "--" }}</span>
          </li>
          <li class="school-item">
            <span class="s1">教师姓名:</span>
            <span class="s2">{{ school.contactPerson || "--" }}</span>
          </li>
          <li class="school-item">
            <span class="s1">手机号码:</span>
            <span class="s2">{{ school.contactPhone || "--" }}</span>
          </li>
          <li class="school-item">
            <span class="s1">科目:</span>
            <span class="s2">{{
              school.sections | getSections(school.sections)
            }}</span>
          </li>
        
        </ul>
      </div>
    </div>
    <el-dialog title="修改个人信息" :visible.sync="diaSchool" width="400">
      <el-form
        ref="formSchool"
        class="form-box"
        :model="formSchool"
        :rules="rulesSchool"
        label-width="160px"
      >
        <el-form-item label="授课端管理密码:" prop="managePwd">
          <el-col :span="10">
            <el-input
              maxlength="20"
              v-model="formSchool.managePwd"
              show-password
              placeholder="请输入授课端管理密码"
            ></el-input>
          </el-col>
        </el-form-item>
        <el-form-item label="教师姓名:" prop="contactPerson"
          ><el-col :span="10"
            ><el-input
              maxlength="30"
              v-model="formSchool.contactPerson"
              placeholder="请输入教师姓名"
            ></el-input></el-col
        ></el-form-item>
        <el-form-item label="手机号码:" prop="contactPhone"
          ><el-col :span="10"
            ><el-input
              v-model="formSchool.contactPhone"
              type="number"
              oninput="if(value.length > 11) value = value.slice(0,11)"
              placeholder="请输入教师姓名手机号码"
            ></el-input></el-col
        ></el-form-item>
      </el-form>
      <div class="dialog-footer" slot="footer">
        <el-button @click="editSchool">确 定</el-button>
        <el-button @click="diaSchool = false">取 消</el-button>
      </div>
    </el-dialog>  
  </div>
</template>

<script>
import { downloadFile } from "@/utils";
export default {
  filters: {
    getSections(val) {
      let arr = val.split(",");
      let sections = arr.map((item) => {
        let txt;
        switch (item) {
          case "0":
            txt = "未知";
            break;
          case "1":
            txt = "小学";
            break;
          case "2":
            txt = "初中";
            break;
          case "3":
            txt = "高中";
            break;
          case "4":
            txt = "大学";
            break;
          case "7":
            txt = "未知";
            break;
          default:
            txt = "未知";
        }
        return txt;
      });
      return sections.join(",");
    },
  },
  data() {
    return {
      loading: false,
      diaSchool: false,
      school: {
        schoolName: "",
        managePwd: "",
        contactPerson: "",
        contactPhone: "",
        sections: "",
      },
      tableData: [],
      formSchool: {
        sections: "",
        managePwd: "",
        contactPerson: "",
        contactPhone: "",
      },
      subjectName: "",
      subjectList: [],
    };
  },
  created() {
    // this._QueryDataSchool();
    // this._QuerySubject();
  },
  methods: {
    addSubjectName() {
      if (!this.subjectName) {
        this.$message.warning("请填写科目名称");
        return;
      }else if(this.subjectList.includes(this.subjectName)){
        this.$message.warning("科目已存在,请重新填写~");
        return;
      }
      this.subjectList.push(this.subjectName);
      this.subjectName = "";
    },
    editSchool() {
      if (!this.formSchool.sections.length) {
        this.$message.error("请选择科目!");
        return;
      }
      if (!this.formSchool.managePwd) {
        this.$message.error("请填写密码!");
        return;
      }
      if (this.loading) {
        return;
      }
      this.$refs.formSchool.validate(async (valid) => {
        if (valid) {
          this.loading = true;
          let form = { ...this.formSchool };
          form.sections = this.formSchool.sections.join(",");
          const { data, status, info } = await this.$request.updateSchool({
            ...form,
          });
          this.loading = false;
          if (status === 0) {
            this.$message.success("修改成功~");
            this.diaSchool = false;
            this._QueryDataSchool();
          } else {
            this.$message.error(info);
          }
        } else {
          this.$message.error("数据有误,请检查!");
        }
      });
    },
    async _QueryDataSchool() {
      this.loading = true;
      const { data, status, info } = await this.$request.schoolDetail();
      this.loading = false;
      console.log(status);
      if (status === 0) {
        this.school = { ...data };
        for (let key in this.formSchool) {
          this.formSchool[key] = data[key] || "";
        }
        this.formSchool.sections = this.formSchool.sections.split(",");
      } else {
        this.$message.error(info);
      }
    },
    async _QuerySubject() {
      const { data, status, info } = await this.$request.subjectList();
      if (status === 0) {
        this.subjectList = [...data.subjectNames] || [];
      } else {
        this.$message.error(info);
      }
    },
    async downExcel() {
      let data = await this.$request.downDevice({
        id: this.id,
      });
      if (data && !data.code) {
        let blob = new Blob([data], {
          type: "application/vnd.ms-excel;charset=utf-8",
        });
        downloadFile(`设备信息.xlsx`, blob);
      } else {
        this.$message.error(data.info);
      }
    },
  },
};
</script>

<style lang="scss" scoped>
.page-content {
  padding: 20px;
  .content-box {
    background: #f8f8f8;
    border-radius: 16px;
    position: relative;
    .el-icon-edit {
      position: absolute;
      top: 12px;
      right: 12px;
      padding: 5px;
      font-size: 18px;
      cursor: pointer;
      &:hover {
        color: #36f;
      }
    }
  }
  .school-info {
    display: flex;
    flex-wrap: wrap;
    padding: 16px 0;
    border-bottom: 0.5px solid #f2f2f2;
    .school-item {
      width: 50%;
      line-height: 48px;
      padding-left: 100px;
      display: flex;
      box-sizing: border-box;
      .s1 {
        width: 160px;
        font-size: 15px;
        color: #888;
      }
      .s2 {
        flex: 1;
      }
    }
  }
}
.form-box {
  margin: 0 20px;
  .subject-box {
    height: 90px;
    overflow: hidden;
    position: relative;
    &.active {
      height: auto;
      overflow: auto;
    }
    .showAll {
      position: absolute;
      bottom: 0;
      right: 10px;
      font-size: 12px;
      color: #7f7f7f;
      cursor: pointer;
      padding: 2px;
      &:hover {
        color: #667ffd;
      }
    }
  }
}
.el-icon-plus {
  cursor: pointer;
  &:hover {
    color: #667ffd;
  }
}
</style>