deptSelect.vue 7.2 KB

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