deptSelect.vue 6.3 KB

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