config.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. <template>
  2. <view class="mine">
  3. <scroll-view scroll-y class="body">
  4. <view class="bottom">
  5. <view class="bottom_name">个人信息</view>
  6. <view class="bottom_list">
  7. <view class="bottom_list_item">
  8. <view class="name"><text class="required newicon newicon-bitian"></text>工号</view>
  9. <view class="value no-mar">{{loginUserStore.loginUser.user.account}}</view>
  10. </view>
  11. <view class="bottom_list_item">
  12. <view class="name"><text class="required newicon newicon-bitian"></text>姓名</view>
  13. <view class="value no-mar">{{loginUserStore.loginUser.user.name}}</view>
  14. </view>
  15. <view class="bottom_list_item">
  16. <view class="name"><text class="required newicon newicon-bitian"></text>院区名称</view>
  17. <uni-data-picker class="value" placeholder="请选择院区名称"
  18. v-model="dataForm.branch" :localdata="branchData" @change="branchChange"
  19. :clear-icon="false" :class="{formRed: isSubmit && !dataForm.branch}">
  20. </uni-data-picker>
  21. <text class="newicon newicon-youjiantou icon"></text>
  22. </view>
  23. <view class="bottom_list_item" v-if="deptRepair.valueconfig==1">
  24. <view class="name"><text class="required newicon newicon-bitian"></text>科室名称</view>
  25. <uni-data-picker class="value" placeholder="请选择报修科室"
  26. v-model="dataForm.dept" :localdata="deptData"
  27. :clear-icon="false" :class="{formRed: isSubmit && !dataForm.dept}">
  28. </uni-data-picker>
  29. <text class="newicon newicon-youjiantou icon"></text>
  30. </view>
  31. <view class="bottom_list_item" v-if="deptRepair.valueconfig==1" @click="deptSelect">
  32. <view class="name">常用科室</view>
  33. <view class="value">{{commonDeptName}}</view>
  34. <text class="newicon newicon-youjiantou icon"></text>
  35. </view>
  36. <view class="bottom_list_item">
  37. <view class="name"><text class="required newicon newicon-bitian"></text>联系电话</view>
  38. <view class="value no-mar" @click="makePhoneCall(loginUserStore.loginUser.user.phone)">{{loginUserStore.loginUser.user.phone}}</view>
  39. </view>
  40. </view>
  41. </view>
  42. </scroll-view>
  43. <view class="foot_common_btns">
  44. <button @click="addInfo" type="default" class="primaryButton btn">保存</button>
  45. </view>
  46. </view>
  47. </template>
  48. <script setup>
  49. import { ref, reactive } from 'vue'
  50. import { onLoad, onShow, onHide, onTabItemTap } from '@dcloudio/uni-app'
  51. import { api_userSave, api_user, api_department, api_getDictionary ,api_branch, api_systemConfiguration} from "@/http/api.js"
  52. import { defaultColor } from '@/static/js/theme.js'
  53. import { useSetTitle } from '@/share/useSetTitle.js'
  54. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  55. import { useLoginUserStore } from '@/stores/loginUser'
  56. import { useIncidentNumStore } from '@/stores/incidentNum'
  57. import { repositoryListSearchStore } from '@/stores/repositorySearch'
  58. import { useSetTabbar } from '@/share/useSetTabbar.js'
  59. useSetTitle();
  60. const loginUserStore = useLoginUserStore();
  61. const incidentNumStore = useIncidentNumStore();
  62. const { makePhoneCall } = useMakePhoneCall();
  63. const repositorySearchStore = repositoryListSearchStore();
  64. const { setTabbar } = useSetTabbar();
  65. // 主题颜色
  66. const primaryColor = ref(defaultColor)
  67. const deptRepair = ref(null)
  68. const deptData = ref([])
  69. const branchData = ref([])
  70. const commonDeptName = ref(null)
  71. const commonDeptData = ref(null)
  72. const dataForm = reactive({
  73. dept: '',
  74. branch:''
  75. })
  76. const userTypes = ref(null)
  77. const userData = reactive(loginUserStore.loginUser.user)
  78. const commonDeptDTO = ref([])
  79. // 是否提交
  80. const isSubmit = ref(false)
  81. // 数据
  82. const dataInfo = reactive({
  83. num: 0,
  84. })
  85. // 保存
  86. function addInfo(){
  87. if(!dataForm.branch){
  88. uni.showToast({
  89. icon: 'none',
  90. title: '院区不能为空'
  91. });
  92. return
  93. }
  94. if(!dataForm.dept){
  95. uni.showToast({
  96. icon: 'none',
  97. title: '报修科室不能为空'
  98. });
  99. return
  100. }
  101. uni.showLoading({
  102. title: "加载中",
  103. mask: true,
  104. });
  105. isSubmit.value = true
  106. userData.currentHospital.id = dataForm.branch
  107. userData.commonDeptName = commonDeptName.value
  108. userData.dept={
  109. id:dataForm.dept
  110. }
  111. let arr = []
  112. for(let i of commonDeptDTO.value){
  113. arr.push({
  114. dept:i
  115. })
  116. }
  117. let postData = {
  118. ...loginUserStore.loginUser.user,
  119. // ...userData,
  120. hospital:{
  121. id:dataForm.branch
  122. },
  123. dept:{
  124. id:dataForm.dept
  125. },
  126. commonDept:commonDeptData.value,
  127. commonDeptDTO:arr
  128. }
  129. api_userSave({
  130. user: postData,
  131. }).then(res => {
  132. uni.hideLoading();
  133. if(res.status == 200){
  134. loginUserStore.setLoginUser(postData);
  135. uni.showToast({
  136. icon: 'none',
  137. title: '保存成功'
  138. });
  139. }else{
  140. uni.showToast({
  141. icon: 'none',
  142. title: res.msg || '请求数据失败!'
  143. });
  144. }
  145. })
  146. }
  147. // 选择院区
  148. function branchChange(){
  149. dataForm.dept = null
  150. commonDeptName.value = null
  151. commonDeptData.value = null
  152. getRepairTypes()
  153. }
  154. // 获取科室列表
  155. function getRepairTypes(){
  156. uni.showLoading({
  157. title: "加载中",
  158. mask: true,
  159. });
  160. let postData = {
  161. department: {
  162. hospital: dataForm.branch?dataForm.branch:loginUserStore.loginUser.user.currentHospital.id,
  163. },
  164. idx:0,
  165. sum:9999
  166. }
  167. api_department(postData).then(res => {
  168. uni.hideLoading();
  169. res = res.list || [];
  170. deptData.value = res.map(v => ({
  171. text: v.dept,
  172. value: v.id,
  173. }));
  174. })
  175. }
  176. // 获取院区列表
  177. function getBranch(){
  178. let arr = loginUserStore.loginUser.hospital.filter(i=>i.parent==undefined)
  179. branchData.value = arr.map(v => ({
  180. text: v.hosName,
  181. value: v.id,
  182. }));
  183. }
  184. // 选择常用科室
  185. function deptSelect(){
  186. uni.setStorageSync('configData',JSON.stringify(dataForm))
  187. let data = commonDeptData.value ?
  188. commonDeptData.value : loginUserStore.loginUser.user.commonDept
  189. if(!data){
  190. data = 'none'
  191. }
  192. let deptId = dataForm.branch?dataForm.branch:loginUserStore.loginUser.user.currentHospital.id
  193. uni.navigateTo({
  194. url: `/pages/repair/deptSelect?data=${JSON.stringify(data)}&commonDeptName=${commonDeptName.value}&deptId=${deptId}`
  195. })
  196. }
  197. // 初始化
  198. function onLoadFn(){
  199. let data = JSON.parse(uni.getStorageSync('sysData'))
  200. deptRepair.value = data.find(i=>i.keyconfig=='deptRepair')
  201. getBranch()
  202. }
  203. function getUserInfo(){
  204. let user = loginUserStore.loginUser.user
  205. let userId = null
  206. if(user.currentHospital.parent){
  207. userId = user.currentHospital.parent.id
  208. }else{
  209. userId = user.currentHospital.id
  210. }
  211. let postData = {
  212. idx: 0,
  213. sum: 999,
  214. user: {
  215. hospital:{
  216. id:userId
  217. },
  218. name: user.name,
  219. userTypeIds: String(userTypes.value.map(v => v.id))
  220. }
  221. }
  222. api_user(postData).then(res => {
  223. if(res.status == 200){
  224. let item = res.list.find(i=>i.id==user.id)
  225. if(item){
  226. if(item.hospital.parent){
  227. dataForm.branch = item.hospital.parent.id
  228. }else{
  229. dataForm.branch = item.hospital.id
  230. }
  231. if(item.dept){
  232. dataForm.dept = item.dept.id
  233. }
  234. getRepairTypes()
  235. let id = []
  236. let name = []
  237. if(item.commonDeptDTO){
  238. for(let i of item.commonDeptDTO){
  239. id.push(i.id)
  240. name.push(i.dept)
  241. }
  242. commonDeptData.value = id.join(',')
  243. commonDeptName.value = name.join('/')
  244. }
  245. }else{
  246. // let data = uni.getStorageSync('configData')
  247. // if(data){
  248. // data = JSON.parse(data)
  249. // dataForm.dept = data.dept
  250. // dataForm.branch = data.branch
  251. // }else{
  252. if(user.currentHospital.parent){
  253. dataForm.branch = user.currentHospital.parent.id
  254. }else{
  255. dataForm.branch = user.currentHospital.id
  256. }
  257. if(user.dept){
  258. dataForm.dept = user.dept.id
  259. }
  260. // }
  261. if(user.commonDeptDTO){
  262. let name = []
  263. for(let i of user.commonDeptDTO){
  264. name.push(i.dept)
  265. }
  266. commonDeptData.value = user.commonDept
  267. commonDeptName.value = name.join('/')
  268. }
  269. getRepairTypes()
  270. }
  271. }else{
  272. uni.showToast({
  273. icon: 'none',
  274. title: res.msg || '请求数据失败!'
  275. });
  276. }
  277. })
  278. }
  279. onHide(opt=>{
  280. dataInfo.num = 0
  281. dataForm.branch = null
  282. })
  283. onShow((option) => {
  284. userTypes.value = JSON.parse(uni.getStorageSync('groupData'))
  285. onLoadFn()
  286. if(dataInfo.num==0){
  287. getUserInfo()
  288. }
  289. })
  290. onLoad((option) => {
  291. userTypes.value = JSON.parse(uni.getStorageSync('groupData'))
  292. onLoadFn();
  293. dataInfo.num = 1
  294. if(option.data){
  295. let data = JSON.parse(option.data)
  296. commonDeptData.value = data.data.join(',')
  297. commonDeptName.value = data.name.join('/')
  298. commonDeptDTO.value = data.name
  299. let data2 = uni.getStorageSync('configData')
  300. if(data2){
  301. data2 = JSON.parse(data2)
  302. dataForm.dept = data2.dept
  303. dataForm.branch = data2.branch
  304. }
  305. getRepairTypes()
  306. }else{
  307. getUserInfo()
  308. }
  309. for(let i = 0; i<5; i++){
  310. setTabbar(i)
  311. }
  312. })
  313. onTabItemTap(e => {
  314. // onLoadFn();
  315. })
  316. </script>
  317. <style scoped>
  318. >>> .uni-data-tree-input{
  319. width: 100% !important;
  320. }
  321. >>> .input-value-border{
  322. border: none !important;
  323. }
  324. >>> .input-value{
  325. padding:0 !important;
  326. flex-direction: row-reverse !important;
  327. }
  328. >>> .selected-list{
  329. flex-direction: row-reverse !important;
  330. }
  331. >>> .arrow-area{
  332. display: none !important;
  333. }
  334. >>>.uni-data-tree-dialog{
  335. z-index: 9999;
  336. }
  337. </style>
  338. <style lang="scss" scoped>
  339. page{
  340. height: calc(100vh - var(--window-bottom));
  341. background-color: #EBEBEB;
  342. }
  343. .mine{
  344. height: 100%;
  345. display: flex;
  346. flex-direction: column;
  347. justify-content: space-between;
  348. .phone-filled{
  349. margin-right: 5rpx;
  350. }
  351. .newicon-xinjian2,
  352. .newicon-zhishiku{
  353. margin-right: 10rpx;
  354. }
  355. .body{
  356. width: 714rpx;
  357. height: 100%;
  358. margin: 16rpx auto var(--window-bottom) auto;
  359. box-sizing: border-box;
  360. border-radius: 8rpx;
  361. .top{
  362. padding: 30rpx;
  363. background-color: #fff;
  364. .top_name{
  365. font-size: 28rpx;
  366. font-weight: bold;
  367. }
  368. .top_count{
  369. margin-top: 45rpx;
  370. display: flex;
  371. align-items: center;
  372. justify-content: space-between;
  373. .top_count_item{
  374. text-align: center;
  375. .name{
  376. color: #949494;
  377. font-size: 22rpx;
  378. }
  379. .value{
  380. font-size: 50rpx;
  381. font-weight: bold;
  382. margin-top: 15rpx;
  383. }
  384. }
  385. }
  386. }
  387. .bottom{
  388. background-color: #fff;
  389. margin-top: 15rpx;
  390. .bottom_name{
  391. font-size: 26rpx;
  392. color: $uni-primary;
  393. padding: 21rpx 24rpx;
  394. }
  395. .bottom_list{
  396. .bottom_list_item{
  397. border-top: 1rpx solid #DEDEDE;
  398. padding: 30rpx 30rpx 30rpx 30rpx;
  399. display: flex;
  400. justify-content: space-between;
  401. align-items: center;
  402. font-size: 24rpx;
  403. position: relative;
  404. .value{
  405. max-width: 380rpx;
  406. color: #333;
  407. display: flex;
  408. align-items: center;
  409. text-align: justify;
  410. margin-right: 30rpx;
  411. }
  412. .no-mar{
  413. margin-right:0 !important;
  414. }
  415. .icon{
  416. position: absolute;
  417. right: 20rpx;
  418. }
  419. }
  420. }
  421. }
  422. }
  423. }
  424. </style>