personalCenter.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. <template>
  2. <view class="personalCenter">
  3. <view class="p_header">
  4. 个人信息
  5. </view>
  6. <view class="orderDetail_info">
  7. <scroll-view scroll-y class="orderDetail_infoItem">
  8. <view class="orderDetail_infoItem_header">
  9. <view class="orderDetail_infoItem_header_title">
  10. <view class="taskNameAndWorkerName">
  11. <text class="taskName">姓名:{{loginInfo.user?loginInfo.user.name:'暂无'}}</text>
  12. </view>
  13. </view>
  14. <text class="orderDetail_infoItem_header_more green">工号:{{loginInfo.user?loginInfo.user.account:'暂无'}}</text>
  15. </view>
  16. <view class="orderDetail_infoItem_item">
  17. <view class="orderDetail_infoItem_item_content">
  18. <text class="orderDetail_infoItem_item_name">所属院区</text>
  19. <text
  20. class="orderDetail_infoItem_item_value">{{loginInfo.user?(loginInfo.user.currentHospital?loginInfo.user.currentHospital.hosName:'暂无'):'暂无'}}</text>
  21. </view>
  22. <view class="orderDetail_infoItem_item_content">
  23. <text class="orderDetail_infoItem_item_name">所属科室</text>
  24. <text
  25. class="orderDetail_infoItem_item_value">{{loginInfo.user?(deptDisplay == 2?loginInfo.user.dept.deptalias:loginInfo.user.dept.dept):'暂无'}}</text>
  26. </view>
  27. </view>
  28. </scroll-view>
  29. </view>
  30. <view class="changeDept">
  31. <button type="primary" @click="showDeptModel">切换科室</button>
  32. <button type="primary" @click="changePwd">修改密码</button>
  33. <button type="primary" @click="logout">退出登录</button>
  34. </view>
  35. <seiminFooterNav></seiminFooterNav>
  36. <seiminModel ref="seiminModel"></seiminModel>
  37. <seiminPicker ref="sPicker" :title="pickerTitle" titleColor="#808080" titleFontSize="28rpx" confirmColor="#333"
  38. confirmFontSize="38rpx" confirmFontWeight="500" itemFontSize="32rpx" @onClose="closePicker"
  39. @onConfirm="confirmPicker" :pickerList="hospitalList">
  40. </seiminPicker>
  41. </view>
  42. </template>
  43. <script>
  44. import {
  45. mapState,
  46. mapMutations
  47. } from "vuex";
  48. import {
  49. reqLogout2,
  50. reqUppwd,
  51. } from "../../request/api.js";
  52. export default {
  53. data() {
  54. return {
  55. hospitalList: [], //当前用户权限中的院区列表
  56. pickerTitle: "", //选择院区picker的title
  57. };
  58. },
  59. computed: {
  60. ...mapState("login", ["loginInfo"]),
  61. ...mapState("other", ["deptDisplay"]),
  62. },
  63. mounted() {
  64. //选择院区picker的title
  65. this.pickerTitle = `您当前所属科室为<b class="green">${this.loginInfo.user.dept.dept}</b>,请您先选择院区`;
  66. //权限中的院区修改数据结构
  67. this.hospitalList = this.loginInfo.infoPermission.hospitals.map((v) => ({
  68. value: v.id,
  69. label: v.hosName,
  70. }));
  71. },
  72. methods: {
  73. ...mapMutations('other', [
  74. "changeSearchDeptParams",
  75. ]),
  76. // 切换科室弹窗
  77. showDeptModel() {
  78. const {
  79. user, //当前登录用户
  80. } = this.loginInfo;
  81. const userDept =
  82. user && user.dept ?
  83. this.deptDisplay == 1 ?
  84. user.dept.dept :
  85. user.dept.deptalias :
  86. "";
  87. this.$refs.seiminModel.showChangeDept({
  88. content: `您当前所属科室为<text class="green">${userDept}</text>,如与您实际科室不符点击<text class="red">切换科室</text>。`,
  89. btns: [{
  90. name: "知道了",
  91. textColor: "#49B856",
  92. flex: 2,
  93. },
  94. {
  95. name: "前往切换科室",
  96. textColor: "#666",
  97. flex: 3,
  98. click: (e) => {
  99. this.$refs.seiminModel.close();
  100. this.openPicker();
  101. },
  102. },
  103. ],
  104. });
  105. },
  106. //关闭
  107. closePicker() {
  108. this.$refs.sPicker._close();
  109. },
  110. //打开
  111. openPicker() {
  112. this.$refs.sPicker._open();
  113. let index = this.hospitalList.findIndex(v => v.value == this.loginInfo.user.currentHospital.id);
  114. this.$refs.sPicker._changeValue(index);
  115. },
  116. //确定:接收子组件传来的参数
  117. confirmPicker(checkedObj) {
  118. this.changeSearchDeptParams({
  119. backUrl: "/pages/personalCenter/personalCenter", //返回的url
  120. type: "changeDept_index", //首页切换科室
  121. hospital: checkedObj, //先选择院区
  122. });
  123. uni.navigateTo({
  124. url: "/pages/searchDept/searchDept",
  125. });
  126. },
  127. // 退出登录
  128. logout() {
  129. this.$refs.seiminModel.show({
  130. icon: "warn",
  131. content: '确定退出登录?',
  132. btns: [{
  133. click: () => {
  134. this.$refs.seiminModel.close();
  135. },
  136. }, {
  137. click: () => {
  138. uni.showLoading({
  139. mask: true,
  140. title: '加载中'
  141. })
  142. reqLogout2()
  143. .then((data) => {
  144. uni.hideLoading();
  145. if (data.status == 200) {
  146. this.$refs.seiminModel.close();
  147. this.$refs.seiminModel.show({
  148. skin: "toast",
  149. icon: "success",
  150. content: "退出成功",
  151. btns: [{
  152. click: () => {
  153. uni.navigateTo({
  154. url: '/pages/login/login'
  155. })
  156. }
  157. }]
  158. });
  159. } else {
  160. this.$refs.seiminModel.show({
  161. skin: "toast",
  162. icon: "error",
  163. content: data.error || "退出失败",
  164. });
  165. }
  166. });
  167. },
  168. }, ],
  169. })
  170. },
  171. // 修改密码
  172. changePwd() {
  173. this.$refs.seiminModel.show({
  174. skin: 'changePwd',
  175. title: '修改密码',
  176. btns: [{
  177. click: () => {
  178. this.$refs.seiminModel.close();
  179. },
  180. }, {
  181. click: () => {
  182. uni.showLoading({
  183. mask: true,
  184. title: '加载中'
  185. })
  186. console.log(this)
  187. let postData = {
  188. "userid": this.loginInfo.user.id,
  189. "pwdOld": this.$refs.seiminModel.pwdOld,
  190. "newPwd": this.$refs.seiminModel.newPwd,
  191. "newPwd2": this.$refs.seiminModel.newPwd2,
  192. };
  193. reqUppwd(postData)
  194. .then((data) => {
  195. uni.hideLoading();
  196. if (data.status == 200) {
  197. this.$refs.seiminModel.close();
  198. this.$refs.seiminModel.show({
  199. skin: "toast",
  200. icon: "success",
  201. content: "修改密码成功",
  202. btns: [{
  203. click: () => {
  204. uni.navigateTo({
  205. url: '/pages/login/login'
  206. })
  207. }
  208. }]
  209. });
  210. } else {
  211. this.$refs.seiminModel.show({
  212. skin: "toast",
  213. icon: "error",
  214. content: data.error || "修改密码失败",
  215. });
  216. }
  217. });
  218. },
  219. }, ],
  220. })
  221. },
  222. }
  223. }
  224. </script>
  225. <style lang="scss" scoped>
  226. .personalCenter {
  227. ::v-deep uni-button[type=primary] {
  228. background-color: $defaultColor;
  229. }
  230. .p_header {
  231. height: 88rpx;
  232. font-size: 46rpx;
  233. color: #333;
  234. font-weight: bold;
  235. @include flex(center, center);
  236. }
  237. .changeDept {
  238. margin: 24rpx 24rpx 0;
  239. button {
  240. margin-bottom: 16rpx;
  241. }
  242. }
  243. .orderDetail_info {
  244. padding: 0 24rpx;
  245. .orderDetail_infoItem {
  246. width: 702rpx;
  247. height: 25vh;
  248. background-color: #fff;
  249. border-radius: 8rpx;
  250. position: relative;
  251. padding: 0 24rpx 24rpx;
  252. font-size: 32rpx;
  253. @include border;
  254. @include semicircle(#f9fafb, 82rpx);
  255. @include flex(flex-start, stretch, column);
  256. .ji,
  257. .jiaji {
  258. width: 60rpx;
  259. position: absolute;
  260. right: 0;
  261. top: 0;
  262. }
  263. .orderDetail_infoItem_header {
  264. height: 86rpx;
  265. @include border($directive:bottom, $style:dashed);
  266. @include flex(space-between, center);
  267. .orderDetail_infoItem_header_title {
  268. color: #333;
  269. @include flex(flex-start, center);
  270. .taskNameAndWorkerName {
  271. flex: 1;
  272. @include flex;
  273. .taskName {
  274. max-width: 10em;
  275. font-size: 38rpx;
  276. font-weight: bold;
  277. @include clamp;
  278. }
  279. }
  280. }
  281. .orderDetail_infoItem_header_more {
  282. color: #333;
  283. font-weight: bold;
  284. font-size: 38rpx;
  285. @include clamp;
  286. }
  287. }
  288. .orderDetail_infoItem_item {
  289. padding-top: 12rpx;
  290. padding-bottom: 12rpx;
  291. color: #333;
  292. font-size: 30rpx;
  293. flex: 1;
  294. @include border(bottom);
  295. @include flex(flex-start, stretch, column);
  296. &.process {
  297. padding-top: 90rpx;
  298. padding-bottom: 90rpx;
  299. }
  300. &:last-of-type {
  301. border-bottom: none;
  302. }
  303. // 工单信息
  304. .orderDetail_infoItem_item_content {
  305. margin-top: 20rpx;
  306. @include flex(space-between, stretch);
  307. .orderDetail_infoItem_item_name {
  308. font-size: 34rpx;
  309. color: #666;
  310. max-width: 4em;
  311. }
  312. .orderDetail_infoItem_item_value {
  313. font-size: 38rpx;
  314. color: #333;
  315. font-weight: bold;
  316. max-width: 420rpx;
  317. text-align: justify;
  318. word-break: break-all;
  319. }
  320. }
  321. }
  322. }
  323. }
  324. }
  325. </style>