Blame view

src/views/basic/userInfo/index.vue 8.24 KB
d01c5799   梁保满   随堂问 报表开发
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  <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>
          <i class="el-icon-key" @click="diaPass = true"></i>
          <ul class="school-info">
            <li class="school-item">
              <span class="s1">学校名称:</span>
              <span class="s2">{{ Info.tenantName || "--" }}</span>
            </li>
            <li class="school-item">
              <span class="s1">教师姓名:</span>
              <span class="s2">{{ Info.contactPerson || "--" }}</span>
            </li>
            <li class="school-item">
              <span class="s1">手机号码:</span>
              <span class="s2">{{ Info.contactPhone || "--" }}</span>
            </li>
          </ul>
        </div>
      </div>
f45b3c05   LH_PC   云平台新UI界面
28
29
30
31
32
33
34
35
36
37
      <el-dialog :append-to-body="true" :close-on-click-modal="false" 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="tenantName"><el-col :span="10"><el-input maxlength="30"
                v-model="formSchool.tenantName" 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>
d01c5799   梁保满   随堂问 报表开发
38
39
40
41
42
43
        </el-form>
        <div class="dialog-footer" slot="footer">
          <el-button @click="editSchool">确 定</el-button>
          <el-button @click="diaSchool = false">取 消</el-button>
        </div>
      </el-dialog>
f45b3c05   LH_PC   云平台新UI界面
44
45
46
47
48
49
50
51
      <el-dialog :append-to-body="true" :close-on-click-modal="false" title="修改密码" :visible.sync="diaPass" width="400">
        <el-form ref="formPass" class="form-box" :model="password" :rules="rulesPassword" label-width="160px">
          <el-form-item label="旧密码:" prop="oldPassword"><el-col :span="10"><el-input maxlength="30"
                v-model="password.oldPassword" placeholder="请输入密码" show-password></el-input></el-col></el-form-item>
          <el-form-item label="新密码:" prop="password"><el-col :span="10"><el-input maxlength="30"
                v-model="password.password" placeholder="请输入新密码" show-password></el-input></el-col></el-form-item>
          <el-form-item label="确认密码:" prop="resetPassword"><el-col :span="10"><el-input maxlength="30"
                v-model="password.resetPassword" placeholder="请输入新密码" show-password></el-input></el-col></el-form-item>
