index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  1. <template>
  2. <el-dialog title="编辑个人信息" :visible.sync="dialogVisibleInfo" :append-to-body="true" width="500px"
  3. :before-close="handleClose" class="dialog_diy">
  4. <div style="width:100%;height: 100%;">
  5. <div class="info_box">
  6. <div class="img" v-loading="imgLoading">
  7. <img :src="info.headportrait ? info.headportrait : avator" alt="">
  8. <div class="mask" @click.stop="addImg($event)">
  9. <img src="../../../../../assets/icon/test/camera_icon.png" alt="">
  10. <input type="file" accept="image/*" capture="camera" style="display: none"
  11. @change="beforeUpload($event)" />
  12. </div>
  13. </div>
  14. <div class="info_span">
  15. <span>姓名:</span>
  16. <div>
  17. <el-input v-model="info.username" placeholder="请输入姓名"></el-input>
  18. </div>
  19. </div>
  20. <div class="info_span">
  21. <span>教研室:</span>
  22. <div>
  23. <el-select multiple collapse-tags v-model="info.teacherOffice" placeholder="请选择教研室"
  24. @change="Ochange" style="width: 100%;">
  25. <el-option v-for="(item, index) in classJuri" :key="index" :label="item.name"
  26. :value="item.id"></el-option>
  27. </el-select>
  28. </div>
  29. </div>
  30. <div v-if="!oidArray.includes(oid)" class="info_span">
  31. <span>学科:</span>
  32. <div>
  33. <el-input v-model="info.subject" placeholder="请输入学科"></el-input>
  34. </div>
  35. </div>
  36. <div v-if="!oidArray.includes(oid)" class="info_span">
  37. <span>职务:</span>
  38. <div>
  39. <el-input v-model="info.job" placeholder="请输入职务"></el-input>
  40. </div>
  41. </div>
  42. <div class="info_span">
  43. <span>简介:</span>
  44. <div>
  45. <!-- <el-input v-model="info.intro" placeholder="想说点什么..."></el-input> -->
  46. <textarea v-autoHeight="68" rows="2" class="binfo_input binfo_textarea" cols v-model="info.intro"
  47. placeholder="想说点什么..."></textarea>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. <span slot="footer" class="dialog-footer">
  53. <el-button type="primary" @click="confirm()">确 认</el-button>
  54. <el-button @click="close()">关 闭</el-button>
  55. </span>
  56. </el-dialog>
  57. </template>
  58. <script>
  59. import avator from '../../../../../assets/icon/test/teacher.jpg'
  60. export default {
  61. props: {
  62. dialogVisibleInfo: {
  63. type: Boolean,
  64. default: false
  65. },
  66. userid: {
  67. type: String
  68. },
  69. oid: {
  70. type: String
  71. }
  72. },
  73. watch: {
  74. dialogVisibleInfo(newVal) {
  75. if (newVal) {
  76. this.getClass2();
  77. }
  78. }
  79. },
  80. directives: {
  81. autoHeight: {
  82. update(el, binding) {
  83. const { value } = binding
  84. if (value && typeof value === 'number') {
  85. el.style.height = `${value}px`
  86. } else {
  87. el.style.height = 'auto'
  88. }
  89. },
  90. componentUpdated(el) {
  91. el.style.height = `${el.scrollHeight + 5}px`
  92. },
  93. },
  94. },
  95. data() {
  96. return {
  97. avator: avator,
  98. info: {},
  99. imgLoading: false,
  100. classJuri: [],
  101. oidArray: ["d67940a5-510c-40ea-9c9a-2631ab03013a"]
  102. };
  103. },
  104. methods: {
  105. handleClose(done) {
  106. this.close();
  107. done();
  108. },
  109. close() {
  110. this.$emit("update:dialogVisibleInfo", false);
  111. },
  112. confirm() {
  113. if (!this.info.username) {
  114. this.$message.error("姓名不能为空!");
  115. return
  116. }
  117. let params = [{
  118. userid: this.userid,
  119. username: this.info.username,
  120. cclassid: this.info.teacherOffice.join(","),
  121. job: this.info.job,
  122. subject: this.info.subject,
  123. intro: this.info.intro,
  124. h: this.info.headportrait ? this.info.headportrait : '',
  125. }]
  126. this.ajax
  127. .post(this.$store.state.api + "updateUserInfoText", params)
  128. .then((res) => {
  129. this.$message.success('修改成功')
  130. this.$emit("update:dialogVisibleInfo", false);
  131. })
  132. .catch((err) => {
  133. this.$message.error("网络不佳");
  134. console.error(err);
  135. });
  136. },
  137. getData() {
  138. let params = {
  139. uid: this.userid,
  140. };
  141. this.ajax
  142. .get(this.$store.state.api + "selectTestUser", params)
  143. .then((res) => {
  144. this.info = res.data[0][0]
  145. this.info.teacherOffice = []
  146. let array = []
  147. for(var i = 0; i < this.classJuri.length; i++){
  148. array.push(this.classJuri[i].id)
  149. }
  150. this.info.teacherOffice = this.arrayToArray(this.info.cclassid.split(','), array)
  151. })
  152. .catch((err) => {
  153. console.error(err);
  154. });
  155. },
  156. arrayToArray(arrayo, arrayt) {
  157. let array1 = arrayo;
  158. let array2 = arrayt;
  159. let commonElements = [];
  160. for (let i = 0; i < array1.length; i++) {
  161. for (let j = 0; j < array2.length; j++) {
  162. if (array1[i] === array2[j]) {
  163. commonElements.push(array1[i]);
  164. }
  165. }
  166. }
  167. return commonElements;
  168. },
  169. addImg(e) {
  170. var el = e.currentTarget;
  171. el.getElementsByTagName("input")[0].click();
  172. e.target.value = "";
  173. },
  174. beforeUpload(event, type) {
  175. // const loading = this.openLoading();
  176. var file = event.target.files[0];
  177. var credentials = {
  178. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  179. secretAccessKey: "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",
  180. }; //秘钥形式的登录上传
  181. window.AWS.config.update(credentials);
  182. window.AWS.config.region = "cn-northwest-1"; //设置区域
  183. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  184. var imgA = [
  185. "png",
  186. "jpg",
  187. "jpeg",
  188. "bmp",
  189. "gif",
  190. "webp",
  191. "psd",
  192. "svg",
  193. "tiff",
  194. ];
  195. if (imgA.indexOf(file.name.split(".")[file.name.split(".").length - 1]) == -1) {
  196. this.$message.error("图片格式错误")
  197. return;
  198. }
  199. this.imgLoading = true
  200. var _this = this;
  201. if (file) {
  202. var params = {
  203. Key:
  204. file.name.split(".")[0] +
  205. new Date().getTime() +
  206. "." +
  207. file.name.split(".")[file.name.split(".").length - 1],
  208. ContentType: file.type,
  209. Body: file,
  210. "Access-Control-Allow-Credentials": "*",
  211. ACL: "public-read",
  212. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  213. var options = {
  214. partSize: 2048 * 1024 * 1024,
  215. queueSize: 2,
  216. leavePartsOnError: true,
  217. };
  218. bucket
  219. .upload(params, options)
  220. .on("httpUploadProgress", function (evt) {
  221. //这里可以写进度条
  222. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  223. })
  224. .send(function (err, data) {
  225. _this.imgLoading = false
  226. // loading.close();
  227. if (err) {
  228. _this.$message.error("上传失败");
  229. } else {
  230. _this.info.headportrait = data.Location
  231. _this.$forceUpdate();
  232. console.log(_this.checkJson);
  233. console.log(data.Location);
  234. }
  235. });
  236. }
  237. },
  238. //获取教研室列表
  239. getClass2() {
  240. let params = {
  241. oid: this.oid,
  242. };
  243. this.ajax
  244. .get(this.$store.state.api + "selectTeacherOfficeBySchool", params)
  245. .then((res) => {
  246. this.classJuri = res.data[0];
  247. this.getData();
  248. })
  249. .catch((err) => {
  250. this.isLoading = false;
  251. console.error(err);
  252. });
  253. },
  254. Ochange() {
  255. this.$forceUpdate()
  256. }
  257. }
  258. };
  259. </script>
  260. <style scoped>
  261. .dialog_diy>>>.el-dialog {
  262. /* height: 100%; */
  263. margin: 10vh auto !important;
  264. }
  265. .dialog_diy>>>.el-dialog__header {
  266. background: #454545 !important;
  267. padding: 15px 20px;
  268. }
  269. .dialog_diy>>>.el-dialog__body {
  270. height: calc(100% - 124px);
  271. box-sizing: border-box;
  272. padding: 0px;
  273. }
  274. .dialog_diy>>>.el-dialog__title {
  275. color: #fff;
  276. }
  277. .dialog_diy>>>.el-dialog__headerbtn {
  278. top: 19px;
  279. }
  280. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
  281. color: #fff;
  282. }
  283. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
  284. color: #fff;
  285. }
  286. .dialog_diy>>>.el-dialog__body,
  287. .dialog_diy>>>.el-dialog__footer {
  288. background: #fafafa;
  289. }
  290. .info_box {
  291. width: 100%;
  292. display: flex;
  293. flex-direction: column;
  294. align-items: center;
  295. padding: 30px 0;
  296. }
  297. .info_box>.img {
  298. width: 80px;
  299. height: 80px;
  300. overflow: hidden;
  301. border-radius: 50%;
  302. position: relative;
  303. }
  304. .info_box>.img:hover>.mask {
  305. display: flex;
  306. }
  307. .info_box>.img>.mask {
  308. cursor: pointer;
  309. position: absolute;
  310. top: 0;
  311. left: 0;
  312. width: 100%;
  313. height: 100%;
  314. background: rgba(0, 0, 0, 0.5);
  315. /* display: flex; */
  316. align-items: center;
  317. justify-content: center;
  318. display: none;
  319. }
  320. .info_box>.img>.mask>img {
  321. width: 20px;
  322. }
  323. .info_box>.img>img {
  324. width: 100%;
  325. height: 100%;
  326. object-fit: cover;
  327. }
  328. .binfo_input {
  329. width: 100%;
  330. margin: 0;
  331. padding: 12px 14px;
  332. display: block;
  333. min-width: 0;
  334. outline: none;
  335. box-sizing: border-box;
  336. background: none;
  337. border: none;
  338. border-radius: 4px;
  339. background: #fff;
  340. font-size: 16px;
  341. resize: none;
  342. font-family: 'Microsoft YaHei';
  343. min-height: 48px;
  344. /* border: 1px solid #3682fc00; */
  345. border: 1px solid #C0C4CC;
  346. }
  347. .binfo_textarea {
  348. border: 1px solid #C0C4CC;
  349. font-size: 16px;
  350. resize: none;
  351. /* background: #f6f6f6; */
  352. font-family: 'Microsoft YaHei';
  353. font-size: 14px;
  354. color: #606266;
  355. }
  356. .binfo_input:focus-visible {
  357. border: 1px solid #3681FC !important;
  358. }
  359. .binfo_textarea::-webkit-input-placeholder {
  360. /* WebKit browsers */
  361. color: rgb(192, 196, 204);
  362. }
  363. .binfo_textarea:-moz-placeholder {
  364. /* Mozilla Firefox 4 to 18 */
  365. color: rgb(192, 196, 204);
  366. }
  367. .binfo_textarea::-moz-placeholder {
  368. /* Mozilla Firefox 19+ */
  369. color: rgb(192, 196, 204);
  370. }
  371. .binfo_textarea:-ms-input-placeholder {
  372. /* Internet Explorer 10+ */
  373. color: rgb(192, 196, 204);
  374. }
  375. .info_span {
  376. display: flex;
  377. margin-top: 10px;
  378. }
  379. .info_span>span:nth-child(1) {
  380. margin-top: 10px;
  381. width: 100px;
  382. text-align: right;
  383. }
  384. .info_span>div {
  385. width: 250px;
  386. }
  387. </style>