personal.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <template>
  2. <div class="personal">
  3. <!-- 头部细节部分 -->
  4. <div class="title">
  5. <el-row>
  6. <el-col :span="24">
  7. <div class="top">
  8. <div class="geren">个人中心</div>
  9. <div class="line"></div>
  10. <div class="from">
  11. <table v-model="formUserList">
  12. <tr>
  13. <td><span>用户名</span></td>
  14. <td><span>{{formUserList.userName}}</span></td>
  15. </tr>
  16. <tr>
  17. <td><span>姓名</span></td>
  18. <td><span>{{formUserList.name}}</span></td>
  19. </tr>
  20. <tr>
  21. <td><span>企业名称</span></td>
  22. <td><span>{{formUserList.company}}</span></td>
  23. </tr>
  24. <tr>
  25. <td><span>手机号</span></td>
  26. <td><span>{{formUserList.phone}}</span></td>
  27. </tr>
  28. <tr>
  29. <td><span>余额</span></td>
  30. <td><span>{{formUserList.fee}}</span></td>
  31. </tr>
  32. <tr>
  33. <td><span>密码</span></td>
  34. <td><span style="color: blue; cursor:pointer;" @click="ChangeThePassword">修改密码</span></td>
  35. </tr>
  36. </table>
  37. </div>
  38. </div>
  39. </el-col>
  40. </el-row>
  41. </div>
  42. <!-- 重置密码 -->
  43. <el-dialog
  44. @close="handleEditDialogClose"
  45. :visible.sync="changepassword"
  46. style="font-size: 0px;">
  47. <div class="tou">用户--重置密码</div>
  48. <div class="line"></div>
  49. <el-form
  50. label-position="right"
  51. label-width="80px"
  52. :model="formList">
  53. <el-form-item label="用户名">
  54. <el-input v-model="formList.userName" auto-complete="off" placeholder="请输入用户"></el-input>
  55. </el-form-item>
  56. <el-form-item label="新密码">
  57. <el-input v-model="formList.password" type="password" auto-complete="off" placeholder="请输入新密码"></el-input>
  58. </el-form-item>
  59. </el-form>
  60. <div slot="footer" class="dialog-footer">
  61. <el-button @click="changepassword = false" type="info">取 消</el-button>
  62. <el-button type="primary" @click="resetPassword">修 改</el-button>
  63. </div>
  64. </el-dialog>
  65. </div>
  66. </template>
  67. <script>
  68. export default{
  69. data() {
  70. return {
  71. formUserList: {
  72. "userName":"",
  73. "password": "",
  74. "price": "",
  75. "id":"",
  76. "name": "",
  77. "phone":"",
  78. "roleId": "",
  79. "money": "",
  80. "isLock":"",
  81. "dutyParagraph": "",
  82. "company": "",
  83. "threshold": "",
  84. "autoUpdate": ""
  85. },
  86. // autoUpdate: 1,
  87. formupdateList: {
  88. "id": "",
  89. "autoUpdate": '',
  90. },
  91. formList: {
  92. "id":"",
  93. "userName":"",
  94. "password": "",
  95. },
  96. formthresholdList: {
  97. "id": "",
  98. "threshold": ""
  99. },
  100. changepassword: false
  101. }
  102. },
  103. created() {
  104. this.loadData();
  105. },
  106. methods: {
  107. async loadData() {
  108. this.formUserList.userId = sessionStorage.getItem('userId');
  109. this.formupdateList.id = sessionStorage.getItem('userId');
  110. this.formthresholdList.id = sessionStorage.getItem('userId');
  111. const response = await this.$http.get(`user/${this.formUserList.userId}`);
  112. if (response.data.code === 0) {
  113. this.formUserList = response.data.data;
  114. this.formupdateList.autoUpdate = response.data.data.autoUpdate;
  115. };
  116. },
  117. // 打开修改密码的弹框
  118. ChangeThePassword() {
  119. this.changepassword = true;
  120. this.formList.userName = this.formUserList.userName;
  121. this.formList.id = this.formUserList.id;
  122. },
  123. // 修改是否自动更新开票中的发票信息
  124. async updateInvoiceMessage() {
  125. this.formupdateList.autoUpdate = this.formupdateList.autoUpdate;
  126. const response = await this.$http.put(`user/auto`, this.formupdateList);
  127. if(response.data.code === 0) {
  128. this.loadData();
  129. this.$message({
  130. type: 'success',
  131. message: '修改成功'
  132. });
  133. }else {
  134. this.$message({
  135. type: 'error',
  136. message: '修改失败'
  137. });
  138. }
  139. },
  140. // 修改密码
  141. async resetPassword() {
  142. const response = await this.$http.put(`user/restPassword`, this.formList);
  143. if(response.data.code === 0) {
  144. this.loadData();
  145. this.changepassword = false;
  146. this.$router.push('/login');
  147. this.$message({
  148. type: 'success',
  149. message: '修改成功'
  150. });
  151. }else {
  152. this.$message({
  153. type: 'error',
  154. message: '修改失败'
  155. });
  156. }
  157. },
  158. //更改阈值
  159. async changeThreshold() {
  160. this.formthresholdList.id = this.formUserList.id;
  161. this.formthresholdList.threshold = this.formUserList.threshold;
  162. const response = await this.$http.put(`user`, this.formthresholdList);
  163. if(response.data.code === 0) {
  164. this.$message({
  165. type: 'success',
  166. message: '修改成功'
  167. });
  168. }else {
  169. this.$message({
  170. type: 'error',
  171. message: '修改失败'
  172. });
  173. }
  174. },
  175. handleEditDialogClose() {
  176. for (var key in this.formList) {
  177. this.formList[key] = '';
  178. };
  179. },
  180. }
  181. };
  182. </script>
  183. <style>
  184. .personal {
  185. border: 1px solid #d9d9d9;
  186. border-radius: 10px;
  187. }
  188. .personal .top {
  189. padding: 20px;
  190. }
  191. .personal .geren {
  192. font-size: 25px;
  193. text-align: center;
  194. padding-top: 15px;
  195. }
  196. .personal .line {
  197. margin-top: 20px;
  198. margin-bottom: 20px;
  199. width: 100%;
  200. height: 2px;
  201. background-color: #d9d9d9;
  202. }
  203. .personal .tou {
  204. font-size: 20px;
  205. height: 30px;
  206. line-height: 30px;
  207. padding-top: 15px;
  208. }
  209. .personal .el-dialog__header, .el-dialog__body {
  210. padding: 0 20px;
  211. }
  212. .personal table {
  213. width: 100%;
  214. border-collapse:collapse;
  215. }
  216. .personal table th {
  217. border: 1px solid #96989f;
  218. text-align: center;
  219. height: 40px;
  220. line-height: 40px;
  221. }
  222. .personal table td {
  223. width: 50%;
  224. border: 1px solid #96989f;
  225. text-align: left;
  226. margin-left: 20px;
  227. height: 40px;
  228. line-height: 40px;
  229. }
  230. .personal table span {
  231. margin-left: 30px;
  232. font-size: 18px;
  233. }
  234. .personal .el-input__inner {
  235. height: 30px !important;
  236. line-height: 30px !important;
  237. }
  238. </style>