d01c5799   梁保满   随堂问 报表开发
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
        </el-form>
        <div class="dialog-footer" slot="footer">
          <el-button @click="editPass">确 定</el-button>
          <el-button @click="diaPass = false">取 消</el-button>
        </div>
      </el-dialog>
    </div>
  </template>
  
  <script>
  import { downloadFile, encryptLoginPassword } from "@/utils";
  export default {
    data() {
      return {
        loading: false,
        diaSchool: false,
        diaPass: false,
        Info: {
          tenantName: "",
          contactPerson: "",
          contactPhone: "",
          sections: "",
        },
        password: {
          oldPassword: "",
          password: "",
          resetPassword: "",
        },
        rulesPassword: {
          oldPassword: [
            { required: true, message: "请输入旧密码", trigger: "blur" },
          ],
          password: [
            { required: true, message: "请输入新密码", trigger: "blur" },
          ],
          resetPassword: [
            { required: true, message: "请输入新密码", trigger: "blur" },
          ],
        },
        tableData: [],
        formSchool: {
          tenantName: "",
          contactPerson: "",
          contactPhone: "",
        },
        rulesSchool: {},
      };
    },
    created() {
      this._QueryData();
    },
    methods: {
      editSchool() {
        if (this.loading) {
          return;
        }
        this.$refs.formSchool.validate(async (valid) => {
          if (valid) {
            this.loading = true;
            let form = { ...this.formSchool };
            const { data, status, info } = await this.$request.modifyInfo({
              ...form,
            });
            this.loading = false;
            if (status === 0) {
              this.$message.success("修改成功~");
              this.diaSchool = false;
              this._QueryData();
            } else {
              this.$message.error(info);
            }
          } else {
            this.$message.error("数据有误,请检查!");
          }
        });
      },
      editPass() {
        if (this.loading) {
          return;
        }
        this.$refs.formPass.validate(async (valid) => {
          if (valid) {
            if (this.password.password != this.password.resetPassword) {
              this.$message.warning("两次输入密码不一致请检查!");
              return;
            }
            this.loading = true;
            const { data, status, info } = await this.$request.modifyInfo({
              oldPassword: encryptLoginPassword(this.password.oldPassword),
              password: encryptLoginPassword(this.password.password),
            });
            this.loading = false;
            if (status === 0) {
              this.$message.success("密码修改成功~");
              this.diaPass = false;
              const res = await this.$request.logout();
              this.$store.commit("setToken", "");
              this.$store.commit("setInfo", {});
              this.$store.commit("setRouters", []);
              this.$store.commit("resetTabnavBox");
              this.$router.push({
                path: "/login",
              });
            } else {
              this.$message.error(info);
            }
          } else {
            this.$message.error("数据有误,请检查!");
          }
        });
      },
      async _QueryData() {
        this.loading = true;
        const { data, status, info } = await this.$request.getInfo();
        this.loading = false;
f45b3c05   LH_PC   云平台新UI界面
167
  
d01c5799   梁保满   随堂问 报表开发
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
        if (status === 0) {
          this.Info = { ...data };
          for (let key in this.formSchool) {
            this.formSchool[key] = data[key] || "";
          }
        } 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;
f45b3c05   LH_PC   云平台新UI界面
197
  
d01c5799   梁保满   随堂问 报表开发
198
199
200
201
    .content-box {
      background: #f8f8f8;
      border-radius: 16px;
      position: relative;
f45b3c05   LH_PC   云平台新UI界面
202
  
d01c5799   梁保满   随堂问 报表开发
203
204
205
206
207
208
209
      .el-icon-edit {
        position: absolute;
        top: 12px;
        right: 40px;
        padding: 5px;
        font-size: 18px;
        cursor: pointer;
f45b3c05   LH_PC   云平台新UI界面
210
  
d01c5799   梁保满   随堂问 报表开发
211
212
213
214
        &:hover {
          color: #36f;
        }
      }
f45b3c05   LH_PC   云平台新UI界面
215
  
d01c5799   梁保满   随堂问 报表开发
216
217
218
219
220
221
222
      .el-icon-key {
        position: absolute;
        top: 12px;
        right: 12px;
        padding: 5px;
        font-size: 18px;
        cursor: pointer;
f45b3c05   LH_PC   云平台新UI界面
223
  
d01c5799   梁保满   随堂问 报表开发
224
225
226
227
228
        &:hover {
          color: #36f;
        }
      }
    }
f45b3c05   LH_PC   云平台新UI界面
229
  
d01c5799   梁保满   随堂问 报表开发
230
231
232
233
234
    .school-info {
      display: flex;
      flex-wrap: wrap;
      padding: 16px 0;
      border-bottom: 0.5px solid #f2f2f2;
f45b3c05   LH_PC   云平台新UI界面
235
  
d01c5799   梁保满   随堂问 报表开发
236
237
238
239
240
241
      .school-item {
        width: 50%;
        line-height: 48px;
        padding-left: 100px;
        display: flex;
        box-sizing: border-box;
f45b3c05   LH_PC   云平台新UI界面
242
  
d01c5799   梁保满   随堂问 报表开发
243
244
245
246
247
        .s1 {
          width: 160px;
          font-size: 15px;
          color: #888;
        }
f45b3c05   LH_PC   云平台新UI界面
248
  
d01c5799   梁保满   随堂问 报表开发
249
250
251
252
253
254
        .s2 {
          flex: 1;
        }
      }
    }
  }
f45b3c05   LH_PC   云平台新UI界面
255
  
d01c5799   梁保满   随堂问 报表开发
256
257
  .form-box {
    margin: 0 20px;
f45b3c05   LH_PC   云平台新UI界面
258
  
d01c5799   梁保满   随堂问 报表开发
259
260
261
262
    .subject-box {
      height: 90px;
      overflow: hidden;
      position: relative;
f45b3c05   LH_PC   云平台新UI界面
263
  
d01c5799   梁保满   随堂问 报表开发
264
265
266
267
      &.active {
        height: auto;
        overflow: auto;
      }
f45b3c05   LH_PC   云平台新UI界面
268
  
d01c5799   梁保满   随堂问 报表开发
269
270
271
272
273
274
275
276
      .showAll {
        position: absolute;
        bottom: 0;
        right: 10px;
        font-size: 12px;
        color: #7f7f7f;
        cursor: pointer;
        padding: 2px;
f45b3c05   LH_PC   云平台新UI界面
277
  
d01c5799   梁保满   随堂问 报表开发
278
279
280
281
282
283
        &:hover {
          color: #667ffd;
        }
      }
    }
  }
f45b3c05   LH_PC   云平台新UI界面
284
  
d01c5799   梁保满   随堂问 报表开发
285
286
  .el-icon-plus {
    cursor: pointer;
f45b3c05   LH_PC   云平台新UI界面
287
  
d01c5799   梁保满   随堂问 报表开发
288
289
290
291
292
    &:hover {
      color: #667ffd;
    }
  }
  </style>