config.vue 13 KB

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