passwordSettings.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <!--
  2. * @Description: create
  3. * @Version: 1.0
  4. * @Autor: XuTongZhang
  5. * @Date: 2020-07-28 17:34:44
  6. * @LastEditors: XuTongZhang
  7. * @LastEditTime: 2020-07-31 16:09:08
  8. -->
  9. <template>
  10. <div class="passwordSettings">
  11. <el-card class="box-card">
  12. <el-form ref="form" :model="form" :rules="rules" label-width="140px" label-position="left">
  13. <el-form-item label="输入旧密码" prop="oldPassword">
  14. <el-input v-model.trim="form.oldPassword" show-password maxlength="64" show-word-limit></el-input>
  15. </el-form-item>
  16. <el-form-item label="输入新密码" prop="newPassword">
  17. <el-input v-model.trim="form.newPassword" show-password maxlength="64" show-word-limit></el-input>
  18. </el-form-item>
  19. <el-form-item label="确认新密码" prop="confirmPassword">
  20. <el-input v-model.trim="form.confirmPassword" show-password maxlength="64" show-word-limit></el-input>
  21. </el-form-item>
  22. <el-form-item class="button-grounp">
  23. <el-button type="primary" @click="update">确认修改</el-button>
  24. </el-form-item>
  25. </el-form>
  26. </el-card>
  27. </div>
  28. </template>
  29. <script>
  30. export default {
  31. data () {
  32. let update = () => {
  33. let a
  34. this.$refs['form'].validate((valid) => {
  35. a = valid
  36. })
  37. if (!a) return
  38. let reqdata = {
  39. companyName: localStorage.getItem('companyName'),
  40. oldPassword: this.form.oldPassword,
  41. newPassword: this.form.newPassword
  42. }
  43. this.$api
  44. .post('/companyInfo/changePassword', {
  45. reqdata
  46. })
  47. .then((res) => {
  48. this.$message({
  49. type: 'success',
  50. message: '修改成功!'
  51. })
  52. })
  53. }
  54. let validator = (rule, value, callback) => {
  55. if (value === '') {
  56. callback(new Error('请再次输入新密码'))
  57. } else {
  58. if (value !== this.form.newPassword) {
  59. callback(new Error('密码输入不一致,请重新输入'))
  60. }
  61. callback()
  62. }
  63. }
  64. return {
  65. form: {},
  66. rules: {
  67. oldPassword: [{
  68. required: true,
  69. message: '请输入旧密码',
  70. trigger: 'blur'
  71. }],
  72. newPassword: [{
  73. required: true,
  74. message: '请输入新密码',
  75. trigger: 'blur'
  76. }],
  77. confirmPassword: [{
  78. required: true,
  79. validator,
  80. trigger: 'blur'
  81. }]
  82. },
  83. update
  84. }
  85. }
  86. }
  87. </script>
  88. <style lang="scss" scoped>
  89. .passwordSettings {
  90. display: flex;
  91. justify-content: center;
  92. align-content: center;
  93. }
  94. .box-card {
  95. width: 800rpx;
  96. padding: 18px 0;
  97. }
  98. .button-grounp {
  99. display: flex;
  100. justify-content: flex-end;
  101. }
  102. </style><style lang="scss">
  103. .passwordSettings {
  104. .el-input__inner {
  105. width: 400px !important;
  106. }
  107. }
  108. </style>