config.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  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"
  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, onTabItemTap } from '@dcloudio/uni-app'
  51. import { api_userSave, api_department, 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 userData = reactive(loginUserStore.loginUser.user)
  77. const commonDeptDTO = ref([])
  78. // 是否提交
  79. const isSubmit = ref(false)
  80. // 数据
  81. const dataInfo = reactive({
  82. todo: 0,
  83. doing: 0,
  84. owns: 0,
  85. resolve: 0,
  86. })
  87. // 保存
  88. function addInfo(){
  89. isSubmit.value = true
  90. uni.showLoading({
  91. title: "加载中",
  92. mask: true,
  93. });
  94. userData.branch.id = dataForm.branch
  95. userData.commonDeptName = commonDeptName.value
  96. userData.dept={
  97. id:dataForm.dept
  98. }
  99. let arr = []
  100. for(let i of commonDeptDTO.value){
  101. arr.push({
  102. dept:i
  103. })
  104. }
  105. let postData = {
  106. ...loginUserStore.loginUser.user,
  107. commonDept:commonDeptData.value,
  108. commonDeptDTO:arr
  109. }
  110. api_userSave({
  111. user: postData,
  112. }).then(res => {
  113. uni.hideLoading();
  114. if(res.status == 200){
  115. loginUserStore.setLoginUser(postData);
  116. uni.showToast({
  117. icon: 'none',
  118. title: '保存成功'
  119. });
  120. }else{
  121. uni.showToast({
  122. icon: 'none',
  123. title: res.msg || '请求数据失败!'
  124. });
  125. }
  126. })
  127. }
  128. // 获取科室列表
  129. function getRepairTypes(){
  130. uni.showLoading({
  131. title: "加载中",
  132. mask: true,
  133. });
  134. let postData = {
  135. department: {
  136. branch: '',
  137. },
  138. idx:0,
  139. sum:9999
  140. }
  141. if(loginUserStore.loginUser.user.duty){
  142. postData.department.branch = loginUserStore.loginUser.user.duty.id;
  143. }else if(loginUserStore.loginUser.user.branch){
  144. postData.department.branch = loginUserStore.loginUser.user.branch.id;
  145. }
  146. api_department(postData).then(res => {
  147. uni.hideLoading();
  148. getBranch()
  149. res = res.list || [];
  150. deptData.value = res.map(v => ({
  151. text: v.dept,
  152. value: v.id,
  153. }));
  154. })
  155. }
  156. // 获取院区列表
  157. function getBranch(){
  158. let postData = {
  159. branch:'',
  160. idx:0,
  161. sum:9999
  162. }
  163. if(loginUserStore.loginUser.user.duty){
  164. postData.branch = loginUserStore.loginUser.user.duty.id;
  165. }else if(loginUserStore.loginUser.user.branch){
  166. postData.branch = loginUserStore.loginUser.user.branch.id;
  167. }
  168. api_branch(postData).then(res => {
  169. uni.hideLoading();
  170. res = res.list || [];
  171. branchData.value = res.map(v => ({
  172. text: v.hosName,
  173. value: v.id,
  174. }));
  175. })
  176. }
  177. // 选择常用科室
  178. function deptSelect(){
  179. uni.setStorageSync('configData',JSON.stringify(dataForm))
  180. let data = commonDeptData.value ?
  181. commonDeptData.value : loginUserStore.loginUser.user.commonDept
  182. if(!data){
  183. data = null
  184. }
  185. uni.navigateTo({
  186. url: '/pages/repair/deptSelect?data='+JSON.stringify(data)
  187. })
  188. }
  189. // 初始化
  190. function onLoadFn(){
  191. let data = JSON.parse(uni.getStorageSync('sysData'))
  192. deptRepair.value = data.find(i=>i.keyconfig=='deptRepair')
  193. getRepairTypes()
  194. }
  195. onLoad((option) => {
  196. if(option.data){
  197. let data = JSON.parse(option.data)
  198. commonDeptData.value = data.data.join(',')
  199. commonDeptName.value = data.name.join('/')
  200. commonDeptDTO.value = data.name
  201. }else{
  202. let user = loginUserStore.loginUser.user
  203. if(user){
  204. dataForm.branch = user.branch.id
  205. dataForm.dept = user.dept.id
  206. if(user.commonDeptDTO){
  207. let dept = user.commonDeptDTO.map(i=>{
  208. return i.dept
  209. })
  210. commonDeptName.value = dept.join('/')
  211. }else{
  212. commonDeptName.value = user.commonDeptName
  213. }
  214. }
  215. }
  216. let data = uni.getStorageSync('configData')
  217. if(data){
  218. data = JSON.parse(data)
  219. dataForm.dept = data.dept
  220. dataForm.branch = data.branch
  221. }
  222. for(let i = 0; i<5; i++){
  223. setTabbar(i)
  224. }
  225. onLoadFn();
  226. })
  227. onTabItemTap(e => {
  228. onLoadFn();
  229. })
  230. </script>
  231. <style scoped>
  232. >>> .uni-data-tree-input{
  233. width: 100% !important;
  234. }
  235. >>> .input-value-border{
  236. border: none !important;
  237. }
  238. >>> .input-value{
  239. padding:0 !important;
  240. flex-direction: row-reverse !important;
  241. }
  242. >>> .selected-list{
  243. flex-direction: row-reverse !important;
  244. }
  245. >>> .arrow-area{
  246. display: none !important;
  247. }
  248. >>>.uni-data-tree-dialog{
  249. z-index: 9999;
  250. }
  251. </style>
  252. <style lang="scss" scoped>
  253. page{
  254. height: calc(100vh - var(--window-bottom));
  255. background-color: #EBEBEB;
  256. }
  257. .mine{
  258. height: 100%;
  259. display: flex;
  260. flex-direction: column;
  261. justify-content: space-between;
  262. .phone-filled{
  263. margin-right: 5rpx;
  264. }
  265. .newicon-xinjian2,
  266. .newicon-zhishiku{
  267. margin-right: 10rpx;
  268. }
  269. .body{
  270. width: 714rpx;
  271. height: 100%;
  272. margin: 16rpx auto var(--window-bottom) auto;
  273. box-sizing: border-box;
  274. border-radius: 8rpx;
  275. .top{
  276. padding: 30rpx;
  277. background-color: #fff;
  278. .top_name{
  279. font-size: 28rpx;
  280. font-weight: bold;
  281. }
  282. .top_count{
  283. margin-top: 45rpx;
  284. display: flex;
  285. align-items: center;
  286. justify-content: space-between;
  287. .top_count_item{
  288. text-align: center;
  289. .name{
  290. color: #949494;
  291. font-size: 22rpx;
  292. }
  293. .value{
  294. font-size: 50rpx;
  295. font-weight: bold;
  296. margin-top: 15rpx;
  297. }
  298. }
  299. }
  300. }
  301. .bottom{
  302. background-color: #fff;
  303. margin-top: 15rpx;
  304. .bottom_name{
  305. font-size: 26rpx;
  306. color: $uni-primary;
  307. padding: 21rpx 24rpx;
  308. }
  309. .bottom_list{
  310. .bottom_list_item{
  311. border-top: 1rpx solid #DEDEDE;
  312. padding: 30rpx 30rpx 30rpx 30rpx;
  313. display: flex;
  314. justify-content: space-between;
  315. align-items: center;
  316. font-size: 24rpx;
  317. position: relative;
  318. .value{
  319. max-width: 380rpx;
  320. color: #333;
  321. display: flex;
  322. align-items: center;
  323. text-align: justify;
  324. margin-right: 30rpx;
  325. }
  326. .no-mar{
  327. margin-right:0 !important;
  328. }
  329. .icon{
  330. position: absolute;
  331. right: 20rpx;
  332. }
  333. }
  334. }
  335. }
  336. }
  337. }
  338. </style>