deptSelect.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. <template>
  2. <view class="mine">
  3. <scroll-view scroll-y class="body">
  4. <view class="bottom">
  5. <checkbox-group @change="checkboxChange" :value="optionData">
  6. <label class="litem-list" v-for="item in deptData" :key="item.value">
  7. <view>{{item.text}}</view>
  8. <checkbox :value="item.value" color="#49b856" :checked="item.checked" />
  9. </label>
  10. </checkbox-group>
  11. </view>
  12. </scroll-view>
  13. <view class="foot_common_btns">
  14. <button @click="goBackOrToList" type="default" class="cancelButton btn">返回</button>
  15. <button @click="submit" type="default" class="primaryButton btn">确认</button>
  16. </view>
  17. </view>
  18. </template>
  19. <script setup>
  20. import { ref, reactive } from 'vue'
  21. import { onLoad, onTabItemTap } from '@dcloudio/uni-app'
  22. import { api_incident_count, api_department, api_branch} from "@/http/api.js"
  23. import { defaultColor } from '@/static/js/theme.js'
  24. import { useSetTitle } from '@/share/useSetTitle.js'
  25. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  26. import { useLoginUserStore } from '@/stores/loginUser'
  27. import { useIncidentNumStore } from '@/stores/incidentNum'
  28. import { repositoryListSearchStore } from '@/stores/repositorySearch'
  29. import { useSetTabbar } from '@/share/useSetTabbar.js'
  30. import { useGoBack } from '@/share/useGoBack.js'
  31. useSetTitle();
  32. const loginUserStore = useLoginUserStore();
  33. const incidentNumStore = useIncidentNumStore();
  34. const { makePhoneCall } = useMakePhoneCall();
  35. const repositorySearchStore = repositoryListSearchStore();
  36. const { setTabbar } = useSetTabbar();
  37. const { goBack } = useGoBack();
  38. const deptData = ref([])
  39. const dataForm = reactive({
  40. dept: '',
  41. branch:''
  42. })
  43. const deptSelectData = ref(null)
  44. const deptSelectName = ref(null)
  45. const checkBox = ref([])
  46. const optionData = ref(null)
  47. const deptId = ref(null)
  48. // 是否提交
  49. const isSubmit = ref(false)
  50. const entranceType = ref(null)
  51. const loginType = ref(uni.getStorageSync('loginType')); //1:处理 2:报修
  52. // 上一步或者返回列表
  53. function goBackOrToList(){
  54. if(entranceType.value=='home'){
  55. let configNewData = uni.getStorageSync('configData')
  56. if(configNewData){
  57. let parseData = JSON.parse(configNewData)
  58. if(parseData.commonDeptName){
  59. parseData.dataType = true
  60. }
  61. uni.setStorageSync('configData',JSON.stringify(parseData))
  62. }
  63. if(loginType.value==1){
  64. uni.navigateTo({
  65. url: '/pages/myRepair/myRepair?configType=selectDept&type=2'
  66. })
  67. }else{
  68. uni.reLaunch({
  69. url: '/pages/repair/config?configType=selectDept'
  70. })
  71. }
  72. }else{
  73. goBack();
  74. }
  75. }
  76. function checkboxChange (e) {
  77. var items = deptData.value;
  78. let values = e.detail.value;
  79. deptSelectName.value = []
  80. for (var i = 0, lenI = items.length; i < lenI; ++i) {
  81. const item = items[i]
  82. if(values.includes(item.value)){
  83. deptSelectName.value.push(item)
  84. }
  85. }
  86. }
  87. // 获取科室列表
  88. function getRepairTypes(){
  89. uni.showLoading({
  90. title: "加载中",
  91. mask: true,
  92. });
  93. let postData = {
  94. department: {
  95. hospital: Number(deptId.value),
  96. },
  97. idx:0,
  98. sum:9999
  99. }
  100. api_department(postData).then(res => {
  101. uni.hideLoading();
  102. res = res.list || [];
  103. deptData.value = res.map(v => ({
  104. text: v.dept,
  105. value: v.id+'',
  106. checked: false
  107. }));
  108. for(let i of deptData.value){
  109. for(let t of optionData.value){
  110. if(i.value == Number(t)){
  111. i.checked = true
  112. }
  113. }
  114. }
  115. if(optionData.value){
  116. checkBox.value = optionData.value
  117. }
  118. })
  119. }
  120. function submit(){
  121. let isId = null
  122. for(let x of deptSelectName.value){
  123. isId = deptData.value.find(i=>i.value == x.value)
  124. }
  125. if(!isId){
  126. deptSelectName.value = []
  127. uni.showToast({
  128. icon: 'none',
  129. title: '请先选择科室'
  130. });
  131. return
  132. }
  133. if(!deptSelectName.value){
  134. uni.showToast({
  135. icon: 'none',
  136. title: '请先选择科室'
  137. });
  138. return
  139. }
  140. let id = []
  141. let name = []
  142. for(let i of deptSelectName.value){
  143. id.push(i.value)
  144. name.push(i.text)
  145. }
  146. let data = {
  147. data:id,
  148. name:name
  149. }
  150. console.log(888,entranceType.value)
  151. if(entranceType.value=='home'){
  152. let configNewData = uni.getStorageSync('configData')
  153. if(configNewData){
  154. let parseData = JSON.parse(configNewData)
  155. parseData.dataType = true
  156. uni.setStorageSync('configData',JSON.stringify(parseData))
  157. }
  158. if(loginType.value==1){
  159. uni.navigateTo({
  160. url: `/pages/myRepair/myRepair?data=${JSON.stringify(data)}&type=2`
  161. })
  162. }else{
  163. uni.reLaunch({
  164. url: '/pages/repair/config?data='+JSON.stringify(data)
  165. })
  166. }
  167. }else{
  168. uni.navigateTo({
  169. url: `/pages/myRepair/myRepair?data=${JSON.stringify(data)}&type=2`
  170. })
  171. }
  172. }
  173. // 初始化
  174. // function onLoadFn(){
  175. // getRepairTypes()
  176. // }
  177. onLoad((option) => {
  178. console.log(123,option)
  179. let name = option.commonDeptName.split('/')
  180. if(option.data!='none'){
  181. let data = JSON.parse(option.data).split(',')
  182. optionData.value = data
  183. deptSelectName.value = []
  184. for(let i in optionData.value){
  185. deptSelectName.value.push({
  186. value:optionData.value[i],
  187. text:name[i]
  188. })
  189. }
  190. }
  191. deptId.value = option.deptId
  192. entranceType.value = option.type
  193. getRepairTypes();
  194. })
  195. // onTabItemTap(e => {
  196. // onLoadFn();
  197. // })
  198. </script>
  199. <style scoped>
  200. >>> .uni-data-tree-input{
  201. width: 100% !important;
  202. }
  203. >>> .input-value-border{
  204. border: none !important;
  205. }
  206. >>> .input-value{
  207. padding:0 !important;
  208. flex-direction: row-reverse !important;
  209. }
  210. >>> .selected-list{
  211. flex-direction: row-reverse !important;
  212. }
  213. >>> .arrow-area{
  214. display: none !important;
  215. }
  216. </style>
  217. <style lang="scss" scoped>
  218. .uni-checkbox-input:hover{
  219. border-color:#49b856;
  220. }
  221. .mine{
  222. display: flex;
  223. flex-direction: column;
  224. justify-content: space-between;
  225. background: #fff;
  226. .phone-filled{
  227. margin-right: 5rpx;
  228. }
  229. .newicon-xinjian2,
  230. .newicon-zhishiku{
  231. margin-right: 10rpx;
  232. }
  233. .body{
  234. height: 88vh;
  235. // padding: 0 30rpx;
  236. box-sizing: border-box;
  237. border-radius: 8rpx;
  238. .top{
  239. padding: 30rpx;
  240. background-color: #fff;
  241. .top_name{
  242. font-size: 28rpx;
  243. font-weight: bold;
  244. }
  245. .top_count{
  246. margin-top: 45rpx;
  247. display: flex;
  248. align-items: center;
  249. justify-content: space-between;
  250. .top_count_item{
  251. text-align: center;
  252. .name{
  253. color: #949494;
  254. font-size: 22rpx;
  255. }
  256. .value{
  257. font-size: 50rpx;
  258. font-weight: bold;
  259. margin-top: 15rpx;
  260. }
  261. }
  262. }
  263. }
  264. .bottom{
  265. background-color: #fff;
  266. margin-top: 15rpx;
  267. .litem-list{
  268. display: flex;
  269. justify-content: space-between;
  270. height: 70rpx;
  271. align-items: center;
  272. border-bottom: 1px solid #f5f5f5;
  273. padding: 0 20rpx;
  274. font-size: 28rpx;
  275. }
  276. .bottom_name{
  277. font-size: 26rpx;
  278. color: $uni-primary;
  279. padding: 21rpx 24rpx;
  280. }
  281. .bottom_list{
  282. .bottom_list_item{
  283. border-top: 1rpx solid #DEDEDE;
  284. padding: 30rpx 30rpx 30rpx 30rpx;
  285. display: flex;
  286. justify-content: space-between;
  287. align-items: center;
  288. font-size: 24rpx;
  289. position: relative;
  290. .value{
  291. max-width: 380rpx;
  292. color: #333;
  293. display: flex;
  294. align-items: center;
  295. text-align: justify;
  296. margin-right: 30rpx;
  297. }
  298. .no-mar{
  299. margin-right:0 !important;
  300. }
  301. .icon{
  302. position: absolute;
  303. right: 20rpx;
  304. }
  305. }
  306. }
  307. }
  308. }
  309. }
  310. </style>