config.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  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. }
  144. api_userSave({
  145. user: postData,
  146. }).then(res => {
  147. uni.hideLoading();
  148. if(res.status == 200){
  149. loginUserStore.setLoginUser(postData);
  150. uni.showToast({
  151. icon: 'none',
  152. title: '保存成功'
  153. });
  154. }else{
  155. uni.showToast({
  156. icon: 'none',
  157. title: res.msg || '请求数据失败!'
  158. });
  159. }
  160. })
  161. }
  162. // 选择院区
  163. function branchChange(){
  164. dataForm.dept = null
  165. dataForm.departmentName = null
  166. dataForm.commonDeptName = null
  167. dataForm.commonDeptData = null
  168. commonDeptName.value = null
  169. commonDeptData.value = null
  170. // getRepairTypes()
  171. }
  172. // 跳转到科室
  173. function selectDepartment(){
  174. if(commonDeptName.value){
  175. dataForm.dataType = true
  176. }else{
  177. dataForm.dataType = false
  178. }
  179. uni.setStorageSync('configData',JSON.stringify(dataForm))
  180. uni.navigateTo({
  181. url: `/pages/searchDept/searchDept?type=config&branchId=${dataForm.branch}`
  182. })
  183. }
  184. // 获取科室列表
  185. function getRepairTypes(){
  186. uni.showLoading({
  187. title: "加载中",
  188. mask: true,
  189. });
  190. let postData = {
  191. department: {
  192. hospital: dataForm.branch?dataForm.branch:loginUserStore.loginUser.user.currentHospital.id,
  193. },
  194. idx:0,
  195. sum:9999
  196. }
  197. api_department(postData).then(res => {
  198. uni.hideLoading();
  199. res = res.list || [];
  200. deptData.value = res.map(v => ({
  201. text: v.dept,
  202. value: v.id,
  203. }));
  204. })
  205. }
  206. // 获取院区列表
  207. function getBranch(){
  208. let arr = loginUserStore.loginUser.hospital.filter(i=>i.parent==undefined)
  209. branchData.value = arr.map(v => ({
  210. text: v.hosName,
  211. value: v.id,
  212. }));
  213. }
  214. // 选择常用科室
  215. function deptSelect(){
  216. uni.setStorageSync('configData',JSON.stringify(dataForm))
  217. let data = commonDeptData.value
  218. // ? commonDeptData.value : loginUserStore.loginUser.user.commonDept
  219. if(!data){
  220. data = 'none'
  221. }
  222. let deptId = dataForm.branch?dataForm.branch:loginUserStore.loginUser.user.currentHospital.id
  223. uni.navigateTo({
  224. url: `/pages/repair/deptSelect?data=${JSON.stringify(data)}&commonDeptName=${commonDeptName.value}&deptId=${deptId}&type=home`
  225. })
  226. }
  227. // 初始化
  228. function onLoadFn(){
  229. let data = JSON.parse(uni.getStorageSync('sysData'))
  230. deptRepair.value = data.find(i=>i.keyconfig=='deptRepair')
  231. getBranch()
  232. }
  233. function getUserInfo(){
  234. let user = loginUserStore.loginUser.user
  235. let userId = null
  236. if(user.currentHospital.parent){
  237. userId = user.currentHospital.parent.id
  238. }else{
  239. userId = user.currentHospital.id
  240. }
  241. let postData = {
  242. idx: 0,
  243. sum: 999,
  244. user: {
  245. hospital:{
  246. id:userId
  247. },
  248. name: user.name,
  249. userTypeIds: String(userTypes.value.map(v => v.id))
  250. }
  251. }
  252. api_user(postData).then(res => {
  253. if(res.status == 200){
  254. let item = res.list.find(i=>i.id==user.id)
  255. let data = uni.getStorageSync('configData')
  256. if(operationType.value=='selectDept'){
  257. if(data){
  258. data = JSON.parse(data)
  259. dataForm.name = data.name
  260. dataForm.account = data.account
  261. dataForm.phone = data.phone
  262. dataForm.dept = data.dept
  263. dataForm.departmentName = data.departmentName
  264. dataForm.branch = Number(data.branch)
  265. dataForm.commonDeptName = data.commonDeptName
  266. dataForm.commonDeptData = data.commonDeptData
  267. if(data.dataType){
  268. commonDeptData.value = data.commonDeptData
  269. commonDeptName.value = data.commonDeptName
  270. }
  271. }
  272. }else if(item){
  273. if(item.hospital.parent){
  274. dataForm.branch = item.hospital.parent.id
  275. }else{
  276. dataForm.branch = item.hospital.id
  277. }
  278. if(item.dept){
  279. dataForm.dept = item.dept.id
  280. dataForm.departmentName = item.dept.dept
  281. }
  282. // getRepairTypes()
  283. let id = []
  284. let name = []
  285. if(item.commonDeptDTO){
  286. for(let i of item.commonDeptDTO){
  287. id.push(i.id)
  288. name.push(i.dept)
  289. }
  290. commonDeptData.value = id.join(',')
  291. commonDeptName.value = name.join('/')
  292. dataForm.commonDeptName = commonDeptName.value
  293. dataForm.commonDeptData = commonDeptData.value
  294. }
  295. }else{
  296. // let data = uni.getStorageSync('configData')
  297. // if(data){
  298. // data = JSON.parse(data)
  299. // dataForm.dept = data.dept
  300. // dataForm.branch = data.branch
  301. // }else{
  302. if(user.currentHospital.parent){
  303. dataForm.branch = user.currentHospital.parent.id
  304. }else{
  305. dataForm.branch = user.currentHospital.id
  306. }
  307. if(user.dept){
  308. dataForm.dept = user.dept.id
  309. dataForm.departmentName = user.dept.dept
  310. }
  311. // }
  312. if(user.commonDeptDTO){
  313. let name = []
  314. for(let i of user.commonDeptDTO){
  315. name.push(i.dept)
  316. }
  317. commonDeptData.value = user.commonDept
  318. commonDeptName.value = name.join('/')
  319. dataForm.commonDeptName = commonDeptName.value
  320. dataForm.commonDeptData = commonDeptData.value
  321. }
  322. // getRepairTypes()
  323. }
  324. }else{
  325. uni.showToast({
  326. icon: 'none',
  327. title: res.msg || '请求数据失败!'
  328. });
  329. }
  330. })
  331. }
  332. onHide(opt=>{
  333. dataInfo.num = 0
  334. dataForm.branch = null
  335. })
  336. onShow((option) => {
  337. userTypes.value = JSON.parse(uni.getStorageSync('groupData'))
  338. onLoadFn()
  339. if(dataInfo.num==0){
  340. getUserInfo()
  341. }
  342. for(let i = 0; i<5; i++){
  343. setTabbar(i)
  344. }
  345. })
  346. onLoad((option) => {
  347. userTypes.value = JSON.parse(uni.getStorageSync('groupData'))
  348. onLoadFn();
  349. dataInfo.num = 1
  350. if(option && option.type){
  351. operationType.value = option.type
  352. }
  353. if(option.data){
  354. let data = JSON.parse(option.data)
  355. commonDeptData.value = data.data.join(',')
  356. commonDeptName.value = data.name.join('/')
  357. commonDeptDTO.value = data.name
  358. dataForm.commonDeptData = data.data.join(',')
  359. dataForm.commonDeptName = data.name.join('/')
  360. let data2 = uni.getStorageSync('configData')
  361. if(data2){
  362. data2 = JSON.parse(data2)
  363. dataForm.dept = data2.dept
  364. dataForm.departmentName = data2.departmentName
  365. dataForm.branch = data2.branch
  366. }
  367. // getRepairTypes()
  368. }else{
  369. getUserInfo()
  370. }
  371. for(let i = 0; i<5; i++){
  372. setTabbar(i)
  373. }
  374. })
  375. onTabItemTap(e => {
  376. // onLoadFn();
  377. })
  378. </script>
  379. <style scoped>
  380. >>> .uni-data-tree-input{
  381. width: 100% !important;
  382. }
  383. >>> .input-value-border{
  384. border: none !important;
  385. }
  386. >>> .input-value{
  387. padding:0 !important;
  388. flex-direction: row-reverse !important;
  389. }
  390. >>> .selected-list{
  391. flex-direction: row-reverse !important;
  392. }
  393. >>> .arrow-area{
  394. display: none !important;
  395. }
  396. >>>.uni-data-tree-dialog{
  397. z-index: 9999;
  398. }
  399. </style>
  400. <style lang="scss" scoped>
  401. page{
  402. height: calc(100vh - var(--window-bottom));
  403. background-color: #EBEBEB;
  404. }
  405. .mine{
  406. height: 100%;
  407. display: flex;
  408. flex-direction: column;
  409. justify-content: space-between;
  410. .phone-filled{
  411. margin-right: 5rpx;
  412. }
  413. .newicon-xinjian2,
  414. .newicon-zhishiku{
  415. margin-right: 10rpx;
  416. }
  417. .body{
  418. width: 714rpx;
  419. height: 100%;
  420. margin: 16rpx auto var(--window-bottom) auto;
  421. box-sizing: border-box;
  422. border-radius: 8rpx;
  423. .top{
  424. padding: 30rpx;
  425. background-color: #fff;
  426. .top_name{
  427. font-size: 28rpx;
  428. font-weight: bold;
  429. }
  430. .top_count{
  431. margin-top: 45rpx;
  432. display: flex;
  433. align-items: center;
  434. justify-content: space-between;
  435. .top_count_item{
  436. text-align: center;
  437. .name{
  438. color: #949494;
  439. font-size: 22rpx;
  440. }
  441. .value{
  442. font-size: 50rpx;
  443. font-weight: bold;
  444. margin-top: 15rpx;
  445. }
  446. }
  447. }
  448. }
  449. .bottom{
  450. background-color: #fff;
  451. margin-top: 15rpx;
  452. .bottom_name{
  453. font-size: 26rpx;
  454. color: $uni-primary;
  455. padding: 21rpx 24rpx;
  456. }
  457. .bottom_list{
  458. .bottom_list_item{
  459. border-top: 1rpx solid #DEDEDE;
  460. padding: 30rpx 30rpx 30rpx 30rpx;
  461. display: flex;
  462. justify-content: space-between;
  463. align-items: center;
  464. font-size: 24rpx;
  465. position: relative;
  466. .value{
  467. max-width: 380rpx;
  468. color: #333;
  469. display: flex;
  470. align-items: center;
  471. text-align: justify;
  472. margin-right: 30rpx;
  473. }
  474. .no-mar{
  475. margin-right:0 !important;
  476. }
  477. .icon{
  478. position: absolute;
  479. right: 20rpx;
  480. }
  481. }
  482. }
  483. }
  484. }
  485. }
  486. </style>