personalCenter.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  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. </view>
  33. <seiminFooterNav></seiminFooterNav>
  34. <seiminModel ref="seiminModel"></seiminModel>
  35. <seiminPicker ref="sPicker" :title="pickerTitle" titleColor="#808080" titleFontSize="28rpx" confirmColor="#333"
  36. confirmFontSize="38rpx" confirmFontWeight="500" itemFontSize="32rpx" @onClose="closePicker"
  37. @onConfirm="confirmPicker" :pickerList="hospitalList">
  38. </seiminPicker>
  39. </view>
  40. </template>
  41. <script>
  42. import {
  43. mapState,
  44. mapMutations
  45. } from "vuex";
  46. export default {
  47. data() {
  48. return {
  49. hospitalList: [], //当前用户权限中的院区列表
  50. pickerTitle: "", //选择院区picker的title
  51. };
  52. },
  53. computed: {
  54. ...mapState("login", ["loginInfo"]),
  55. ...mapState("other", ["deptDisplay"]),
  56. },
  57. mounted() {
  58. //选择院区picker的title
  59. this.pickerTitle = `您当前所属科室为<b class="green">${this.loginInfo.user.dept.dept}</b>,请您先选择院区`;
  60. //权限中的院区修改数据结构
  61. this.hospitalList = this.loginInfo.infoPermission.hospitals.map((v) => ({
  62. value: v.id,
  63. label: v.hosName,
  64. }));
  65. },
  66. methods: {
  67. ...mapMutations('other', [
  68. "changeSearchDeptParams",
  69. ]),
  70. // 切换科室弹窗
  71. showDeptModel() {
  72. const {
  73. user, //当前登录用户
  74. } = this.loginInfo;
  75. const userDept =
  76. user && user.dept ?
  77. this.deptDisplay == 1 ?
  78. user.dept.dept :
  79. user.dept.deptalias :
  80. "";
  81. this.$refs.seiminModel.showChangeDept({
  82. content: `您当前所属科室为<text class="green">${userDept}</text>,如与您实际科室不符点击<text class="red">切换科室</text>。`,
  83. btns: [{
  84. name: "知道了",
  85. textColor: "#49B856",
  86. flex: 2,
  87. },
  88. {
  89. name: "前往切换科室",
  90. textColor: "#666",
  91. flex: 3,
  92. click: (e) => {
  93. this.$refs.seiminModel.close();
  94. this.openPicker();
  95. },
  96. },
  97. ],
  98. });
  99. },
  100. //关闭
  101. closePicker() {
  102. this.$refs.sPicker._close();
  103. },
  104. //打开
  105. openPicker() {
  106. this.$refs.sPicker._open();
  107. let index = this.hospitalList.findIndex(v => v.value == this.loginInfo.user.currentHospital.id);
  108. this.$refs.sPicker._changeValue(index);
  109. },
  110. //确定:接收子组件传来的参数
  111. confirmPicker(checkedObj) {
  112. this.changeSearchDeptParams({
  113. backUrl: "/pages/personalCenter/personalCenter", //返回的url
  114. type: "changeDept_index", //首页切换科室
  115. hospital: checkedObj, //先选择院区
  116. });
  117. uni.navigateTo({
  118. url: "/pages/searchDept/searchDept",
  119. });
  120. },
  121. }
  122. }
  123. </script>
  124. <style lang="scss" scoped>
  125. .personalCenter {
  126. ::v-deep uni-button[type=primary] {
  127. background-color: $defaultColor;
  128. }
  129. .p_header {
  130. height: 88rpx;
  131. font-size: 46rpx;
  132. color: #333;
  133. font-weight: bold;
  134. @include flex(center, center);
  135. }
  136. .changeDept {
  137. margin: 24rpx 24rpx 0;
  138. }
  139. .orderDetail_info {
  140. padding: 0 24rpx;
  141. .orderDetail_infoItem {
  142. width: 702rpx;
  143. height: 30vh;
  144. background-color: #fff;
  145. border-radius: 8rpx;
  146. position: relative;
  147. padding: 0 24rpx 24rpx;
  148. font-size: 32rpx;
  149. @include border;
  150. @include semicircle(#f9fafb, 82rpx);
  151. @include flex(flex-start, stretch, column);
  152. .ji,
  153. .jiaji {
  154. width: 60rpx;
  155. position: absolute;
  156. right: 0;
  157. top: 0;
  158. }
  159. .orderDetail_infoItem_header {
  160. height: 86rpx;
  161. @include border($directive:bottom, $style:dashed);
  162. @include flex(space-between, center);
  163. .orderDetail_infoItem_header_title {
  164. color: #333;
  165. @include flex(flex-start, center);
  166. .taskNameAndWorkerName {
  167. flex: 1;
  168. @include flex;
  169. .taskName {
  170. max-width: 10em;
  171. font-size: 38rpx;
  172. font-weight: bold;
  173. @include clamp;
  174. }
  175. }
  176. }
  177. .orderDetail_infoItem_header_more {
  178. color: #333;
  179. font-weight: bold;
  180. font-size: 38rpx;
  181. @include clamp;
  182. }
  183. }
  184. .orderDetail_infoItem_item {
  185. padding-top: 12rpx;
  186. padding-bottom: 12rpx;
  187. color: #333;
  188. font-size: 30rpx;
  189. flex: 1;
  190. @include border(bottom);
  191. @include flex(flex-start, stretch, column);
  192. &.process {
  193. padding-top: 90rpx;
  194. padding-bottom: 90rpx;
  195. }
  196. &:last-of-type {
  197. border-bottom: none;
  198. }
  199. // 工单信息
  200. .orderDetail_infoItem_item_content {
  201. margin-top: 20rpx;
  202. @include flex(space-between, stretch);
  203. .orderDetail_infoItem_item_name {
  204. font-size: 34rpx;
  205. color: #666;
  206. max-width: 4em;
  207. }
  208. .orderDetail_infoItem_item_value {
  209. font-size: 38rpx;
  210. color: #333;
  211. font-weight: bold;
  212. max-width: 420rpx;
  213. text-align: justify;
  214. word-break: break-all;
  215. }
  216. }
  217. }
  218. }
  219. }
  220. }
  221. </style>